From c20311f804ba3e4674b49a13288602eede84db74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Mon, 16 Aug 2021 17:22:50 +0200 Subject: [PATCH 01/74] ignore vscode --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9f92f8f..1faf115 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,6 @@ Thumbs.db #thumbnail cache on Windows .prof -# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,python \ No newline at end of file +# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,python + +.vscode/ \ No newline at end of file From e5951f54c5645c8ce49709753bc51bd79b7927c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Mon, 16 Aug 2021 17:34:22 +0200 Subject: [PATCH 02/74] fix save function --- mols2grid/dispatch.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/mols2grid/dispatch.py b/mols2grid/dispatch.py index 57bb0fc..46f7568 100644 --- a/mols2grid/dispatch.py +++ b/mols2grid/dispatch.py @@ -24,9 +24,6 @@ def _prepare_kwargs(kwargs, kind): render_kwargs = {"width": kwargs.pop("width", "100%"), "height": kwargs.pop("height", None), **render_kwargs} - elif kind == "save": - render_kwargs = {"output": kwargs.pop("output"), - **render_kwargs} return template, kwargs, render_kwargs @singledispatch @@ -135,27 +132,33 @@ def save(arg, **kwargs): Parameters ---------- + arg : pandas.DataFrame, SDF file or list of molecules + The input containing your molecules output : str Name and path of the output document See `mols2grid.display` for the full list of arguments """ - raise TypeError(f"No display method registered for type {type(arg)!r}") + raise TypeError(f"No save method registered for type {type(arg)!r}") @save.register(DataFrame) def _(df, **kwargs): template, kwargs, render_kwargs = _prepare_kwargs(kwargs, "save") - return MolGrid(df, **kwargs).save(template=template, **render_kwargs) + output = kwargs.pop("output") + return MolGrid(df, **kwargs).save(output, template=template, + **render_kwargs) @save.register(str) def _(sdf, **kwargs): template, kwargs, render_kwargs = _prepare_kwargs(kwargs, "save") - return MolGrid.from_sdf(sdf, **kwargs).save(template=template, + output = kwargs.pop("output") + return MolGrid.from_sdf(sdf, **kwargs).save(output, template=template, **render_kwargs) @save.register(Series) @save.register(list) def _(mols, **kwargs): template, kwargs, render_kwargs = _prepare_kwargs(kwargs, "save") - return MolGrid.from_mols(mols, **kwargs).save(template=template, + output = kwargs.pop("output") + return MolGrid.from_mols(mols, **kwargs).save(output, template=template, **render_kwargs) \ No newline at end of file From 7d80a410b97eb728ee8a40235ca9efdb3a11aa91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 17 Aug 2021 19:08:56 +0200 Subject: [PATCH 03/74] allow multiple grids selection --- mols2grid/__init__.py | 4 +++- mols2grid/molgrid.py | 17 +++++++++++++++-- mols2grid/select.py | 33 ++++++++++++++++++++++++--------- mols2grid/templates/pages.html | 30 +++++++++++++++++++----------- 4 files changed, 61 insertions(+), 23 deletions(-) diff --git a/mols2grid/__init__.py b/mols2grid/__init__.py index 804fb6d..07c5133 100644 --- a/mols2grid/__init__.py +++ b/mols2grid/__init__.py @@ -1,4 +1,6 @@ from .molgrid import MolGrid from .dispatch import display, save -from .select import selection, reset_selection, set_selection, del_selection +from .select import ( + selection, get_selection, + _update_current_grid, _set_selection, _del_selection) from ._version import __version__ \ No newline at end of file diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index a7dfc73..4f73f9e 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -10,6 +10,7 @@ from rdkit.Chem import Draw from jinja2 import Environment, FileSystemLoader from .utils import requires, tooltip_formatter, mol_to_record, mol_to_smiles +from .select import get_selection, selection as SELECTION try: from IPython.display import HTML except ModuleNotFoundError: @@ -27,6 +28,8 @@ class MolGrid: """Class that handles drawing molecules, rendering the HTML document and saving or displaying it in a notebook """ + _n_instances = 0 + def __init__(self, df, smiles_col="SMILES", mol_col=None, coordGen=True, useSVG=True, mapping=None, **kwargs): """ @@ -78,6 +81,10 @@ def __init__(self, df, smiles_col="SMILES", mol_col=None, coordGen=True, self.mol_col = mol_col self.img_size = kwargs.get("size", (160, 120)) self.smiles_col = smiles_col + # register instance + self._grid_id = MolGrid._n_instances + SELECTION[self._grid_id] = {} + MolGrid._n_instances += 1 @classmethod def from_mols(cls, mols, **kwargs): @@ -362,10 +369,11 @@ def to_pages(self, subset=None, tooltip=None, selection = selection, smiles_col = smiles, sort_cols = sort_cols, + grid_id = self._grid_id, ) return template.render(**template_kwargs) - def get(self, selection): + def get_selection(self, selection=None): """Retrieve the dataframe subset corresponding to a selection Parameters @@ -378,7 +386,12 @@ def get(self, selection): ------- pandas.DataFrame """ - sel = list(selection.keys()) if isinstance(selection, dict) else selection + if isinstance(selection, list): + sel = selection + elif isinstance(selection, int) or selection is None: + sel = list(get_selection(selection).keys()) + else: + raise TypeError(f"`selection` must be list, int or None") return (self.dataframe.loc[self.dataframe["mols2grid-id"].isin(sel)] .drop(columns=self._extra_columns)) diff --git a/mols2grid/select.py b/mols2grid/select.py index 8e52593..c567bd2 100644 --- a/mols2grid/select.py +++ b/mols2grid/select.py @@ -1,22 +1,37 @@ +from copy import deepcopy + selection = {} +current_selection = 0 + +def _update_current_grid(grid_id): + global current_selection + current_selection = grid_id -def reset_selection(): +def _set_selection(_id, smiles): global selection - selection.clear() + global current_selection + selection[current_selection][_id] = smiles -def set_selection(_id, smiles): +def _del_selection(_id): global selection - selection[_id] = smiles + global current_selection + del selection[current_selection][_id] -def del_selection(_id): +def get_selection(grid_id=None): + """Returns the selection for a specific MolGrid instance. If grid_id is + `None`, the most recently updated grid is returned.""" global selection - del selection[_id] + global current_selection + grid_id = current_selection if grid_id is None else grid_id + sel = selection[grid_id] + return deepcopy(sel) try: from google import colab except (ModuleNotFoundError, ImportError): pass else: - colab.output.register_callback('m2g.reset_selection', reset_selection) - colab.output.register_callback('m2g.set_selection', set_selection) - colab.output.register_callback('m2g.del_selection', del_selection) + colab.output.register_callback('m2g._update_current_grid', + _update_current_grid) + colab.output.register_callback('m2g._set_selection', _set_selection) + colab.output.register_callback('m2g._del_selection', _del_selection) diff --git a/mols2grid/templates/pages.html b/mols2grid/templates/pages.html index 7c2e30f..a741611 100644 --- a/mols2grid/templates/pages.html +++ b/mols2grid/templates/pages.html @@ -112,27 +112,34 @@ // Jupyter notebook var kernel = window.parent.IPython.notebook.kernel; kernel.execute('import mols2grid') - kernel.execute('mols2grid.reset_selection()') + function update_current_grid(grid_id) { + kernel.execute("mols2grid._update_current_grid("+grid_id+")"); + } function set_selection(_id, smiles) { - kernel.execute("mols2grid.set_selection("+_id+",'"+smiles+"')") + kernel.execute("mols2grid._set_selection("+_id+",'"+smiles+"')"); } function del_selection(_id) { - kernel.execute("mols2grid.del_selection("+_id+")"); + kernel.execute("mols2grid._del_selection("+_id+")"); } } else if (window.parent.google !== undefined) { // Google colab var kernel = window.parent.google.colab.kernel; - (async function() { - const result = await kernel.invokeFunction('m2g.reset_selection', [], {}); - })(); + function update_current_grid(grid_id) { + (async function() { + const result = await kernel.invokeFunction('m2g._update_current_grid', + [grid_id], {}); + })(); + } function set_selection(_id, smiles) { (async function() { - const result = await kernel.invokeFunction('m2g.set_selection', [_id, smiles], {}); + const result = await kernel.invokeFunction('m2g._set_selection', + [_id, smiles], {}); })(); } function del_selection(_id) { (async function() { - const result = await kernel.invokeFunction('m2g.del_selection', [_id], {}); + const result = await kernel.invokeFunction('m2g._del_selection', + [_id], {}); })(); } } @@ -202,7 +209,7 @@ if (search_type === "Text") { listObj.search(query, {{ search_cols }}); } else { - listObj.search(query, ["data-"+"{{ smiles_col }}"], SmartsSearch); + listObj.search(query, ["data-{{ smiles_col }}"], SmartsSearch); } }); {% if tooltip %} @@ -228,12 +235,13 @@ if (kernel !== undefined) { listObj.on("updated", function (list) { $("input:checkbox").change(function() { + update_current_grid({{ grid_id }}); var _id = parseInt($(this).closest(".cell").attr("data-mols2grid-id")); var _smiles = $($(this).siblings(".data-{{ smiles_col }}")[0]).text(); if (this.checked) { - set_selection(_id, _smiles) + set_selection(_id, _smiles); } else { - del_selection(_id) + del_selection(_id); } }); }); From 08c37438a32986bc543a324af0c2109dfbe64085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 17 Aug 2021 19:09:45 +0200 Subject: [PATCH 04/74] update demo nb --- demo.ipynb | 215 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 123 insertions(+), 92 deletions(-) diff --git a/demo.ipynb b/demo.ipynb index be90853..37d550b 100755 --- a/demo.ipynb +++ b/demo.ipynb @@ -136,7 +136,7 @@ " // pages\n", " var listObj = new List('mols2grid',\n", " {\n", - " valueNames: [{data: ['mols2grid-id']}, 'data-img', 'data-Solubility', 'data-SMILES', 'data-ID', {attr: 'data-content', name: 'mols2grid-tooltip'}, { attr: 'style', name: 'style-Solubility' }],\n", + " valueNames: [{data: ['mols2grid-id']}, 'data-SMILES', 'data-ID', 'data-img', 'data-Solubility', {attr: 'data-content', name: 'mols2grid-tooltip'}, { attr: 'style', name: 'style-Solubility' }],\n", " item: '<div class="cell" data-mols2grid-id="0"><input type="checkbox" class="position-relative float-left"><div class="data data-ID"></div><div class="data data-img mols2grid-tooltip" data-toggle="popover" data-content="foo"></div><div class="data data-Solubility style-Solubility" style=""></div><div class="data data-SMILES" style="display: none;"></div></div>',\n", " page: 15,\n", " pagination: {\n", @@ -148,34 +148,41 @@ " }\n", " );\n", " listObj.remove("mols2grid-id", "0")\n", - " listObj.add([{"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,50.6175 L 47.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,35.625 L 80,54.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,54.375 L 80,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 80,54.375 L 112.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.5,35.625 L 138.485,50.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 0, "data-ID": 5, "data-Solubility": -3.68, "data-SMILES": "CCC(C)CC", "mols2grid-tooltip": "<strong>Name</strong>: 3-methylpentane<br><strong>SMILES</strong>: CCC(C)CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.68</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,80.6175 L 47.5,65.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,65.625 L 47.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 47.5,65.625 L 80,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,84.375 L 112.5,65.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.5,65.625 L 138.485,80.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 112.5,65.625 L 112.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 1, "data-ID": 10, "data-Solubility": -4.26, "data-SMILES": "CC(C)CC(C)C", "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethylpentane<br><strong>SMILES</strong>: CC(C)CC(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.26</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,65.6175 L 47.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.626,53.8731 L 136.611,68.8656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.374,47.3769 L 140.359,62.3694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 2, "data-ID": 15, "data-Solubility": -2.68, "data-SMILES": "CCCC=C", "mols2grid-tooltip": "<strong>Name</strong>: 1-pentene<br><strong>SMILES</strong>: CCCC=C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.68</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,78.75 L 112.475,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,97.5 L 112.475,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,41.25 L 80,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.125,19.2524 L 49.4,44.4976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.875,25.7476 L 45.65,38.0024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.525,41.25 L 47.525,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,78.75 L 80,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 3, "data-ID": 20, "data-Solubility": -2.59, "data-SMILES": "C1CC=CCC1", "mols2grid-tooltip": "<strong>Name</strong>: cyclohexene<br><strong>SMILES</strong>: C1CC=CCC1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.59</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 23.3891,68.8656 L 49.3741,53.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 19.6409,62.3694 L 45.6259,47.3769' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.626,53.8731 L 136.611,68.8656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.374,47.3769 L 140.359,62.3694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 4, "data-ID": 25, "data-Solubility": -2.09, "data-SMILES": "C=CCC=C", "mols2grid-tooltip": "<strong>Name</strong>: 1,4-pentadiene<br><strong>SMILES</strong>: C=CCC=C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.786,70.9205 L 110.129,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.474,72.5895 L 117.441,34.3605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 98.75,101.075 L 122.13,71.755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.785,35.195 L 80,18.925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.3728,15.5464 L 47.8397,38.5761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.6272,22.3036 L 44.5853,31.8189' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.2125,35.1975 L 37.87,71.7575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 34.9381,74.0956 L 64.1819,98.7369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8019,69.4194 L 58.3181,103.413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.25,101.075 L 98.75,101.075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 5, "data-ID": 30, "data-Solubility": -2.15, "data-SMILES": "C1=CC=CC=CC1", "mols2grid-tooltip": "<strong>Name</strong>: cycloheptatriene<br><strong>SMILES</strong>: C1=CC=CC=CC1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.7258 L 24.8959,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.8959,48.5578 L 46.9375,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 46.9375,61.2742 L 68.9792,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.9792,48.5578 L 91.0208,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.0208,61.2742 L 113.062,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 113.062,48.5578 L 135.102,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.102,61.2742 L 152.727,71.4422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.204,67.2053 L 150.185,75.8481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 140.288,58.3935 L 155.269,67.0363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 6, "data-ID": 35, "data-Solubility": -3.66, "data-SMILES": "CCCCCCC#C", "mols2grid-tooltip": "<strong>Name</strong>: 1-octyne<br><strong>SMILES</strong>: CCCCCCC#C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0663,101.742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.0663,101.742 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 7, "data-ID": 40, "data-Solubility": -2.77, "data-SMILES": "c1ccccc1CC", "mols2grid-tooltip": "<strong>Name</strong>: ethylbenzene<br><strong>SMILES</strong>: c1ccccc1CC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.77</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,63.75 L 112.475,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.975,58.125 L 104.975,31.875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,82.5 L 112.475,63.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,26.25 L 138.457,11.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,26.25 L 80,7.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,7.5 L 47.525,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.8788,16.8076 L 56.1463,29.9326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,26.25 L 21.5425,11.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 47.525,26.25 L 47.525,63.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 47.525,63.75 L 80,82.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.1463,60.0674 L 78.8788,73.1924' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80,82.5 L 80,112.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 8, "data-ID": 45, "data-Solubility": -3.4, "data-SMILES": "c1c(C)cc(C)cc1C", "mols2grid-tooltip": "<strong>Name</strong>: 1,3,5-trimethylbenzene<br><strong>SMILES</strong>: c1c(C)cc(C)cc1C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.4</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 83.875,78.6875 L 83.875,41.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 83.875,78.6875 L 51.5125,97.83' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 75.2023,75.1036 L 52.5486,88.5034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 83.875,78.6875 L 119.427,90.0825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 83.875,41.3125 L 51.5125,22.17' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 75.2023,44.8964 L 52.5486,31.4966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 83.875,41.3125 L 119.427,29.9175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 51.5125,22.17 L 18.695,41.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 18.695,41.3125 L 18.695,78.6875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 26.195,46.9188 L 26.195,73.0813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-4' d='M 51.5125,97.83 L 18.695,78.6875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 119.427,29.9175 L 141.305,59.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-6' d='M 119.427,90.0825 L 141.305,59.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 9, "data-ID": 50, "data-Solubility": -3.04, "data-SMILES": "c(c(ccc1)CC2)(c1)C2", "mols2grid-tooltip": "<strong>Name</strong>: indane<br><strong>SMILES</strong>: c(c(ccc1)CC2)(c1)C2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.04</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 93.1505,43.5131 L 93.1505,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.076,39.7072 L 88.076,21.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 71.178,56.1992 L 93.1505,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.1505,18.1407 L 71.178,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 71.178,5.45455 L 49.2056,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 70.4195,11.7521 L 55.0387,20.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.2056,18.1407 L 49.2056,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.2056,43.5131 L 71.178,56.1992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.0387,41.0214 L 70.4195,49.9017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 71.178,56.1992 L 71.2305,81.5851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 71.2305,81.5851 L 93.2334,94.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.2334,94.2476 L 93.2757,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 93.2334,94.2476 L 110.794,84.0682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 10, "data-ID": 55, "data-Solubility": -4.12, "data-SMILES": "c1ccccc1CC(C)C", "mols2grid-tooltip": "<strong>Name</strong>: isobutylbenzene<br><strong>SMILES</strong>: c1ccccc1CC(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.12</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 81.398,31.0278 L 81.398,13.979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.9882,28.4705 L 77.9882,16.5363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 66.6337,39.5522 L 81.398,31.0278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.398,13.979 L 66.6337,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.6337,5.45455 L 51.8694,13.979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.124,9.68613 L 55.789,15.6532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.8694,13.979 L 51.8694,31.0278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.8694,31.0278 L 66.6337,39.5522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.789,29.3535 L 66.124,35.3206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 66.6337,39.5522 L 66.669,56.6101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 66.669,56.6101 L 81.4537,65.1186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 81.4537,65.1186 L 81.4889,82.1765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.4889,82.1765 L 96.2737,90.6851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 96.2737,90.6851 L 96.3089,107.743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 96.3089,107.743 L 108.131,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 11, "data-ID": 60, "data-Solubility": -5.21, "data-SMILES": "c1ccccc1CCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: n-hexylbenzene<br><strong>SMILES</strong>: c1ccccc1CCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.21</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 87.2216,30.6286 L 87.2216,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 83.8651,28.1112 L 83.8651,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 72.6878,39.0199 L 87.2216,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 87.2216,13.8459 L 72.6878,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.6878,5.45455 L 58.154,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.186,9.62008 L 62.0123,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.154,13.8459 L 58.154,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.154,30.6286 L 72.6878,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.0123,28.9805 L 72.186,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 72.6878,39.0199 L 72.7225,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 72.7225,55.8116 L 87.2764,64.1873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.2764,64.1873 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.3111,80.9789 L 101.845,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.8127,85.1445 L 97.9864,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 72.7773,89.3714 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 101.845,89.3714 L 101.846,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 101.846,106.154 L 87.3122,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 97.9877,104.506 L 87.814,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.3122,114.545 L 72.7773,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.7773,106.154 L 72.7773,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.1338,103.637 L 76.1338,91.8888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 12, "data-ID": 65, "data-Solubility": -4.62, "data-SMILES": "c1ccccc1CCc2ccccc2", "mols2grid-tooltip": "<strong>Name</strong>: bibenzyl<br><strong>SMILES</strong>: c1ccccc1CCc2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.62</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.3433,66.5058 L 24.3433,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 30.7603,71.3095 L 30.7603,93.727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 52.4647,50.4911 L 24.3433,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.3433,98.5308 L 52.4647,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.4647,114.545 L 80.1946,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 53.415,106.586 L 72.8259,95.3761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.1946,98.5308 L 107.925,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 80.1946,66.5058 L 80.1946,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.925,114.545 L 135.657,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.875,106.586 L 128.288,95.376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.657,98.5308 L 135.657,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.657,66.5058 L 107.925,50.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 128.288,69.6605 L 108.875,58.4503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 107.925,50.4911 L 80.1946,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.1946,66.5058 L 52.4647,50.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.8259,69.6604 L 53.415,58.4502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-10' d='M 52.4647,50.4911 L 52.5866,18.3891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 52.5866,18.3891 L 30.4159,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 13, "data-ID": 70, "data-Solubility": -4.17, "data-SMILES": "c1ccc2ccccc2c1CC", "mols2grid-tooltip": "<strong>Name</strong>: 1-ethylnaphthalene<br><strong>SMILES</strong>: c1ccc2ccccc2c1CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.17</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4511,56.537 L 31.4511,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 38.4424,61.7707 L 38.4424,86.1946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 62.0894,39.0889 L 31.4511,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 31.4511,91.4283 L 7.27273,105.483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 31.4511,91.4283 L 62.0894,108.876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.0894,108.876 L 92.3012,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.1247,100.205 L 84.273,87.9913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.3012,91.4283 L 122.513,108.876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 92.3012,56.537 L 92.3012,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 122.513,108.876 L 152.727,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 123.549,100.205 L 144.699,87.9912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,91.4283 L 152.727,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,56.537 L 122.513,39.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 144.699,59.9741 L 123.549,47.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.513,39.0889 L 92.3012,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 92.3012,56.537 L 62.0894,39.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.273,59.974 L 63.1247,47.7604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 62.0894,39.0889 L 62.1733,11.1236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 14, "data-ID": 75, "data-Solubility": -4.29, "data-SMILES": "c1c(C)cc2ccccc2c1C", "mols2grid-tooltip": "<strong>Name</strong>: 1,3-dimethylnaphthalene<br><strong>SMILES</strong>: c1c(C)cc2ccccc2c1C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.29</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 55.7582,73.9994 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-0 atom-12' d='M 55.7582,73.9994 L 31.5164,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-0 atom-12' d='M 49.3219,71.2507 L 32.3527,81.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-0 atom-13' d='M 55.7582,73.9994 L 80,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 55.7582,46.0006 L 31.5164,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.3219,48.7493 L 32.3527,38.9498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 55.7582,46.0006 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 31.5164,32.0013 L 7.27273,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 7.27273,46.0006 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 12.8717,50.2004 L 12.8717,69.7996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-4' d='M 31.5164,87.9987 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,32.0013 L 103.9,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.7552,38.9324 L 97.4854,48.732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.9,46.0006 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 103.9,46.0006 L 128.484,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 103.9,73.9994 L 128.484,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-7' d='M 80,87.9987 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-7' d='M 80.7552,81.0676 L 97.4854,71.268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 128.484,87.9987 L 152.727,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 129.32,81.0501 L 146.291,71.2506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 152.727,73.9994 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 128.484,32.0013 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 129.32,38.9499 L 146.291,48.7494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 15, "data-ID": 80, "data-Solubility": -6.35, "data-SMILES": "c(c(ccc1)cc(c2ccc3)c3)(c1)c2", "mols2grid-tooltip": "<strong>Name</strong>: anthracene<br><strong>SMILES</strong>: c(c(ccc1)cc(c2ccc3)c3)(c1)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.35</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.0691,9.60527 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80,32.0013 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.1637,38.9498 L 62.1945,48.7493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-1' d='M 103.9,46.0006 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.7582,46.0006 L 31.5164,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-2' d='M 55.7582,73.9994 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 31.5164,32.0013 L 7.27273,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 30.6797,38.9499 L 13.7091,48.7494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 7.27273,46.0006 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 7.27273,73.9994 L 31.5164,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 13.7091,71.2506 L 30.6797,81.0501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 31.5164,87.9987 L 55.7582,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 55.7582,73.9994 L 80,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 62.1945,71.2507 L 79.1637,81.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80,87.9987 L 80.0691,110.395' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 80,87.9987 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 103.9,73.9994 L 128.484,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 110.358,71.2339 L 127.567,81.0334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-10' d='M 103.9,46.0006 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 128.484,87.9987 L 152.727,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 152.727,73.9994 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 147.128,69.7996 L 147.128,50.2004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 152.727,46.0006 L 128.484,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 128.484,32.0013 L 103.9,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 127.567,38.9666 L 110.358,48.7661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 16, "data-ID": 85, "data-Solubility": -6.57, "data-SMILES": "Cc2c1ccccc1c(C)c3ccccc23", "mols2grid-tooltip": "<strong>Name</strong>: 9,10-dimethylanthracene<br><strong>SMILES</strong>: Cc2c1ccccc1c(C)c3ccccc23<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.57</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.1129,49.6592 L 80.1129,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-0 atom-16' d='M 80.1129,49.6592 L 98.3226,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-0 atom-16' d='M 84.99,51.6612 L 97.7368,44.1074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-0 atom-17' d='M 80.1129,49.6592 L 61.9018,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.1129,70.5667 L 98.3226,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9565,68.5111 L 97.7033,75.9068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-9' d='M 80.1129,70.5667 L 61.9018,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.3226,81.132 L 116.308,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 116.308,70.5667 L 116.308,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.099,67.4306 L 112.099,52.7953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-3 atom-8' d='M 116.308,70.5667 L 134.518,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 116.308,49.6592 L 134.518,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-4' d='M 98.3226,38.868 L 116.308,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 134.518,38.868 L 152.727,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.103,44.1074 L 147.85,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,49.6592 L 152.727,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 134.518,81.132 L 152.727,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 135.137,75.9068 L 147.884,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.9018,81.132 L 43.6921,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.2825,75.9068 L 48.5357,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 43.6921,70.5667 L 43.6921,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 43.6921,70.5667 L 25.4824,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 43.6921,49.6592 L 25.4824,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-11' d='M 61.9018,38.868 L 43.6921,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-11' d='M 61.316,44.1074 L 48.5692,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 25.4824,38.868 L 7.27273,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 24.8966,44.1074 L 12.1498,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 7.27273,49.6592 L 7.27273,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 25.4824,81.132 L 7.27273,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 24.8631,75.9068 L 12.1163,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 17, "data-ID": 90, "data-Solubility": -8.6, "data-SMILES": "c(c(cc(c1ccc2)c2)cc(c3ccc4)c4)(c1)c3", "mols2grid-tooltip": "<strong>Name</strong>: naphthacene<br><strong>SMILES</strong>: c(c(cc(c1ccc2)c2)cc(c3ccc4)c4)(c1)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.6</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 15.5926,79.7956 L 7.27273,59.5697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.3245,75.1246 L 12.5005,60.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-0' d='M 37.5399,82.808 L 15.5926,79.7956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 7.27273,59.5697 L 21.0436,42.0692' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 21.0436,42.0692 L 43.1343,45.225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 23.7486,46.8027 L 39.2121,49.0118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1343,45.225 L 56.9051,27.7246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-3' d='M 51.4542,65.3075 L 43.1343,45.225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.9051,27.7246 L 80,31.0238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.7608,32.4796 L 75.9272,34.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,31.0238 L 86.4551,51.5367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 86.4551,51.5367 L 108.546,54.6925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.1601,56.2702 L 104.624,58.4793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-6' d='M 73.5449,68.4633 L 86.4551,51.5367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 108.546,54.6925 L 122.46,37.192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 116.866,74.775 L 108.546,54.6925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.46,37.192 L 144.407,40.2044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 125.167,41.9073 L 140.53,44.016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 144.407,40.2044 L 152.727,60' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 152.727,60 L 138.956,77.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 147.249,60.0684 L 137.609,72.62' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 138.956,77.9308 L 116.866,74.775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 116.866,74.775 L 103.095,92.2754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 111.418,74.7389 L 101.779,86.9892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.095,92.2754 L 81.1476,88.9762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.1476,88.9762 L 73.5449,68.4633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 84.0423,84.4037 L 78.7205,70.0447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 73.5449,68.4633 L 51.4542,65.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-17' d='M 51.4542,65.3075 L 37.5399,82.808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-17' d='M 45.9986,65.2544 L 36.2586,77.5047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 18, "data-ID": 95, "data-Solubility": -8.06, "data-SMILES": "c1ccc2ccc3c4ccccc4ccc3c2c1", "mols2grid-tooltip": "<strong>Name</strong>: chrysene<br><strong>SMILES</strong>: c1ccc2ccc3c4ccccc4ccc3c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.06</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 10.9025,66.8184 L 10.9025,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 17.1351,71.6481 L 17.1351,94.1863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-0' d='M 37.7961,52.4253 L 10.9025,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 10.9025,99.0159 L 37.7961,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 37.7961,114.545 L 65.0678,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.8028,106.8 L 57.8929,95.9293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.0678,99.0159 L 91.5832,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-3' d='M 65.0678,66.8184 L 65.0678,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.5832,114.545 L 118.477,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.5006,106.819 L 111.326,95.948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 118.477,99.0159 L 118.477,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 118.477,66.8184 L 130.055,60.7084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.055,60.7084 L 141.633,54.5984' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 119.041,59.4733 L 127.146,55.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 127.146,55.1963 L 135.25,50.9193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 91.5832,52.4253 L 118.477,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.751,47.2361 L 145.751,34.3002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.751,34.3002 L 145.751,21.3642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 145.751,21.3642 L 118.477,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 138.519,24.3614 L 119.427,13.2246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 118.477,5.45455 L 107.094,12.1884' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 107.094,12.1884 L 95.7113,18.9222' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 91.5832,26.5534 L 91.5832,39.4894' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 91.5832,39.4894 L 91.5832,52.4253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 97.8158,30.4342 L 97.8158,39.4894' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 97.8158,39.4894 L 97.8158,48.5446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 91.5832,52.4253 L 65.0678,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 65.0678,66.8184 L 37.7961,52.4253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 58.068,70.1715 L 38.9778,60.0963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 143.8 48.0127\\nL 146.692 52.6871\\nQ 146.978 53.1483, 147.44 53.9835\\nQ 147.901 54.8186, 147.926 54.8685\\nL 147.926 48.0127\\nL 149.097 48.0127\\nL 149.097 56.838\\nL 147.888 56.838\\nL 144.785 51.7273\\nQ 144.423 51.129, 144.037 50.4434\\nQ 143.663 49.7578, 143.55 49.5459\\nL 143.55 56.838\\nL 142.404 56.838\\nL 142.404 48.0127\\nL 143.8 48.0127\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 89.6325 16.9516\\nL 92.5244 21.626\\nQ 92.8111 22.0872, 93.2723 22.9224\\nQ 93.7335 23.7576, 93.7584 23.8074\\nL 93.7584 16.9516\\nL 94.9301 16.9516\\nL 94.9301 25.7769\\nL 93.721 25.7769\\nL 90.6172 20.6662\\nQ 90.2557 20.0679, 89.8693 19.3823\\nQ 89.4953 18.6967, 89.3831 18.4848\\nL 89.3831 25.7769\\nL 88.2364 25.7769\\nL 88.2364 16.9516\\nL 89.6325 16.9516\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 19, "data-ID": 100, "data-Solubility": -2.68, "data-SMILES": "c1ccc2ccc3nccnc3c2c1", "mols2grid-tooltip": "<strong>Name</strong>: 1,7-phenantroline<br><strong>SMILES</strong>: c1ccc2ccc3nccnc3c2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.68</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.061,93.7522 L 105.578,87.4901' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.578,87.4901 L 103.095,81.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.095,81.2279 L 81.1476,77.9286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.442,76.4774 L 85.0794,74.168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-1' d='M 116.866,63.7275 L 103.095,81.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.1476,77.9286 L 73.5449,57.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.5449,57.4158 L 51.4542,54.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.8399,52.6823 L 55.3764,50.4732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-3' d='M 86.4551,40.4892 L 73.5449,57.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.4542,54.26 L 37.5399,71.7604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 43.1343,34.1775 L 51.4542,54.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.5399,71.7604 L 15.5926,68.7481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 34.833,67.0452 L 19.4699,64.9365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 15.5926,68.7481 L 7.27273,48.5221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 7.27273,48.5221 L 21.0436,31.0217' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.7203,48.5583 L 22.3599,36.3079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 21.0436,31.0217 L 43.1343,34.1775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 43.1343,34.1775 L 56.9051,16.6771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 48.5818,34.2136 L 58.2214,21.9633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 56.9051,16.6771 L 80,19.9763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80,19.9763 L 86.4551,40.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 76.8633,24.345 L 81.3819,38.704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 86.4551,40.4892 L 108.546,43.645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 108.546,43.645 L 122.46,26.1445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 114.001,43.6981 L 123.741,31.4478' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-13' d='M 116.866,63.7275 L 108.546,43.645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 122.46,26.1445 L 144.407,29.1569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 144.407,29.1569 L 152.727,48.9525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 141.688,33.7936 L 147.512,47.6505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 152.727,48.9525 L 138.956,66.8833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 138.956,66.8833 L 116.866,63.7275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 136.251,62.1498 L 120.788,59.9407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 108.093 94.1825\\nL 110.089 97.4101\\nQ 110.287 97.7285, 110.606 98.3052\\nQ 110.924 98.8818, 110.941 98.9163\\nL 110.941 94.1825\\nL 111.75 94.1825\\nL 111.75 100.276\\nL 110.916 100.276\\nL 108.772 96.7474\\nQ 108.523 96.3342, 108.256 95.8609\\nQ 107.998 95.3875, 107.92 95.2412\\nL 107.92 100.276\\nL 107.129 100.276\\nL 107.129 94.1825\\nL 108.093 94.1825\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 112.482 94.1825\\nL 113.308 94.1825\\nL 113.308 96.7732\\nL 116.424 96.7732\\nL 116.424 94.1825\\nL 117.25 94.1825\\nL 117.25 100.276\\nL 116.424 100.276\\nL 116.424 97.4617\\nL 113.308 97.4617\\nL 113.308 100.276\\nL 112.482 100.276\\nL 112.482 94.1825\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.546 100.062\\nQ 117.693 99.6818, 118.045 99.4716\\nQ 118.398 99.2557, 118.886 99.2557\\nQ 119.494 99.2557, 119.835 99.5852\\nQ 120.176 99.9146, 120.176 100.5\\nQ 120.176 101.096, 119.733 101.653\\nQ 119.295 102.21, 118.386 102.868\\nL 120.244 102.868\\nL 120.244 103.323\\nL 117.534 103.323\\nL 117.534 102.942\\nQ 118.284 102.408, 118.727 102.011\\nQ 119.176 101.613, 119.392 101.255\\nQ 119.608 100.897, 119.608 100.528\\nQ 119.608 100.142, 119.414 99.926\\nQ 119.221 99.7102, 118.886 99.7102\\nQ 118.562 99.7102, 118.346 99.8408\\nQ 118.131 99.9715, 117.977 100.261\\nL 117.546 100.062\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 20, "data-ID": 105, "data-Solubility": -6.2, "data-SMILES": "Nc3cc2c1ccccc1ccc2c4ccccc34", "mols2grid-tooltip": "<strong>Name</strong>: 6-aminochrysene<br><strong>SMILES</strong>: Nc3cc2c1ccccc1ccc2c4ccccc34<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.2</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 54.763,59.934 L 62.1565,41.9783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 54.763,59.934 L 35.0909,62.7066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 51.2594,56.4278 L 37.4889,58.3686' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-20' d='M 54.763,59.934 L 66.9095,75.5132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.1565,41.9783 L 50.01,26.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 57.201,42.0442 L 48.6984,31.0463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 62.1565,41.9783 L 81.3005,39.2057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 50.01,26.267 L 30.3379,29.0396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 30.3379,29.0396 L 22.9444,47.5234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 32.9064,33.2832 L 27.7309,46.2219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 22.9444,47.5234 L 7.27273,49.8458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-4' d='M 35.0909,62.7066 L 22.9444,47.5234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.3005,39.2057 L 93.579,54.9169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 80.0214,44.0013 L 88.6164,54.9992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 93.579,54.9169 L 86.0535,72.3446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-7 atom-16' d='M 93.579,54.9169 L 113.251,52.1444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 86.0535,72.3446 L 98.332,88.4519' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-8' d='M 66.9095,75.5132 L 86.0535,72.3446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-8' d='M 69.1343,71.1303 L 82.5351,68.9122' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 98.332,88.4519 L 117.872,85.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 100.733,84.1307 L 114.411,82.2823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 117.872,85.8113 L 125.398,67.4595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 125.398,67.4595 L 145.07,64.687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 113.251,52.1444 L 125.398,67.4595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 111.97,56.9029 L 120.472,67.6235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 145.07,64.687 L 152.727,46.5992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 142.571,60.4296 L 147.931,47.7682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 152.727,46.5992 L 140.185,31.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 140.185,31.152 L 120.645,33.7926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 137.784,35.4732 L 124.106,37.3216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 113.251,52.1444 L 120.645,33.7926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-18' d='M 35.0909,62.7066 L 32.3183,85.1512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 32.3183,85.1512 L 53.3107,93.733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-19' d='M 66.9095,75.5132 L 53.3107,93.733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 21, "data-ID": 110, "data-Solubility": -7.92, "data-SMILES": "c(c(ccc1C)cc(c2ccc3cccc4)c34)(c1CC5)c25", "mols2grid-tooltip": "<strong>Name</strong>: 3-methylcholanthrene<br><strong>SMILES</strong>: c(c(ccc1C)cc(c2ccc3cccc4)c34)(c1CC5)c25<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.92</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.675,63.132 L 69.1862,56.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 69.1862,56.4904 L 80.6975,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.6975,49.8487 L 91.5113,56.0879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.5113,56.0879 L 102.325,62.3271' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 49.17 64.5713\\nQ 50.19 64.8563, 50.7 65.4862\\nQ 51.225 66.1013, 51.225 67.0162\\nQ 51.225 68.4862, 50.28 69.3263\\nQ 49.35 70.1513, 47.58 70.1513\\nL 44.01 70.1513\\nL 44.01 59.5312\\nL 47.145 59.5312\\nQ 48.96 59.5312, 49.875 60.2663\\nQ 50.79 61.0013, 50.79 62.3513\\nQ 50.79 63.9563, 49.17 64.5713\\nM 45.435 60.7313\\nL 45.435 64.0613\\nL 47.145 64.0613\\nQ 48.195 64.0613, 48.735 63.6413\\nQ 49.29 63.2063, 49.29 62.3513\\nQ 49.29 60.7313, 47.145 60.7313\\nL 45.435 60.7313\\nM 47.58 68.9513\\nQ 48.615 68.9513, 49.17 68.4563\\nQ 49.725 67.9613, 49.725 67.0162\\nQ 49.725 66.1463, 49.11 65.7113\\nQ 48.51 65.2613, 47.355 65.2613\\nL 45.435 65.2613\\nL 45.435 68.9513\\nL 47.58 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 53.64 62.4413\\nL 53.805 63.5063\\nQ 54.615 62.3063, 55.935 62.3063\\nQ 56.355 62.3063, 56.925 62.4563\\nL 56.7 63.7163\\nQ 56.055 63.5663, 55.695 63.5663\\nQ 55.065 63.5663, 54.645 63.8213\\nQ 54.24 64.0613, 53.91 64.6463\\nL 53.91 70.1513\\nL 52.5 70.1513\\nL 52.5 62.4413\\nL 53.64 62.4413\\n' fill='#7F4C19'/>\\n<path class='atom-2' d='M 108.235 64.5713\\nQ 109.255 64.8563, 109.765 65.4862\\nQ 110.29 66.1013, 110.29 67.0162\\nQ 110.29 68.4862, 109.345 69.3263\\nQ 108.415 70.1513, 106.645 70.1513\\nL 103.075 70.1513\\nL 103.075 59.5312\\nL 106.21 59.5312\\nQ 108.025 59.5312, 108.94 60.2663\\nQ 109.855 61.0013, 109.855 62.3513\\nQ 109.855 63.9563, 108.235 64.5713\\nM 104.5 60.7313\\nL 104.5 64.0613\\nL 106.21 64.0613\\nQ 107.26 64.0613, 107.8 63.6413\\nQ 108.355 63.2063, 108.355 62.3513\\nQ 108.355 60.7313, 106.21 60.7313\\nL 104.5 60.7313\\nM 106.645 68.9513\\nQ 107.68 68.9513, 108.235 68.4563\\nQ 108.79 67.9613, 108.79 67.0162\\nQ 108.79 66.1463, 108.175 65.7113\\nQ 107.575 65.2613, 106.42 65.2613\\nL 104.5 65.2613\\nL 104.5 68.9513\\nL 106.645 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-2' d='M 112.705 62.4413\\nL 112.87 63.5063\\nQ 113.68 62.3063, 115 62.3063\\nQ 115.42 62.3063, 115.99 62.4563\\nL 115.765 63.7163\\nQ 115.12 63.5663, 114.76 63.5663\\nQ 114.13 63.5663, 113.71 63.8213\\nQ 113.305 64.0613, 112.975 64.6463\\nL 112.975 70.1513\\nL 111.565 70.1513\\nL 111.565 62.4413\\nL 112.705 62.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 22, "data-ID": 115, "data-Solubility": -1.17, "data-SMILES": "BrCBr", "mols2grid-tooltip": "<strong>Name</strong>: dibromomethane<br><strong>SMILES</strong>: BrCBr<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.17</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.1575,74.0942 L 69.43,67.0133' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 69.43,67.0133 L 81.7025,59.9325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.7025,59.9325 L 92.2725,66.031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2725,66.031 L 102.843,72.1296' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 81.7025,59.9325 L 81.7025,48.2212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 81.7025,48.2212 L 81.7025,36.51' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 81.7025,59.9325 L 81.7025,72.0337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 81.7025,72.0337 L 81.7025,84.135' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 45.5475 75.2925\\nQ 45.5475 72.6525, 46.7775 71.2725\\nQ 48.0225 69.8775, 50.3775 69.8775\\nQ 52.5675 69.8775, 53.7375 71.4225\\nL 52.7475 72.2325\\nQ 51.8925 71.1075, 50.3775 71.1075\\nQ 48.7725 71.1075, 47.9175 72.1875\\nQ 47.0775 73.2525, 47.0775 75.2925\\nQ 47.0775 77.3925, 47.9475 78.4725\\nQ 48.8325 79.5525, 50.5425 79.5525\\nQ 51.7125 79.5525, 53.0775 78.8475\\nL 53.4975 79.9725\\nQ 52.9425 80.3325, 52.1025 80.5425\\nQ 51.2625 80.7525, 50.3325 80.7525\\nQ 48.0225 80.7525, 46.7775 79.3425\\nQ 45.5475 77.9325, 45.5475 75.2925\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 55.0275 69.2325\\nL 56.4075 69.2325\\nL 56.4075 80.6175\\nL 55.0275 80.6175\\nL 55.0275 69.2325\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 103.592 75.2925\\nQ 103.592 72.6525, 104.822 71.2725\\nQ 106.067 69.8775, 108.422 69.8775\\nQ 110.612 69.8775, 111.782 71.4225\\nL 110.792 72.2325\\nQ 109.937 71.1075, 108.422 71.1075\\nQ 106.817 71.1075, 105.962 72.1875\\nQ 105.122 73.2525, 105.122 75.2925\\nQ 105.122 77.3925, 105.992 78.4725\\nQ 106.877 79.5525, 108.587 79.5525\\nQ 109.757 79.5525, 111.122 78.8475\\nL 111.542 79.9725\\nQ 110.987 80.3325, 110.147 80.5425\\nQ 109.307 80.7525, 108.377 80.7525\\nQ 106.067 80.7525, 104.822 79.3425\\nQ 103.592 77.9325, 103.592 75.2925\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 113.072 69.2325\\nL 114.452 69.2325\\nL 114.452 80.6175\\nL 113.072 80.6175\\nL 113.072 69.2325\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 77.6075 30.3\\nQ 77.6075 27.66, 78.8375 26.28\\nQ 80.0825 24.885, 82.4375 24.885\\nQ 84.6275 24.885, 85.7975 26.43\\nL 84.8075 27.24\\nQ 83.9525 26.115, 82.4375 26.115\\nQ 80.8325 26.115, 79.9775 27.195\\nQ 79.1375 28.26, 79.1375 30.3\\nQ 79.1375 32.4, 80.0075 33.48\\nQ 80.8925 34.56, 82.6025 34.56\\nQ 83.7725 34.56, 85.1375 33.855\\nL 85.5575 34.98\\nQ 85.0025 35.34, 84.1625 35.55\\nQ 83.3225 35.76, 82.3925 35.76\\nQ 80.0825 35.76, 78.8375 34.35\\nQ 77.6075 32.94, 77.6075 30.3\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 87.0875 24.24\\nL 88.4675 24.24\\nL 88.4675 35.625\\nL 87.0875 35.625\\nL 87.0875 24.24\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 77.6075 90.3\\nQ 77.6075 87.66, 78.8375 86.28\\nQ 80.0825 84.885, 82.4375 84.885\\nQ 84.6275 84.885, 85.7975 86.43\\nL 84.8075 87.24\\nQ 83.9525 86.115, 82.4375 86.115\\nQ 80.8325 86.115, 79.9775 87.195\\nQ 79.1375 88.26, 79.1375 90.3\\nQ 79.1375 92.4, 80.0075 93.48\\nQ 80.8925 94.56, 82.6025 94.56\\nQ 83.7725 94.56, 85.1375 93.855\\nL 85.5575 94.98\\nQ 85.0025 95.34, 84.1625 95.55\\nQ 83.3225 95.76, 82.3925 95.76\\nQ 80.0825 95.76, 78.8375 94.35\\nQ 77.6075 92.94, 77.6075 90.3\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 87.0875 84.24\\nL 88.4675 84.24\\nL 88.4675 95.625\\nL 87.0875 95.625\\nL 87.0875 84.24\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 23, "data-ID": 120, "data-Solubility": -2.31, "data-SMILES": "ClC(Cl)(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: tetrachloromethane<br><strong>SMILES</strong>: ClC(Cl)(Cl)Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.31</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.9075,64.7192 L 53.18,57.6383' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 53.18,57.6383 L 65.4525,50.5575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.5575 L 97.9525,69.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.9525,69.3075 L 108.523,63.209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 108.523,63.209 L 119.093,57.1104' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 29.2975 65.9175\\nQ 29.2975 63.2775, 30.5275 61.8975\\nQ 31.7725 60.5025, 34.1275 60.5025\\nQ 36.3175 60.5025, 37.4875 62.0475\\nL 36.4975 62.8575\\nQ 35.6425 61.7325, 34.1275 61.7325\\nQ 32.5225 61.7325, 31.6675 62.8125\\nQ 30.8275 63.8775, 30.8275 65.9175\\nQ 30.8275 68.0175, 31.6975 69.0975\\nQ 32.5825 70.1775, 34.2925 70.1775\\nQ 35.4625 70.1775, 36.8275 69.4725\\nL 37.2475 70.5975\\nQ 36.6925 70.9575, 35.8525 71.1675\\nQ 35.0125 71.3775, 34.0825 71.3775\\nQ 31.7725 71.3775, 30.5275 69.9675\\nQ 29.2975 68.5575, 29.2975 65.9175\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 38.7775 59.8575\\nL 40.1575 59.8575\\nL 40.1575 71.2425\\nL 38.7775 71.2425\\nL 38.7775 59.8575\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 119.842 54.6825\\nQ 119.842 52.0425, 121.072 50.6625\\nQ 122.317 49.2675, 124.672 49.2675\\nQ 126.862 49.2675, 128.032 50.8125\\nL 127.042 51.6225\\nQ 126.187 50.4975, 124.672 50.4975\\nQ 123.067 50.4975, 122.212 51.5775\\nQ 121.372 52.6425, 121.372 54.6825\\nQ 121.372 56.7825, 122.242 57.8625\\nQ 123.127 58.9425, 124.837 58.9425\\nQ 126.007 58.9425, 127.372 58.2375\\nL 127.792 59.3625\\nQ 127.237 59.7225, 126.397 59.9325\\nQ 125.557 60.1425, 124.627 60.1425\\nQ 122.317 60.1425, 121.072 58.7325\\nQ 119.842 57.3225, 119.842 54.6825\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 129.322 48.6225\\nL 130.702 48.6225\\nL 130.702 60.0075\\nL 129.322 60.0075\\nL 129.322 48.6225\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 24, "data-ID": 125, "data-Solubility": -1.06, "data-SMILES": "ClCCCl", "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dichloroethane<br><strong>SMILES</strong>: ClCCCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.06</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.9075,64.7192 L 53.18,57.6383' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 53.18,57.6383 L 65.4525,50.5575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.5575 L 65.4525,38.8462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,38.8462 L 65.4525,27.135' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 65.4525,50.5575 L 97.9525,69.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.9525,69.3075 L 108.523,63.209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.523,63.209 L 119.093,57.1104' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,69.3075 L 97.9525,81.4087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,81.4087 L 97.9525,93.51' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 29.2975 65.9175\\nQ 29.2975 63.2775, 30.5275 61.8975\\nQ 31.7725 60.5025, 34.1275 60.5025\\nQ 36.3175 60.5025, 37.4875 62.0475\\nL 36.4975 62.8575\\nQ 35.6425 61.7325, 34.1275 61.7325\\nQ 32.5225 61.7325, 31.6675 62.8125\\nQ 30.8275 63.8775, 30.8275 65.9175\\nQ 30.8275 68.0175, 31.6975 69.0975\\nQ 32.5825 70.1775, 34.2925 70.1775\\nQ 35.4625 70.1775, 36.8275 69.4725\\nL 37.2475 70.5975\\nQ 36.6925 70.9575, 35.8525 71.1675\\nQ 35.0125 71.3775, 34.0825 71.3775\\nQ 31.7725 71.3775, 30.5275 69.9675\\nQ 29.2975 68.5575, 29.2975 65.9175\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 38.7775 59.8575\\nL 40.1575 59.8575\\nL 40.1575 71.2425\\nL 38.7775 71.2425\\nL 38.7775 59.8575\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 61.3575 20.925\\nQ 61.3575 18.285, 62.5875 16.905\\nQ 63.8325 15.51, 66.1875 15.51\\nQ 68.3775 15.51, 69.5475 17.055\\nL 68.5575 17.865\\nQ 67.7025 16.74, 66.1875 16.74\\nQ 64.5825 16.74, 63.7275 17.82\\nQ 62.8875 18.885, 62.8875 20.925\\nQ 62.8875 23.025, 63.7575 24.105\\nQ 64.6425 25.185, 66.3525 25.185\\nQ 67.5225 25.185, 68.8875 24.48\\nL 69.3075 25.605\\nQ 68.7525 25.965, 67.9125 26.175\\nQ 67.0725 26.385, 66.1425 26.385\\nQ 63.8325 26.385, 62.5875 24.975\\nQ 61.3575 23.565, 61.3575 20.925\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 70.8375 14.865\\nL 72.2175 14.865\\nL 72.2175 26.25\\nL 70.8375 26.25\\nL 70.8375 14.865\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 119.842 54.6825\\nQ 119.842 52.0425, 121.072 50.6625\\nQ 122.317 49.2675, 124.672 49.2675\\nQ 126.862 49.2675, 128.032 50.8125\\nL 127.042 51.6225\\nQ 126.187 50.4975, 124.672 50.4975\\nQ 123.067 50.4975, 122.212 51.5775\\nQ 121.372 52.6425, 121.372 54.6825\\nQ 121.372 56.7825, 122.242 57.8625\\nQ 123.127 58.9425, 124.837 58.9425\\nQ 126.007 58.9425, 127.372 58.2375\\nL 127.792 59.3625\\nQ 127.237 59.7225, 126.397 59.9325\\nQ 125.557 60.1425, 124.627 60.1425\\nQ 122.317 60.1425, 121.072 58.7325\\nQ 119.842 57.3225, 119.842 54.6825\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 129.322 48.6225\\nL 130.702 48.6225\\nL 130.702 60.0075\\nL 129.322 60.0075\\nL 129.322 48.6225\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 93.8575 99.675\\nQ 93.8575 97.035, 95.0875 95.655\\nQ 96.3325 94.26, 98.6875 94.26\\nQ 100.877 94.26, 102.047 95.805\\nL 101.058 96.615\\nQ 100.203 95.49, 98.6875 95.49\\nQ 97.0825 95.49, 96.2275 96.57\\nQ 95.3875 97.635, 95.3875 99.675\\nQ 95.3875 101.775, 96.2575 102.855\\nQ 97.1425 103.935, 98.8525 103.935\\nQ 100.023 103.935, 101.388 103.23\\nL 101.808 104.355\\nQ 101.252 104.715, 100.412 104.925\\nQ 99.5725 105.135, 98.6425 105.135\\nQ 96.3325 105.135, 95.0875 103.725\\nQ 93.8575 102.315, 93.8575 99.675\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 103.338 93.615\\nL 104.718 93.615\\nL 104.718 105\\nL 103.338 105\\nL 103.338 93.615\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 25, "data-ID": 130, "data-Solubility": -1.74, "data-SMILES": "ClC(Cl)C(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: 1,1,2,2-tetrachloroethane<br><strong>SMILES</strong>: ClC(Cl)C(Cl)Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.74</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 34.3825,66.585 L 60.3675,51.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.3675,51.5925 L 92.8675,70.3425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8675,70.3425 L 103.438,64.244' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.438,64.244 L 114.008,58.1454' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 114.758 55.7175\\nQ 114.758 53.0775, 115.988 51.6975\\nQ 117.233 50.3025, 119.588 50.3025\\nQ 121.778 50.3025, 122.948 51.8475\\nL 121.958 52.6575\\nQ 121.103 51.5325, 119.588 51.5325\\nQ 117.983 51.5325, 117.128 52.6125\\nQ 116.288 53.6775, 116.288 55.7175\\nQ 116.288 57.8175, 117.158 58.8975\\nQ 118.043 59.9775, 119.753 59.9775\\nQ 120.923 59.9775, 122.288 59.2725\\nL 122.708 60.3975\\nQ 122.153 60.7575, 121.312 60.9675\\nQ 120.473 61.1775, 119.543 61.1775\\nQ 117.233 61.1775, 115.988 59.7675\\nQ 114.758 58.3575, 114.758 55.7175\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 124.238 49.6575\\nL 125.618 49.6575\\nL 125.618 61.0425\\nL 124.238 61.0425\\nL 124.238 49.6575\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 26, "data-ID": 135, "data-Solubility": -1.47, "data-SMILES": "CCCCl", "mols2grid-tooltip": "<strong>Name</strong>: 1-chloropropane<br><strong>SMILES</strong>: CCCCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.47</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 53.6587,79.83 L 79.6437,64.8375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.6437,64.8375 L 91.905,71.9118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.905,71.9118 L 104.166,78.9862' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 79.6437,64.8375 L 79.6437,34.8375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 104.916 74.4975\\nL 106.341 74.4975\\nL 106.341 85.1625\\nL 104.916 85.1625\\nL 104.916 74.4975\\n' fill='#A01EEF'/>\\n</svg>\\n", "mols2grid-id": 27, "data-ID": 140, "data-Solubility": -2.09, "data-SMILES": "CC(I)C", "mols2grid-tooltip": "<strong>Name</strong>: 2-iodopropane<br><strong>SMILES</strong>: CC(I)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.425,49.6845 L 52.9362,43.0429' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 52.9362,43.0429 L 64.4475,36.4013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.4475,36.4013 L 96.9475,55.1513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.9475,55.1513 L 107.761,48.9121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.761,48.9121 L 118.575,42.6729' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.9475,55.1513 L 96.9475,85.1513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 32.92 51.1238\\nQ 33.94 51.4087, 34.45 52.0388\\nQ 34.975 52.6538, 34.975 53.5688\\nQ 34.975 55.0388, 34.03 55.8787\\nQ 33.1 56.7037, 31.33 56.7037\\nL 27.76 56.7037\\nL 27.76 46.0837\\nL 30.895 46.0837\\nQ 32.71 46.0837, 33.625 46.8188\\nQ 34.54 47.5538, 34.54 48.9038\\nQ 34.54 50.5087, 32.92 51.1238\\nM 29.185 47.2837\\nL 29.185 50.6137\\nL 30.895 50.6137\\nQ 31.945 50.6137, 32.485 50.1938\\nQ 33.04 49.7587, 33.04 48.9038\\nQ 33.04 47.2837, 30.895 47.2837\\nL 29.185 47.2837\\nM 31.33 55.5037\\nQ 32.365 55.5037, 32.92 55.0087\\nQ 33.475 54.5138, 33.475 53.5688\\nQ 33.475 52.6987, 32.86 52.2638\\nQ 32.26 51.8137, 31.105 51.8137\\nL 29.185 51.8137\\nL 29.185 55.5037\\nL 31.33 55.5037\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 37.39 48.9937\\nL 37.555 50.0587\\nQ 38.365 48.8588, 39.685 48.8588\\nQ 40.105 48.8588, 40.675 49.0087\\nL 40.45 50.2687\\nQ 39.805 50.1187, 39.445 50.1187\\nQ 38.815 50.1187, 38.395 50.3738\\nQ 37.99 50.6137, 37.66 51.1987\\nL 37.66 56.7037\\nL 36.25 56.7037\\nL 36.25 48.9937\\nL 37.39 48.9937\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 124.485 39.8888\\nQ 125.505 40.1737, 126.015 40.8038\\nQ 126.54 41.4188, 126.54 42.3338\\nQ 126.54 43.8038, 125.595 44.6437\\nQ 124.665 45.4688, 122.895 45.4688\\nL 119.325 45.4688\\nL 119.325 34.8487\\nL 122.46 34.8487\\nQ 124.275 34.8487, 125.19 35.5838\\nQ 126.105 36.3188, 126.105 37.6688\\nQ 126.105 39.2737, 124.485 39.8888\\nM 120.75 36.0487\\nL 120.75 39.3787\\nL 122.46 39.3787\\nQ 123.51 39.3787, 124.05 38.9588\\nQ 124.605 38.5237, 124.605 37.6688\\nQ 124.605 36.0487, 122.46 36.0487\\nL 120.75 36.0487\\nM 122.895 44.2687\\nQ 123.93 44.2687, 124.485 43.7737\\nQ 125.04 43.2788, 125.04 42.3338\\nQ 125.04 41.4637, 124.425 41.0288\\nQ 123.825 40.5787, 122.67 40.5787\\nL 120.75 40.5787\\nL 120.75 44.2687\\nL 122.895 44.2687\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 128.955 37.7587\\nL 129.12 38.8237\\nQ 129.93 37.6238, 131.25 37.6238\\nQ 131.67 37.6238, 132.24 37.7737\\nL 132.015 39.0337\\nQ 131.37 38.8837, 131.01 38.8837\\nQ 130.38 38.8837, 129.96 39.1388\\nQ 129.555 39.3787, 129.225 39.9637\\nL 129.225 45.4688\\nL 127.815 45.4688\\nL 127.815 37.7587\\nL 128.955 37.7587\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 28, "data-ID": 145, "data-Solubility": -2.15, "data-SMILES": "BrCC(Br)C", "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dibromopropane<br><strong>SMILES</strong>: BrCC(Br)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 29.8287,63.132 L 41.34,56.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.34,56.4904 L 52.8512,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 52.8512,49.8487 L 85.3512,68.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.3512,68.5987 L 117.851,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 117.851,49.8487 L 143.836,64.8413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 21.3237 64.5713\\nQ 22.3437 64.8563, 22.8537 65.4862\\nQ 23.3787 66.1013, 23.3787 67.0162\\nQ 23.3787 68.4862, 22.4337 69.3263\\nQ 21.5037 70.1513, 19.7337 70.1513\\nL 16.1637 70.1513\\nL 16.1637 59.5312\\nL 19.2987 59.5312\\nQ 21.1137 59.5312, 22.0287 60.2663\\nQ 22.9437 61.0013, 22.9437 62.3513\\nQ 22.9437 63.9563, 21.3237 64.5713\\nM 17.5887 60.7313\\nL 17.5887 64.0613\\nL 19.2987 64.0613\\nQ 20.3487 64.0613, 20.8887 63.6413\\nQ 21.4437 63.2063, 21.4437 62.3513\\nQ 21.4437 60.7313, 19.2987 60.7313\\nL 17.5887 60.7313\\nM 19.7337 68.9513\\nQ 20.7687 68.9513, 21.3237 68.4563\\nQ 21.8787 67.9613, 21.8787 67.0162\\nQ 21.8787 66.1463, 21.2637 65.7113\\nQ 20.6637 65.2613, 19.5087 65.2613\\nL 17.5887 65.2613\\nL 17.5887 68.9513\\nL 19.7337 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 25.7937 62.4413\\nL 25.9587 63.5063\\nQ 26.7687 62.3063, 28.0887 62.3063\\nQ 28.5087 62.3063, 29.0787 62.4563\\nL 28.8537 63.7163\\nQ 28.2087 63.5663, 27.8487 63.5663\\nQ 27.2187 63.5663, 26.7987 63.8213\\nQ 26.3937 64.0613, 26.0637 64.6463\\nL 26.0637 70.1513\\nL 24.6537 70.1513\\nL 24.6537 62.4413\\nL 25.7937 62.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 29, "data-ID": 150, "data-Solubility": -2.37, "data-SMILES": "BrCCCC", "mols2grid-tooltip": "<strong>Name</strong>: 1-bromobutane<br><strong>SMILES</strong>: BrCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.37</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 65.4525,20.625 L 65.4525,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.625 L 53.18,57.7058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.18,57.7058 L 40.9075,64.7867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 65.4525,50.625 L 97.9525,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.9525,69.375 L 108.523,63.2765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.523,63.2765 L 119.093,57.1779' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,69.375 L 97.9525,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 29.2975 65.985\\nQ 29.2975 63.345, 30.5275 61.965\\nQ 31.7725 60.57, 34.1275 60.57\\nQ 36.3175 60.57, 37.4875 62.115\\nL 36.4975 62.925\\nQ 35.6425 61.8, 34.1275 61.8\\nQ 32.5225 61.8, 31.6675 62.88\\nQ 30.8275 63.945, 30.8275 65.985\\nQ 30.8275 68.085, 31.6975 69.165\\nQ 32.5825 70.245, 34.2925 70.245\\nQ 35.4625 70.245, 36.8275 69.54\\nL 37.2475 70.665\\nQ 36.6925 71.025, 35.8525 71.235\\nQ 35.0125 71.445, 34.0825 71.445\\nQ 31.7725 71.445, 30.5275 70.035\\nQ 29.2975 68.625, 29.2975 65.985\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 38.7775 59.925\\nL 40.1575 59.925\\nL 40.1575 71.31\\nL 38.7775 71.31\\nL 38.7775 59.925\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 119.842 54.75\\nQ 119.842 52.11, 121.072 50.73\\nQ 122.317 49.335, 124.672 49.335\\nQ 126.862 49.335, 128.032 50.88\\nL 127.042 51.69\\nQ 126.187 50.565, 124.672 50.565\\nQ 123.067 50.565, 122.212 51.645\\nQ 121.372 52.71, 121.372 54.75\\nQ 121.372 56.85, 122.242 57.93\\nQ 123.127 59.01, 124.837 59.01\\nQ 126.007 59.01, 127.372 58.305\\nL 127.792 59.43\\nQ 127.237 59.79, 126.397 60\\nQ 125.557 60.21, 124.627 60.21\\nQ 122.317 60.21, 121.072 58.8\\nQ 119.842 57.39, 119.842 54.75\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 129.322 48.69\\nL 130.702 48.69\\nL 130.702 60.075\\nL 129.322 60.075\\nL 129.322 48.69\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 30, "data-ID": 155, "data-Solubility": -2.7, "data-SMILES": "CC(Cl)C(Cl)C", "mols2grid-tooltip": "<strong>Name</strong>: 2,3-dichlorobutane<br><strong>SMILES</strong>: CC(Cl)C(Cl)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.7</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 29.8287,78.132 L 41.34,71.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.34,71.4904 L 52.8512,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 52.8512,64.8487 L 85.3512,83.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.3512,83.5987 L 117.851,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 117.851,64.8487 L 143.836,79.8413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 117.851,64.8487 L 117.851,34.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 21.3237 79.5713\\nQ 22.3437 79.8563, 22.8537 80.4862\\nQ 23.3787 81.1013, 23.3787 82.0162\\nQ 23.3787 83.4862, 22.4337 84.3263\\nQ 21.5037 85.1513, 19.7337 85.1513\\nL 16.1637 85.1513\\nL 16.1637 74.5312\\nL 19.2987 74.5312\\nQ 21.1137 74.5312, 22.0287 75.2662\\nQ 22.9437 76.0012, 22.9437 77.3513\\nQ 22.9437 78.9563, 21.3237 79.5713\\nM 17.5887 75.7313\\nL 17.5887 79.0613\\nL 19.2987 79.0613\\nQ 20.3487 79.0613, 20.8887 78.6412\\nQ 21.4437 78.2063, 21.4437 77.3513\\nQ 21.4437 75.7313, 19.2987 75.7313\\nL 17.5887 75.7313\\nM 19.7337 83.9513\\nQ 20.7687 83.9513, 21.3237 83.4563\\nQ 21.8787 82.9613, 21.8787 82.0162\\nQ 21.8787 81.1463, 21.2637 80.7113\\nQ 20.6637 80.2613, 19.5087 80.2613\\nL 17.5887 80.2613\\nL 17.5887 83.9513\\nL 19.7337 83.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 25.7937 77.4413\\nL 25.9587 78.5063\\nQ 26.7687 77.3063, 28.0887 77.3063\\nQ 28.5087 77.3063, 29.0787 77.4563\\nL 28.8537 78.7163\\nQ 28.2087 78.5663, 27.8487 78.5663\\nQ 27.2187 78.5663, 26.7987 78.8213\\nQ 26.3937 79.0613, 26.0637 79.6463\\nL 26.0637 85.1513\\nL 24.6537 85.1513\\nL 24.6537 77.4413\\nL 25.7937 77.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 31, "data-ID": 160, "data-Solubility": -2.89, "data-SMILES": "BrCCC(C)C", "mols2grid-tooltip": "<strong>Name</strong>: 1-bromo-3-methylbutane<br><strong>SMILES</strong>: BrCCC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.89</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,62.7477 L 22.0209,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.0209,54.2385 L 40.4669,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 40.4669,64.8804 L 58.9128,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.9128,54.2385 L 77.3587,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.3587,64.8804 L 95.8046,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8046,54.2385 L 114.249,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 114.249,64.8804 L 132.695,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 132.695,54.2385 L 138.833,57.7797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 138.833,57.7797 L 144.971,61.3209' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 148.326 62.5945\\nQ 148.905 62.7562, 149.194 63.1138\\nQ 149.492 63.4629, 149.492 63.9822\\nQ 149.492 64.8165, 148.956 65.2933\\nQ 148.428 65.7615, 147.423 65.7615\\nL 145.397 65.7615\\nL 145.397 59.734\\nL 147.176 59.734\\nQ 148.207 59.734, 148.726 60.1511\\nQ 149.245 60.5683, 149.245 61.3345\\nQ 149.245 62.2454, 148.326 62.5945\\nM 146.206 60.415\\nL 146.206 62.305\\nL 147.176 62.305\\nQ 147.772 62.305, 148.079 62.0667\\nQ 148.394 61.8198, 148.394 61.3345\\nQ 148.394 60.415, 147.176 60.415\\nL 146.206 60.415\\nM 147.423 65.0804\\nQ 148.011 65.0804, 148.326 64.7995\\nQ 148.641 64.5185, 148.641 63.9822\\nQ 148.641 63.4884, 148.292 63.2415\\nQ 147.951 62.9861, 147.296 62.9861\\nL 146.206 62.9861\\nL 146.206 65.0804\\nL 147.423 65.0804\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 150.863 61.3856\\nL 150.956 61.99\\nQ 151.416 61.309, 152.165 61.309\\nQ 152.404 61.309, 152.727 61.3941\\nL 152.6 62.1092\\nQ 152.233 62.0241, 152.029 62.0241\\nQ 151.672 62.0241, 151.433 62.1688\\nQ 151.203 62.305, 151.016 62.6371\\nL 151.016 65.7615\\nL 150.216 65.7615\\nL 150.216 61.3856\\nL 150.863 61.3856\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 32, "data-ID": 165, "data-Solubility": -5.06, "data-SMILES": "CCCCCCCCBr", "mols2grid-tooltip": "<strong>Name</strong>: 1-bromooctane<br><strong>SMILES</strong>: CCCCCCCCBr<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.06</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,64.1559 L 24.1629,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.1629,54.4108 L 45.2878,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.2878,66.5983 L 66.4126,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.4126,54.4108 L 87.5375,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5375,66.5983 L 108.662,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 108.662,54.4108 L 129.786,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 129.786,66.5983 L 136.815,62.5428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 136.815,62.5428 L 143.845,58.4872' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 147.687 56.6777\\nQ 148.35 56.863, 148.681 57.2725\\nQ 149.022 57.6722, 149.022 58.2669\\nQ 149.022 59.2224, 148.408 59.7684\\nQ 147.804 60.3047, 146.653 60.3047\\nL 144.333 60.3047\\nL 144.333 53.4017\\nL 146.37 53.4017\\nQ 147.55 53.4017, 148.145 53.8795\\nQ 148.74 54.3572, 148.74 55.2347\\nQ 148.74 56.278, 147.687 56.6777\\nM 145.259 54.1817\\nL 145.259 56.3462\\nL 146.37 56.3462\\nQ 147.053 56.3462, 147.404 56.0732\\nQ 147.765 55.7905, 147.765 55.2347\\nQ 147.765 54.1817, 146.37 54.1817\\nL 145.259 54.1817\\nM 146.653 59.5247\\nQ 147.326 59.5247, 147.687 59.2029\\nQ 148.047 58.8812, 148.047 58.2669\\nQ 148.047 57.7015, 147.648 57.4187\\nQ 147.258 57.1262, 146.507 57.1262\\nL 145.259 57.1262\\nL 145.259 59.5247\\nL 146.653 59.5247\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 150.592 55.2932\\nL 150.699 55.9855\\nQ 151.226 55.2055, 152.084 55.2055\\nQ 152.357 55.2055, 152.727 55.303\\nL 152.581 56.122\\nQ 152.162 56.0245, 151.928 56.0245\\nQ 151.518 56.0245, 151.245 56.1902\\nQ 150.982 56.3462, 150.768 56.7265\\nL 150.768 60.3047\\nL 149.851 60.3047\\nL 149.851 55.2932\\nL 150.592 55.2932\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 33, "data-ID": 171, "data-Solubility": -4.43, "data-SMILES": "CCCCCCCBr", "mols2grid-tooltip": "<strong>Name</strong>: 1-bromoheptane<br><strong>SMILES</strong>: CCCCCCCBr<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.43</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.425,63.9082 L 52.9362,57.2666' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 52.9362,57.2666 L 64.4475,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.5735,53.8732 L 98.8215,66.1268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.3215,47.3768 L 95.0735,72.6232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.9475,69.375 L 107.761,63.1358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.761,63.1358 L 118.575,56.8966' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 32.92 65.3475\\nQ 33.94 65.6325, 34.45 66.2625\\nQ 34.975 66.8775, 34.975 67.7925\\nQ 34.975 69.2625, 34.03 70.1025\\nQ 33.1 70.9275, 31.33 70.9275\\nL 27.76 70.9275\\nL 27.76 60.3075\\nL 30.895 60.3075\\nQ 32.71 60.3075, 33.625 61.0425\\nQ 34.54 61.7775, 34.54 63.1275\\nQ 34.54 64.7325, 32.92 65.3475\\nM 29.185 61.5075\\nL 29.185 64.8375\\nL 30.895 64.8375\\nQ 31.945 64.8375, 32.485 64.4175\\nQ 33.04 63.9825, 33.04 63.1275\\nQ 33.04 61.5075, 30.895 61.5075\\nL 29.185 61.5075\\nM 31.33 69.7275\\nQ 32.365 69.7275, 32.92 69.2325\\nQ 33.475 68.7375, 33.475 67.7925\\nQ 33.475 66.9225, 32.86 66.4875\\nQ 32.26 66.0375, 31.105 66.0375\\nL 29.185 66.0375\\nL 29.185 69.7275\\nL 31.33 69.7275\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 37.39 63.2175\\nL 37.555 64.2825\\nQ 38.365 63.0825, 39.685 63.0825\\nQ 40.105 63.0825, 40.675 63.2325\\nL 40.45 64.4925\\nQ 39.805 64.3425, 39.445 64.3425\\nQ 38.815 64.3425, 38.395 64.5975\\nQ 37.99 64.8375, 37.66 65.4225\\nL 37.66 70.9275\\nL 36.25 70.9275\\nL 36.25 63.2175\\nL 37.39 63.2175\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 124.485 54.1125\\nQ 125.505 54.3975, 126.015 55.0275\\nQ 126.54 55.6425, 126.54 56.5575\\nQ 126.54 58.0275, 125.595 58.8675\\nQ 124.665 59.6925, 122.895 59.6925\\nL 119.325 59.6925\\nL 119.325 49.0725\\nL 122.46 49.0725\\nQ 124.275 49.0725, 125.19 49.8075\\nQ 126.105 50.5425, 126.105 51.8925\\nQ 126.105 53.4975, 124.485 54.1125\\nM 120.75 50.2725\\nL 120.75 53.6025\\nL 122.46 53.6025\\nQ 123.51 53.6025, 124.05 53.1825\\nQ 124.605 52.7475, 124.605 51.8925\\nQ 124.605 50.2725, 122.46 50.2725\\nL 120.75 50.2725\\nM 122.895 58.4925\\nQ 123.93 58.4925, 124.485 57.9975\\nQ 125.04 57.5025, 125.04 56.5575\\nQ 125.04 55.6875, 124.425 55.2525\\nQ 123.825 54.8025, 122.67 54.8025\\nL 120.75 54.8025\\nL 120.75 58.4925\\nL 122.895 58.4925\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 128.955 51.9825\\nL 129.12 53.0475\\nQ 129.93 51.8475, 131.25 51.8475\\nQ 131.67 51.8475, 132.24 51.9975\\nL 132.015 53.2575\\nQ 131.37 53.1075, 131.01 53.1075\\nQ 130.38 53.1075, 129.96 53.3625\\nQ 129.555 53.6025, 129.225 54.1875\\nL 129.225 59.6925\\nL 127.815 59.6925\\nL 127.815 51.9825\\nL 128.955 51.9825\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 34, "data-ID": 176, "data-Solubility": -1.32, "data-SMILES": "BrC=CBr", "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dibromoethylene<br><strong>SMILES</strong>: BrC=CBr<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.32</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 102.755,108.977 L 107.856,101.042' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.856,101.042 L 112.958,93.1062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.958,93.1062 L 132.974,89.1376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 106.919,76.8865 L 112.958,93.1062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 134.526,89.1376 L 131.421,68.7767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.421,89.1376 L 134.526,68.7767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 132.974,68.7767 L 113.993,64.6355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 113.993,64.6355 L 106.919,76.8865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-4' d='M 86.2126,48.9335 L 113.993,64.6355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 106.919,76.8865 L 78.9656,61.3571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.9656,61.3571 L 72.8194,68.7038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 72.8194,68.7038 L 66.6732,76.0505' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 78.9656,61.3571 L 44.9733,75.1611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-6' d='M 81.8989,21.8433 L 78.9656,61.3571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 46.2976,75.9722 L 52.104,60.546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 43.6491,74.3499 L 54.7525,62.1682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-8 atom-16' d='M 44.9733,75.1611 L 42.2198,82.9163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-8 atom-16' d='M 42.2198,82.9163 L 39.4662,90.6715' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 53.4283,61.3571 L 44.234,57.9014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 44.234,57.9014 L 35.0397,54.4456' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 53.4283,61.3571 L 86.2126,48.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 86.2126,48.9335 L 90.6052,42.7752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 90.6052,42.7752 L 94.9978,36.6169' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-11 atom-13' d='M 86.2126,48.9335 L 81.8989,21.8433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 81.8989,21.8433 L 73.0074,17.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 73.0074,17.7105 L 64.116,13.5777' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-15' d='M 81.8989,21.8433 L 88.4955,16.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-15' d='M 88.4955,16.8731 L 95.092,11.903' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 94.7418 110.777\\nQ 94.7418 108.955, 95.5907 108.002\\nQ 96.45 107.04, 98.0754 107.04\\nQ 99.5869 107.04, 100.394 108.106\\nL 99.7112 108.665\\nQ 99.1211 107.888, 98.0754 107.888\\nQ 96.9676 107.888, 96.3775 108.634\\nQ 95.7978 109.369, 95.7978 110.777\\nQ 95.7978 112.226, 96.3982 112.972\\nQ 97.0091 113.717, 98.1893 113.717\\nQ 98.9968 113.717, 99.9389 113.231\\nL 100.229 114.007\\nQ 99.8458 114.256, 99.266 114.401\\nQ 98.6862 114.545, 98.0444 114.545\\nQ 96.45 114.545, 95.5907 113.572\\nQ 94.7418 112.599, 94.7418 110.777\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 101.285 106.594\\nL 102.237 106.594\\nL 102.237 114.452\\nL 101.285 114.452\\nL 101.285 106.594\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 58.66 77.4922\\nQ 58.66 75.6701, 59.5089 74.7176\\nQ 60.3682 73.7548, 61.9936 73.7548\\nQ 63.5051 73.7548, 64.3127 74.8211\\nL 63.6294 75.3802\\nQ 63.0393 74.6037, 61.9936 74.6037\\nQ 60.8858 74.6037, 60.2957 75.3491\\nQ 59.716 76.0842, 59.716 77.4922\\nQ 59.716 78.9416, 60.3164 79.687\\nQ 60.9273 80.4324, 62.1075 80.4324\\nQ 62.915 80.4324, 63.8571 79.9458\\nL 64.147 80.7223\\nQ 63.764 80.9708, 63.1842 81.1157\\nQ 62.6044 81.2607, 61.9625 81.2607\\nQ 60.3682 81.2607, 59.5089 80.2875\\nQ 58.66 79.3143, 58.66 77.4922\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 65.203 73.3096\\nL 66.1555 73.3096\\nL 66.1555 81.1675\\nL 65.203 81.1675\\nL 65.203 73.3096\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 27.0265 54.3257\\nQ 27.0265 52.5036, 27.8754 51.5511\\nQ 28.7347 50.5883, 30.3601 50.5883\\nQ 31.8717 50.5883, 32.6792 51.6546\\nL 31.9959 52.2137\\nQ 31.4058 51.4372, 30.3601 51.4372\\nQ 29.2524 51.4372, 28.6622 52.1826\\nQ 28.0825 52.9177, 28.0825 54.3257\\nQ 28.0825 55.7751, 28.6829 56.5205\\nQ 29.2938 57.266, 30.474 57.266\\nQ 31.2815 57.266, 32.2237 56.7794\\nL 32.5135 57.5558\\nQ 32.1305 57.8043, 31.5507 57.9493\\nQ 30.9709 58.0942, 30.3291 58.0942\\nQ 28.7347 58.0942, 27.8754 57.121\\nQ 27.0265 56.1478, 27.0265 54.3257\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 33.5695 50.1431\\nL 34.522 50.1431\\nL 34.522 58.001\\nL 33.5695 58.001\\nL 33.5695 50.1431\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 95.4095 32.3308\\nQ 95.4095 30.5087, 96.2585 29.5562\\nQ 97.1178 28.5934, 98.7432 28.5934\\nQ 100.255 28.5934, 101.062 29.6598\\nL 100.379 30.2188\\nQ 99.7888 29.4424, 98.7432 29.4424\\nQ 97.6354 29.4424, 97.0453 30.1878\\nQ 96.4655 30.9228, 96.4655 32.3308\\nQ 96.4655 33.7803, 97.066 34.5257\\nQ 97.6768 35.2711, 98.8571 35.2711\\nQ 99.6646 35.2711, 100.607 34.7845\\nL 100.897 35.561\\nQ 100.514 35.8094, 99.9338 35.9544\\nQ 99.354 36.0993, 98.7121 36.0993\\nQ 97.1178 36.0993, 96.2585 35.1261\\nQ 95.4095 34.153, 95.4095 32.3308\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 101.953 28.1482\\nL 102.905 28.1482\\nL 102.905 36.0061\\nL 101.953 36.0061\\nL 101.953 28.1482\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 56.1028 13.3694\\nQ 56.1028 11.5473, 56.9517 10.5948\\nQ 57.811 9.63197, 59.4364 9.63197\\nQ 60.948 9.63197, 61.7555 10.6983\\nL 61.0722 11.2574\\nQ 60.4821 10.4809, 59.4364 10.4809\\nQ 58.3287 10.4809, 57.7385 11.2263\\nQ 57.1588 11.9614, 57.1588 13.3694\\nQ 57.1588 14.8188, 57.7592 15.5642\\nQ 58.3701 16.3096, 59.5503 16.3096\\nQ 60.3578 16.3096, 61.3 15.823\\nL 61.5898 16.5995\\nQ 61.2068 16.848, 60.627 16.9929\\nQ 60.0472 17.1379, 59.4054 17.1379\\nQ 57.811 17.1379, 56.9517 16.1647\\nQ 56.1028 15.1915, 56.1028 13.3694\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 62.6458 9.18679\\nL 63.5983 9.18679\\nL 63.5983 17.0447\\nL 62.6458 17.0447\\nL 62.6458 9.18679\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 95.6097 9.63714\\nQ 95.6097 7.81502, 96.4586 6.86255\\nQ 97.3179 5.89972, 98.9433 5.89972\\nQ 100.455 5.89972, 101.262 6.96608\\nL 100.579 7.52514\\nQ 99.989 6.74867, 98.9433 6.74867\\nQ 97.8356 6.74867, 97.2455 7.49408\\nQ 96.6657 8.22914, 96.6657 9.63714\\nQ 96.6657 11.0866, 97.2662 11.832\\nQ 97.877 12.5774, 99.0572 12.5774\\nQ 99.8648 12.5774, 100.807 12.0908\\nL 101.097 12.8673\\nQ 100.714 13.1157, 100.134 13.2607\\nQ 99.5542 13.4056, 98.9123 13.4056\\nQ 97.3179 13.4056, 96.4586 12.4324\\nQ 95.6097 11.4593, 95.6097 9.63714\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 102.153 5.45455\\nL 103.105 5.45455\\nL 103.105 13.3124\\nL 102.153 13.3124\\nL 102.153 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 35.2191 94.9266\\nQ 35.2191 93.1045, 36.0681 92.152\\nQ 36.9274 91.1892, 38.5528 91.1892\\nQ 40.0643 91.1892, 40.8718 92.2555\\nL 40.1885 92.8146\\nQ 39.5984 92.0381, 38.5528 92.0381\\nQ 37.445 92.0381, 36.8549 92.7835\\nQ 36.2751 93.5186, 36.2751 94.9266\\nQ 36.2751 96.376, 36.8756 97.1214\\nQ 37.4864 97.8668, 38.6667 97.8668\\nQ 39.4742 97.8668, 40.4163 97.3802\\nL 40.7062 98.1567\\nQ 40.3231 98.4052, 39.7434 98.5501\\nQ 39.1636 98.6951, 38.5217 98.6951\\nQ 36.9274 98.6951, 36.0681 97.7219\\nQ 35.2191 96.7487, 35.2191 94.9266\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 41.7622 90.744\\nL 42.7147 90.744\\nL 42.7147 98.6019\\nL 41.7622 98.6019\\nL 41.7622 90.744\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 35, "data-ID": 181, "data-Solubility": -6.32, "data-SMILES": "ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: heptachlor<br><strong>SMILES</strong>: ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.32</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 17.421,64.125 L 28.1484,57.9357' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 28.1484,57.9357 L 38.8758,51.7463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 38.8758,51.7463 L 38.8758,41.5095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 38.8758,41.5095 L 38.8758,31.2727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 37.2378,54.5856 L 68.9221,65.2964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 40.5138,48.9071 L 65.646,70.9749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.284,68.1357 L 67.284,78.7134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.284,78.7134 L 67.284,89.2911' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 67.284,68.1357 L 95.6923,51.7463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.6923,51.7463 L 95.6923,41.5095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.6923,41.5095 L 95.6923,31.2727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 94.0542,54.5856 L 125.739,65.2964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.3303,48.9071 L 122.462,70.9749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.101,68.1357 L 133.34,62.8049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 133.34,62.8049 L 142.579,57.4742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 124.101,68.1357 L 124.101,78.7134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 124.101,78.7134 L 124.101,89.2911' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 65.1725\\nQ 7.27273 62.8649, 8.34787 61.6586\\nQ 9.43612 60.4392, 11.4946 60.4392\\nQ 13.4089 60.4392, 14.4316 61.7897\\nL 13.5662 62.4977\\nQ 12.8189 61.5144, 11.4946 61.5144\\nQ 10.0917 61.5144, 9.34434 62.4584\\nQ 8.6101 63.3893, 8.6101 65.1725\\nQ 8.6101 67.0081, 9.37057 67.9521\\nQ 10.1441 68.8961, 11.6389 68.8961\\nQ 12.6616 68.8961, 13.8547 68.2799\\nL 14.2218 69.2633\\nQ 13.7367 69.5779, 13.0025 69.7615\\nQ 12.2682 69.9451, 11.4553 69.9451\\nQ 9.43612 69.9451, 8.34787 68.7126\\nQ 7.27273 67.4801, 7.27273 65.1725\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 15.5592 59.8754\\nL 16.7654 59.8754\\nL 16.7654 69.8271\\nL 15.5592 69.8271\\nL 15.5592 59.8754\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 35.2964 25.8446\\nQ 35.2964 23.5369, 36.3715 22.3307\\nQ 37.4598 21.1113, 39.5183 21.1113\\nQ 41.4325 21.1113, 42.4552 22.4618\\nL 41.5899 23.1698\\nQ 40.8425 22.1865, 39.5183 22.1865\\nQ 38.1153 22.1865, 37.368 23.1305\\nQ 36.6337 24.0614, 36.6337 25.8446\\nQ 36.6337 27.6802, 37.3942 28.6242\\nQ 38.1678 29.5682, 39.6625 29.5682\\nQ 40.6852 29.5682, 41.8783 28.952\\nL 42.2455 29.9353\\nQ 41.7603 30.25, 41.0261 30.4336\\nQ 40.2918 30.6171, 39.4789 30.6171\\nQ 37.4598 30.6171, 36.3715 29.3847\\nQ 35.2964 28.1522, 35.2964 25.8446\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 43.5828 20.5475\\nL 44.7891 20.5475\\nL 44.7891 30.4991\\nL 43.5828 30.4991\\nL 43.5828 20.5475\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 63.7046 94.6799\\nQ 63.7046 92.3723, 64.7797 91.166\\nQ 65.868 89.9467, 67.9265 89.9467\\nQ 69.8408 89.9467, 70.8635 91.2971\\nL 69.9981 92.0052\\nQ 69.2508 91.0218, 67.9265 91.0218\\nQ 66.5236 91.0218, 65.7762 91.9658\\nQ 65.042 92.8967, 65.042 94.6799\\nQ 65.042 96.5155, 65.8024 97.4595\\nQ 66.576 98.4036, 68.0707 98.4036\\nQ 69.0934 98.4036, 70.2866 97.7873\\nL 70.6537 98.7707\\nQ 70.1686 99.0854, 69.4343 99.2689\\nQ 68.7001 99.4525, 67.8872 99.4525\\nQ 65.868 99.4525, 64.7797 98.22\\nQ 63.7046 96.9875, 63.7046 94.6799\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 71.9911 89.3829\\nL 73.1973 89.3829\\nL 73.1973 99.3345\\nL 71.9911 99.3345\\nL 71.9911 89.3829\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 92.1128 25.8446\\nQ 92.1128 23.5369, 93.188 22.3307\\nQ 94.2762 21.1113, 96.3347 21.1113\\nQ 98.249 21.1113, 99.2717 22.4618\\nL 98.4064 23.1698\\nQ 97.659 22.1865, 96.3347 22.1865\\nQ 94.9318 22.1865, 94.1845 23.1305\\nQ 93.4502 24.0614, 93.4502 25.8446\\nQ 93.4502 27.6802, 94.2107 28.6242\\nQ 94.9843 29.5682, 96.479 29.5682\\nQ 97.5017 29.5682, 98.6948 28.952\\nL 99.0619 29.9353\\nQ 98.5768 30.25, 97.8426 30.4336\\nQ 97.1083 30.6171, 96.2954 30.6171\\nQ 94.2762 30.6171, 93.188 29.3847\\nQ 92.1128 28.1522, 92.1128 25.8446\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 100.399 20.5475\\nL 101.606 20.5475\\nL 101.606 30.4991\\nL 100.399 30.4991\\nL 100.399 20.5475\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 143.235 55.352\\nQ 143.235 53.0444, 144.31 51.8381\\nQ 145.398 50.6187, 147.456 50.6187\\nQ 149.371 50.6187, 150.393 51.9692\\nL 149.528 52.6772\\nQ 148.781 51.6939, 147.456 51.6939\\nQ 146.054 51.6939, 145.306 52.6379\\nQ 144.572 53.5688, 144.572 55.352\\nQ 144.572 57.1876, 145.332 58.1316\\nQ 146.106 59.0756, 147.601 59.0756\\nQ 148.623 59.0756, 149.817 58.4594\\nL 150.184 59.4428\\nQ 149.699 59.7574, 148.964 59.941\\nQ 148.23 60.1246, 147.417 60.1246\\nQ 145.398 60.1246, 144.31 58.8921\\nQ 143.235 57.6596, 143.235 55.352\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 151.521 50.0549\\nL 152.727 50.0549\\nL 152.727 60.0066\\nL 151.521 60.0066\\nL 151.521 50.0549\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 120.521 94.6799\\nQ 120.521 92.3723, 121.596 91.166\\nQ 122.684 89.9467, 124.743 89.9467\\nQ 126.657 89.9467, 127.68 91.2971\\nL 126.815 92.0052\\nQ 126.067 91.0218, 124.743 91.0218\\nQ 123.34 91.0218, 122.593 91.9658\\nQ 121.858 92.8967, 121.858 94.6799\\nQ 121.858 96.5155, 122.619 97.4595\\nQ 123.392 98.4036, 124.887 98.4036\\nQ 125.91 98.4036, 127.103 97.7873\\nL 127.47 98.7707\\nQ 126.985 99.0854, 126.251 99.2689\\nQ 125.517 99.4525, 124.704 99.4525\\nQ 122.684 99.4525, 121.596 98.22\\nQ 120.521 96.9875, 120.521 94.6799\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 128.808 89.3829\\nL 130.014 89.3829\\nL 130.014 99.3345\\nL 128.808 99.3345\\nL 128.808 89.3829\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 36, "data-ID": 186, "data-Solubility": -4.91, "data-SMILES": "ClC(Cl)=C(Cl)C(Cl)=C(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: hexachlorobutadiene<br><strong>SMILES</strong>: ClC(Cl)=C(Cl)C(Cl)=C(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.91</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.116,61.0829 L 112.116,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.699,55.5201 L 104.699,29.5602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,79.6257 L 112.116,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.116,23.9973 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 47.8839,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.8912,14.6593 L 56.41,27.6393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.8839,23.9973 L 47.8839,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.8839,61.0829 L 80,79.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.41,57.441 L 78.8912,70.4209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,79.6257 L 80,91.4634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,91.4634 L 80,103.301' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 81.5353 109.027\\nQ 82.5441 109.309, 83.0484 109.932\\nQ 83.5676 110.54, 83.5676 111.445\\nQ 83.5676 112.899, 82.6331 113.73\\nQ 81.7134 114.545, 79.9629 114.545\\nL 76.4324 114.545\\nL 76.4324 104.043\\nL 79.5327 104.043\\nQ 81.3277 104.043, 82.2326 104.77\\nQ 83.1374 105.497, 83.1374 106.832\\nQ 83.1374 108.419, 81.5353 109.027\\nM 77.8416 105.23\\nL 77.8416 108.523\\nL 79.5327 108.523\\nQ 80.5711 108.523, 81.1051 108.107\\nQ 81.654 107.677, 81.654 106.832\\nQ 81.654 105.23, 79.5327 105.23\\nL 77.8416 105.23\\nM 79.9629 113.359\\nQ 80.9865 113.359, 81.5353 112.869\\nQ 82.0842 112.38, 82.0842 111.445\\nQ 82.0842 110.585, 81.476 110.155\\nQ 80.8826 109.709, 79.7404 109.709\\nL 77.8416 109.709\\nL 77.8416 113.359\\nL 79.9629 113.359\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 85.9559 106.921\\nL 86.1191 107.974\\nQ 86.9202 106.787, 88.2256 106.787\\nQ 88.6409 106.787, 89.2046 106.935\\nL 88.9821 108.182\\nQ 88.3443 108.033, 87.9882 108.033\\nQ 87.3652 108.033, 86.9498 108.285\\nQ 86.5493 108.523, 86.223 109.101\\nL 86.223 114.545\\nL 84.8285 114.545\\nL 84.8285 106.921\\nL 85.9559 106.921\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 37, "data-ID": 191, "data-Solubility": -2.55, "data-SMILES": "c1ccccc1Br", "mols2grid-tooltip": "<strong>Name</strong>: bromobenzene<br><strong>SMILES</strong>: c1ccccc1Br<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.55</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.993,61.0829 L 129.993,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.575,55.5201 L 122.575,29.5602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.8765,79.6257 L 129.993,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.993,23.9973 L 97.8765,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.8765,5.45455 L 65.7604,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7677,14.6593 L 74.2864,27.6393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.7604,23.9973 L 65.7604,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.7604,61.0829 L 53.6248,68.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.6248,68.0889 L 41.4891,75.095' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 65.7604,61.0829 L 97.8765,79.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 74.2864,57.441 L 96.7677,70.4209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8765,79.6257 L 97.8765,91.4634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8765,91.4634 L 97.8765,103.301' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 30.0074 76.2806\\nQ 30.0074 73.6697, 31.2238 72.305\\nQ 32.4551 70.9254, 34.784 70.9254\\nQ 36.9498 70.9254, 38.1069 72.4533\\nL 37.1278 73.2544\\nQ 36.2823 72.1418, 34.784 72.1418\\nQ 33.1968 72.1418, 32.3512 73.2099\\nQ 31.5205 74.2631, 31.5205 76.2806\\nQ 31.5205 78.3574, 32.3809 79.4254\\nQ 33.2561 80.4935, 34.9472 80.4935\\nQ 36.1043 80.4935, 37.4542 79.7963\\nL 37.8696 80.9088\\nQ 37.3207 81.2649, 36.49 81.4725\\nQ 35.6593 81.6802, 34.7395 81.6802\\nQ 32.4551 81.6802, 31.2238 80.2858\\nQ 30.0074 78.8914, 30.0074 76.2806\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 39.3826 70.2875\\nL 40.7474 70.2875\\nL 40.7474 81.5467\\nL 39.3826 81.5467\\nL 39.3826 70.2875\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 99.4118 109.027\\nQ 100.421 109.309, 100.925 109.932\\nQ 101.444 110.54, 101.444 111.445\\nQ 101.444 112.899, 100.51 113.73\\nQ 99.5898 114.545, 97.8394 114.545\\nL 94.3088 114.545\\nL 94.3088 104.043\\nL 97.4092 104.043\\nQ 99.2041 104.043, 100.109 104.77\\nQ 101.014 105.497, 101.014 106.832\\nQ 101.014 108.419, 99.4118 109.027\\nM 95.7181 105.23\\nL 95.7181 108.523\\nL 97.4092 108.523\\nQ 98.4476 108.523, 98.9816 108.107\\nQ 99.5305 107.677, 99.5305 106.832\\nQ 99.5305 105.23, 97.4092 105.23\\nL 95.7181 105.23\\nM 97.8394 113.359\\nQ 98.863 113.359, 99.4118 112.869\\nQ 99.9607 112.38, 99.9607 111.445\\nQ 99.9607 110.585, 99.3525 110.155\\nQ 98.7591 109.709, 97.6169 109.709\\nL 95.7181 109.709\\nL 95.7181 113.359\\nL 97.8394 113.359\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 103.832 106.921\\nL 103.996 107.974\\nQ 104.797 106.787, 106.102 106.787\\nQ 106.517 106.787, 107.081 106.935\\nL 106.859 108.182\\nQ 106.221 108.033, 105.865 108.033\\nQ 105.242 108.033, 104.826 108.285\\nQ 104.426 108.523, 104.099 109.101\\nL 104.099 114.545\\nL 102.705 114.545\\nL 102.705 106.921\\nL 103.832 106.921\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 38, "data-ID": 196, "data-Solubility": -3.19, "data-SMILES": "c1cccc(Cl)c1Br", "mols2grid-tooltip": "<strong>Name</strong>: 1-bromo-2-chlorobenzene<br><strong>SMILES</strong>: c1cccc(Cl)c1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.19</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.555,61.8284 L 129.555,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.241,56.3432 L 122.241,30.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.8868,80.1126 L 129.555,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.555,25.26 L 97.8868,6.97579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.8868,6.97579 L 66.2186,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7935,16.0522 L 74.6257,28.8512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.2186,25.26 L 54.9945,18.7802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 54.9945,18.7802 L 43.7705,12.3005' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 66.2186,25.26 L 66.2186,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.2186,61.8284 L 97.8868,80.1126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.6257,58.2373 L 96.7935,71.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8868,80.1126 L 97.8868,91.7853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8868,91.7853 L 97.8868,103.458' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 35.4767 10.3693\\nQ 36.4714 10.6473, 36.9687 11.2616\\nQ 37.4807 11.8613, 37.4807 12.7536\\nQ 37.4807 14.1871, 36.5592 15.0062\\nQ 35.6523 15.8107, 33.9262 15.8107\\nL 30.4449 15.8107\\nL 30.4449 5.45455\\nL 33.502 5.45455\\nQ 35.2719 5.45455, 36.1642 6.17129\\nQ 37.0565 6.88803, 37.0565 8.20449\\nQ 37.0565 9.76962, 35.4767 10.3693\\nM 31.8345 6.62473\\nL 31.8345 9.87201\\nL 33.502 9.87201\\nQ 34.526 9.87201, 35.0525 9.46244\\nQ 35.5937 9.03825, 35.5937 8.20449\\nQ 35.5937 6.62473, 33.502 6.62473\\nL 31.8345 6.62473\\nM 33.9262 14.6405\\nQ 34.9355 14.6405, 35.4767 14.1578\\nQ 36.0179 13.6751, 36.0179 12.7536\\nQ 36.0179 11.9052, 35.4182 11.481\\nQ 34.8331 11.0422, 33.7068 11.0422\\nL 31.8345 11.0422\\nL 31.8345 14.6405\\nL 33.9262 14.6405\\n' fill='#7F4C19'/>\\n<path class='atom-4' d='M 39.8357 8.29225\\nL 39.9966 9.3308\\nQ 40.7865 8.16061, 42.0737 8.16061\\nQ 42.4832 8.16061, 43.0391 8.30688\\nL 42.8197 9.53558\\nQ 42.1907 9.38931, 41.8396 9.38931\\nQ 41.2253 9.38931, 40.8157 9.63797\\nQ 40.4208 9.87201, 40.099 10.4425\\nL 40.099 15.8107\\nL 38.724 15.8107\\nL 38.724 8.29225\\nL 39.8357 8.29225\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 99.4008 109.104\\nQ 100.395 109.382, 100.893 109.996\\nQ 101.405 110.596, 101.405 111.488\\nQ 101.405 112.922, 100.483 113.741\\nQ 99.5763 114.545, 97.8503 114.545\\nL 94.369 114.545\\nL 94.369 104.189\\nL 97.4261 104.189\\nQ 99.196 104.189, 100.088 104.906\\nQ 100.981 105.623, 100.981 106.939\\nQ 100.981 108.504, 99.4008 109.104\\nM 95.7586 105.359\\nL 95.7586 108.607\\nL 97.4261 108.607\\nQ 98.45 108.607, 98.9766 108.197\\nQ 99.5178 107.773, 99.5178 106.939\\nQ 99.5178 105.359, 97.4261 105.359\\nL 95.7586 105.359\\nM 97.8503 113.375\\nQ 98.8596 113.375, 99.4008 112.893\\nQ 99.942 112.41, 99.942 111.488\\nQ 99.942 110.64, 99.3423 110.216\\nQ 98.7572 109.777, 97.6309 109.777\\nL 95.7586 109.777\\nL 95.7586 113.375\\nL 97.8503 113.375\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 103.76 107.027\\nL 103.921 108.066\\nQ 104.711 106.895, 105.998 106.895\\nQ 106.407 106.895, 106.963 107.042\\nL 106.744 108.27\\nQ 106.115 108.124, 105.764 108.124\\nQ 105.149 108.124, 104.74 108.373\\nQ 104.345 108.607, 104.023 109.177\\nL 104.023 114.545\\nL 102.648 114.545\\nL 102.648 107.027\\nL 103.76 107.027\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 39, "data-ID": 201, "data-Solubility": -3.54, "data-SMILES": "c1ccc(Br)cc1Br", "mols2grid-tooltip": "<strong>Name</strong>: 1,3-dibromobenzene<br><strong>SMILES</strong>: c1ccc(Br)cc1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.54</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.07,74.0465 L 118.07,45.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.451,69.8326 L 112.451,50.1674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 93.7412,88.093 L 118.07,74.0465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.07,45.9535 L 93.7412,31.907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.7412,31.907 L 93.7412,22.9397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.7412,22.9397 L 93.7412,13.9724' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 93.7412,31.907 L 69.4127,45.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 92.9013,38.8798 L 75.8713,48.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4127,45.9535 L 69.4127,74.0465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.4127,74.0465 L 60.79,79.0245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.79,79.0245 L 52.1673,84.0025' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.4127,74.0465 L 93.7412,88.093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 75.8713,71.2877 L 92.9013,81.1202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.7412,88.093 L 93.7412,97.0603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.7412,97.0603 L 93.7412,106.028' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 94.9043 9.23025\\nQ 95.6684 9.44376, 96.0505 9.91572\\nQ 96.4438 10.3764, 96.4438 11.0619\\nQ 96.4438 12.1632, 95.7359 12.7924\\nQ 95.0391 13.4105, 93.7132 13.4105\\nL 91.0387 13.4105\\nL 91.0387 5.45455\\nL 93.3873 5.45455\\nQ 94.747 5.45455, 95.4324 6.00517\\nQ 96.1179 6.55579, 96.1179 7.56714\\nQ 96.1179 8.76952, 94.9043 9.23025\\nM 92.1062 6.35352\\nL 92.1062 8.84819\\nL 93.3873 8.84819\\nQ 94.1739 8.84819, 94.5784 8.53354\\nQ 94.9942 8.20766, 94.9942 7.56714\\nQ 94.9942 6.35352, 93.3873 6.35352\\nL 92.1062 6.35352\\nM 93.7132 12.5115\\nQ 94.4885 12.5115, 94.9043 12.1407\\nQ 95.3201 11.7699, 95.3201 11.0619\\nQ 95.3201 10.4102, 94.8593 10.0843\\nQ 94.4099 9.74716, 93.5446 9.74716\\nL 92.1062 9.74716\\nL 92.1062 12.5115\\nL 93.7132 12.5115\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 98.253 7.63457\\nL 98.3766 8.43241\\nQ 98.9834 7.53343, 99.9723 7.53343\\nQ 100.287 7.53343, 100.714 7.6458\\nL 100.545 8.58973\\nQ 100.062 8.47736, 99.7925 8.47736\\nQ 99.3205 8.47736, 99.0059 8.66839\\nQ 98.7025 8.84819, 98.4553 9.28644\\nL 98.4553 13.4105\\nL 97.399 13.4105\\nL 97.399 7.63457\\nL 98.253 7.63457\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 45.7958 85.0815\\nQ 46.5599 85.295, 46.942 85.7669\\nQ 47.3353 86.2277, 47.3353 86.9131\\nQ 47.3353 88.0144, 46.6273 88.6437\\nQ 45.9306 89.2617, 44.6046 89.2617\\nL 41.9302 89.2617\\nL 41.9302 81.3058\\nL 44.2788 81.3058\\nQ 45.6385 81.3058, 46.3239 81.8564\\nQ 47.0094 82.407, 47.0094 83.4184\\nQ 47.0094 84.6207, 45.7958 85.0815\\nM 42.9977 82.2047\\nL 42.9977 84.6994\\nL 44.2788 84.6994\\nQ 45.0654 84.6994, 45.4699 84.3848\\nQ 45.8857 84.0589, 45.8857 83.4184\\nQ 45.8857 82.2047, 44.2788 82.2047\\nL 42.9977 82.2047\\nM 44.6046 88.3627\\nQ 45.38 88.3627, 45.7958 87.9919\\nQ 46.2116 87.6211, 46.2116 86.9131\\nQ 46.2116 86.2614, 45.7508 85.9355\\nQ 45.3013 85.5984, 44.4361 85.5984\\nL 42.9977 85.5984\\nL 42.9977 88.3627\\nL 44.6046 88.3627\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 49.1445 83.4858\\nL 49.2681 84.2836\\nQ 49.8749 83.3846, 50.8638 83.3846\\nQ 51.1784 83.3846, 51.6054 83.497\\nL 51.4369 84.4409\\nQ 50.9537 84.3286, 50.684 84.3286\\nQ 50.212 84.3286, 49.8974 84.5196\\nQ 49.594 84.6994, 49.3467 85.1377\\nL 49.3467 89.2617\\nL 48.2904 89.2617\\nL 48.2904 83.4858\\nL 49.1445 83.4858\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 94.9043 110.365\\nQ 95.6684 110.579, 96.0505 111.051\\nQ 96.4438 111.511, 96.4438 112.197\\nQ 96.4438 113.298, 95.7359 113.927\\nQ 95.0391 114.545, 93.7132 114.545\\nL 91.0387 114.545\\nL 91.0387 106.59\\nL 93.3873 106.59\\nQ 94.747 106.59, 95.4324 107.14\\nQ 96.1179 107.691, 96.1179 108.702\\nQ 96.1179 109.904, 94.9043 110.365\\nM 92.1062 107.488\\nL 92.1062 109.983\\nL 93.3873 109.983\\nQ 94.1739 109.983, 94.5784 109.669\\nQ 94.9942 109.343, 94.9942 108.702\\nQ 94.9942 107.488, 93.3873 107.488\\nL 92.1062 107.488\\nM 93.7132 113.646\\nQ 94.4885 113.646, 94.9043 113.276\\nQ 95.3201 112.905, 95.3201 112.197\\nQ 95.3201 111.545, 94.8593 111.219\\nQ 94.4099 110.882, 93.5446 110.882\\nL 92.1062 110.882\\nL 92.1062 113.646\\nL 93.7132 113.646\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 98.253 108.77\\nL 98.3766 109.567\\nQ 98.9834 108.668, 99.9723 108.668\\nQ 100.287 108.668, 100.714 108.781\\nL 100.545 109.725\\nQ 100.062 109.612, 99.7925 109.612\\nQ 99.3205 109.612, 99.0059 109.803\\nQ 98.7025 109.983, 98.4553 110.421\\nL 98.4553 114.545\\nL 97.399 114.545\\nL 97.399 108.77\\nL 98.253 108.77\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 40, "data-ID": 206, "data-Solubility": -4.5, "data-SMILES": "c1cc(Br)cc(Br)c1Br", "mols2grid-tooltip": "<strong>Name</strong>: 1,2,4-tribromobenzene<br><strong>SMILES</strong>: c1cc(Br)cc(Br)c1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.5</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105.447,73.91 L 105.447,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.8626,69.7219 L 99.8626,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-0' d='M 81.2676,87.8702 L 105.447,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.447,45.9895 L 113.316,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.316,41.4467 L 121.185,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.447,45.9895 L 81.2676,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2676,32.0293 L 81.2676,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2676,23.3097 L 81.2676,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 81.2676,32.0293 L 57.0885,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80.4328,38.9592 L 63.5074,48.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 57.0885,45.9895 L 47.952,40.7149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.952,40.7149 L 38.8155,35.4403' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 57.0885,45.9895 L 57.0885,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.0885,73.91 L 47.952,79.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 47.952,79.1846 L 38.8155,84.4592' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 57.0885,73.91 L 81.2676,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 63.5074,71.1681 L 80.4328,80.9403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.2676,87.8702 L 81.2676,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.2676,96.8802 L 81.2676,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 121.743 35.0949\\nQ 121.743 33.1293, 122.659 32.1019\\nQ 123.586 31.0632, 125.339 31.0632\\nQ 126.97 31.0632, 127.841 32.2135\\nL 127.104 32.8166\\nQ 126.467 31.979, 125.339 31.979\\nQ 124.144 31.979, 123.508 32.7831\\nQ 122.882 33.5761, 122.882 35.0949\\nQ 122.882 36.6585, 123.53 37.4626\\nQ 124.189 38.2667, 125.462 38.2667\\nQ 126.333 38.2667, 127.349 37.7418\\nL 127.662 38.5794\\nQ 127.249 38.8474, 126.623 39.0038\\nQ 125.998 39.1602, 125.306 39.1602\\nQ 123.586 39.1602, 122.659 38.1103\\nQ 121.743 37.0605, 121.743 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 128.801 30.583\\nL 129.829 30.583\\nL 129.829 39.0596\\nL 128.801 39.0596\\nL 128.801 30.583\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 78.2187 9.9665\\nQ 78.2187 8.00089, 79.1345 6.97342\\nQ 80.0614 5.93478, 81.8148 5.93478\\nQ 83.4454 5.93478, 84.3165 7.0851\\nL 83.5794 7.68818\\nQ 82.9428 6.85057, 81.8148 6.85057\\nQ 80.6198 6.85057, 79.9832 7.65468\\nQ 79.3578 8.44762, 79.3578 9.9665\\nQ 79.3578 11.53, 80.0056 12.3342\\nQ 80.6645 13.1383, 81.9377 13.1383\\nQ 82.8088 13.1383, 83.8251 12.6134\\nL 84.1378 13.451\\nQ 83.7246 13.719, 83.0992 13.8754\\nQ 82.4738 14.0317, 81.7813 14.0317\\nQ 80.0614 14.0317, 79.1345 12.9819\\nQ 78.2187 11.9321, 78.2187 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 85.277 5.45455\\nL 86.3044 5.45455\\nL 86.3044 13.9312\\nL 85.277 13.9312\\nL 85.277 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 30.1712 35.0949\\nQ 30.1712 33.1293, 31.087 32.1019\\nQ 32.014 31.0632, 33.7674 31.0632\\nQ 35.398 31.0632, 36.2691 32.2135\\nL 35.532 32.8166\\nQ 34.8954 31.979, 33.7674 31.979\\nQ 32.5724 31.979, 31.9358 32.7831\\nQ 31.3104 33.5761, 31.3104 35.0949\\nQ 31.3104 36.6585, 31.9582 37.4626\\nQ 32.6171 38.2667, 33.8903 38.2667\\nQ 34.7614 38.2667, 35.7777 37.7418\\nL 36.0904 38.5794\\nQ 35.6772 38.8474, 35.0517 39.0038\\nQ 34.4263 39.1602, 33.7339 39.1602\\nQ 32.014 39.1602, 31.087 38.1103\\nQ 30.1712 37.0605, 30.1712 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 37.2295 30.583\\nL 38.257 30.583\\nL 38.257 39.0596\\nL 37.2295 39.0596\\nL 37.2295 30.583\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 30.1712 85.3518\\nQ 30.1712 83.3862, 31.087 82.3587\\nQ 32.014 81.3201, 33.7674 81.3201\\nQ 35.398 81.3201, 36.2691 82.4704\\nL 35.532 83.0735\\nQ 34.8954 82.2359, 33.7674 82.2359\\nQ 32.5724 82.2359, 31.9358 83.04\\nQ 31.3104 83.8329, 31.3104 85.3518\\nQ 31.3104 86.9153, 31.9582 87.7195\\nQ 32.6171 88.5236, 33.8903 88.5236\\nQ 34.7614 88.5236, 35.7777 87.9987\\nL 36.0904 88.8363\\nQ 35.6772 89.1043, 35.0517 89.2607\\nQ 34.4263 89.417, 33.7339 89.417\\nQ 32.014 89.417, 31.087 88.3672\\nQ 30.1712 87.3174, 30.1712 85.3518\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 37.2295 80.8398\\nL 38.257 80.8398\\nL 38.257 89.3165\\nL 37.2295 89.3165\\nL 37.2295 80.8398\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 78.2187 110.48\\nQ 78.2187 108.515, 79.1345 107.487\\nQ 80.0614 106.449, 81.8148 106.449\\nQ 83.4454 106.449, 84.3165 107.599\\nL 83.5794 108.202\\nQ 82.9428 107.364, 81.8148 107.364\\nQ 80.6198 107.364, 79.9832 108.168\\nQ 79.3578 108.961, 79.3578 110.48\\nQ 79.3578 112.044, 80.0056 112.848\\nQ 80.6645 113.652, 81.9377 113.652\\nQ 82.8088 113.652, 83.8251 113.127\\nL 84.1378 113.965\\nQ 83.7246 114.233, 83.0992 114.389\\nQ 82.4738 114.545, 81.7813 114.545\\nQ 80.0614 114.545, 79.1345 113.496\\nQ 78.2187 112.446, 78.2187 110.48\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 85.277 105.968\\nL 86.3044 105.968\\nL 86.3044 114.445\\nL 85.277 114.445\\nL 85.277 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 41, "data-ID": 211, "data-Solubility": -5.65, "data-SMILES": "c1c(Cl)c(Cl)c(Cl)c(Cl)c1Cl", "mols2grid-tooltip": "<strong>Name</strong>: pentachlorobenzene<br><strong>SMILES</strong>: c1c(Cl)c(Cl)c(Cl)c(Cl)c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.65</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.876,61.8284 L 125.876,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.563,56.3432 L 118.563,30.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 94.208,80.1126 L 125.876,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.876,25.26 L 94.208,6.97579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.208,6.97579 L 62.5398,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.1147,16.0522 L 70.947,28.8512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.5398,25.26 L 51.7765,19.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.7765,19.0462 L 41.0132,12.8325' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 62.5398,25.26 L 62.5398,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.5398,61.8284 L 94.208,80.1126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.947,58.2373 L 93.1147,71.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 94.208,80.1126 L 94.208,91.7853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 94.208,91.7853 L 94.208,103.458' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 34.1237 5.45455\\nL 40.2818 5.45455\\nL 40.2818 6.63936\\nL 35.5133 6.63936\\nL 35.5133 9.78425\\nL 39.7552 9.78425\\nL 39.7552 10.9837\\nL 35.5133 10.9837\\nL 35.5133 15.8107\\nL 34.1237 15.8107\\nL 34.1237 5.45455\\n' fill='#33CCCC'/>\\n<path class='atom-7' d='M 91.129 104.189\\nL 97.2871 104.189\\nL 97.2871 105.374\\nL 92.5186 105.374\\nL 92.5186 108.519\\nL 96.7605 108.519\\nL 96.7605 109.718\\nL 92.5186 109.718\\nL 92.5186 114.545\\nL 91.129 114.545\\nL 91.129 104.189\\n' fill='#33CCCC'/>\\n</svg>\\n", "mols2grid-id": 42, "data-ID": 216, "data-Solubility": -2.0, "data-SMILES": "c1ccc(F)cc1F", "mols2grid-tooltip": "<strong>Name</strong>: m-difluorobenzene<br><strong>SMILES</strong>: c1ccc(F)cc1F<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.0</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 95.8398,32.9288 L 95.8398,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1766,30.1813 L 92.1766,17.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 79.978,42.0868 L 95.8398,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8398,14.6126 L 79.978,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.978,5.45455 L 64.1162,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.4304,10.0007 L 68.3272,16.4113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1162,14.6126 L 64.1162,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.1162,32.9288 L 79.978,42.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.3272,31.13 L 79.4304,37.5407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.978,42.0868 L 79.978,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.978,60.4127 L 64.1309,69.5964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.4377,64.9597 L 68.3447,71.3883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-6' d='M 95.8544,69.5464 L 79.978,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 64.1309,69.5964 L 64.159,87.9126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 64.159,87.9126 L 80.0366,97.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 68.3672,86.1073 L 79.4816,92.5008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.0366,97.0462 L 80.046,102.957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.046,102.957 L 80.0553,108.867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 80.0366,97.0462 L 95.8838,87.8625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 95.8838,87.8625 L 95.8544,69.5464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 92.2161,85.1209 L 92.1956,72.2997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 78.0597 111.879\\nQ 78.0597 110.589, 78.6605 109.915\\nQ 79.2686 109.234, 80.4188 109.234\\nQ 81.4885 109.234, 82.06 109.988\\nL 81.5764 110.384\\nQ 81.1588 109.835, 80.4188 109.835\\nQ 79.6349 109.835, 79.2173 110.362\\nQ 78.807 110.882, 78.807 111.879\\nQ 78.807 112.904, 79.2319 113.432\\nQ 79.6642 113.959, 80.4994 113.959\\nQ 81.0709 113.959, 81.7376 113.615\\nL 81.9427 114.164\\nQ 81.6717 114.34, 81.2614 114.443\\nQ 80.8511 114.545, 80.3968 114.545\\nQ 79.2686 114.545, 78.6605 113.857\\nQ 78.0597 113.168, 78.0597 111.879\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 82.69 108.919\\nL 83.3641 108.919\\nL 83.3641 114.48\\nL 82.69 114.48\\nL 82.69 108.919\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 43, "data-ID": 221, "data-Solubility": -5.2, "data-SMILES": "c1ccccc1c2ccc(Cl)cc2", "mols2grid-tooltip": "<strong>Name</strong>: 4-chlorobiphenyl<br><strong>SMILES</strong>: c1ccccc1c2ccc(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.2</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.682,50.3892 L 104.682,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.016,47.6401 L 101.016,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 88.8105,59.5528 L 104.682,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.682,32.062 L 88.8105,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8105,22.8984 L 88.8105,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8105,17.1748 L 88.8105,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.8105,22.8984 L 72.9391,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.2626,27.4473 L 77.1526,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.9391,32.062 L 72.9391,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 72.9391,50.3892 L 88.8105,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.1526,48.5894 L 88.2626,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 88.8105,59.5528 L 88.8105,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.8105,77.8898 L 72.9538,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.2699,82.4396 L 77.1702,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-7' d='M 104.697,87.029 L 88.8105,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.9538,87.0791 L 66.951,83.6264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 66.951,83.6264 L 60.9482,80.1737' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 72.9538,87.0791 L 72.9819,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 72.9819,105.406 L 88.8691,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 77.1927,103.6 L 88.3138,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 88.8691,114.545 L 104.726,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 104.726,105.356 L 104.697,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 101.056,102.613 L 101.035,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 86.8092 8.41622\\nQ 86.8092 7.12599, 87.4103 6.45155\\nQ 88.0188 5.76977, 89.1697 5.76977\\nQ 90.24 5.76977, 90.8118 6.52485\\nL 90.328 6.92072\\nQ 89.9101 6.37091, 89.1697 6.37091\\nQ 88.3853 6.37091, 87.9675 6.89873\\nQ 87.5569 7.41922, 87.5569 8.41622\\nQ 87.5569 9.44255, 87.9821 9.97037\\nQ 88.4146 10.4982, 89.2504 10.4982\\nQ 89.8222 10.4982, 90.4893 10.1536\\nL 90.6945 10.7035\\nQ 90.4233 10.8794, 90.0128 10.982\\nQ 89.6022 11.0847, 89.1477 11.0847\\nQ 88.0188 11.0847, 87.4103 10.3956\\nQ 86.8092 9.70646, 86.8092 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 91.4423 5.45455\\nL 92.1167 5.45455\\nL 92.1167 11.0187\\nL 91.4423 11.0187\\nL 91.4423 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 55.2741 79.9486\\nQ 55.2741 78.6583, 55.8753 77.9839\\nQ 56.4837 77.3021, 57.6347 77.3021\\nQ 58.705 77.3021, 59.2768 78.0572\\nL 58.793 78.4531\\nQ 58.3751 77.9032, 57.6347 77.9032\\nQ 56.8503 77.9032, 56.4324 78.4311\\nQ 56.0219 78.9516, 56.0219 79.9486\\nQ 56.0219 80.9749, 56.4471 81.5027\\nQ 56.8796 82.0305, 57.7153 82.0305\\nQ 58.2871 82.0305, 58.9542 81.686\\nL 59.1595 82.2358\\nQ 58.8883 82.4117, 58.4777 82.5144\\nQ 58.0672 82.617, 57.6127 82.617\\nQ 56.4837 82.617, 55.8753 81.9279\\nQ 55.2741 81.2388, 55.2741 79.9486\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 59.9073 76.9869\\nL 60.5817 76.9869\\nL 60.5817 82.551\\nL 59.9073 82.551\\nL 59.9073 76.9869\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 44, "data-ID": 226, "data-Solubility": -5.28, "data-SMILES": "c1cc(Cl)ccc1c2c(Cl)cccc2", "mols2grid-tooltip": "<strong>Name</strong>: 2,4\\uffb4-PCB<br><strong>SMILES</strong>: c1cc(Cl)ccc1c2c(Cl)cccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.28</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.6423,37.8356 L 99.6423,16.2482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.3249,34.5975 L 95.3249,19.4863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 80.9477,48.6292 L 99.6423,37.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6423,16.2482 L 80.9477,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.9477,5.45455 L 62.253,16.2482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.3023,10.8126 L 67.216,18.3682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.253,16.2482 L 62.253,37.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.253,37.8356 L 55.189,41.9137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.189,41.9137 L 48.1249,45.9919' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 62.253,37.8356 L 80.9477,48.6292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 67.216,35.7156 L 80.3023,43.2712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.9477,48.6292 L 80.9477,70.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.9477,70.2281 L 62.2703,81.052' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.3109,75.5872 L 67.2367,83.1639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-7' d='M 99.6596,80.993 L 80.9477,70.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 62.2703,81.052 L 55.1997,76.9851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 55.1997,76.9851 L 48.1292,72.9183' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 62.2703,81.052 L 62.3034,102.639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 62.3034,102.639 L 81.0168,113.404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.2633,100.512 L 80.3626,108.047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 81.0168,113.404 L 99.6941,102.58' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 99.6941,102.58 L 105.785,106.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 105.785,106.083 L 111.875,109.587' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 99.6941,102.58 L 99.6596,80.993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 95.3715,99.3491 L 95.3473,84.238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 41.4414 46.682\\nQ 41.4414 45.1623, 42.1495 44.3679\\nQ 42.8662 43.5648, 44.2219 43.5648\\nQ 45.4826 43.5648, 46.1561 44.4542\\nL 45.5862 44.9205\\nQ 45.094 44.2729, 44.2219 44.2729\\nQ 43.2979 44.2729, 42.8057 44.8946\\nQ 42.3222 45.5077, 42.3222 46.682\\nQ 42.3222 47.8909, 42.823 48.5127\\nQ 43.3325 49.1344, 44.3168 49.1344\\nQ 44.9904 49.1344, 45.7761 48.7285\\nL 46.0179 49.3761\\nQ 45.6984 49.5834, 45.2149 49.7043\\nQ 44.7313 49.8252, 44.196 49.8252\\nQ 42.8662 49.8252, 42.1495 49.0135\\nQ 41.4414 48.2018, 41.4414 46.682\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 46.8987 43.1935\\nL 47.6931 43.1935\\nL 47.6931 49.7475\\nL 46.8987 49.7475\\nL 46.8987 43.1935\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 41.4457 72.6531\\nQ 41.4457 71.1333, 42.1538 70.3389\\nQ 42.8705 69.5358, 44.2262 69.5358\\nQ 45.4869 69.5358, 46.1604 70.4252\\nL 45.5905 70.8915\\nQ 45.0983 70.2439, 44.2262 70.2439\\nQ 43.3022 70.2439, 42.81 70.8656\\nQ 42.3265 71.4787, 42.3265 72.6531\\nQ 42.3265 73.862, 42.8273 74.4837\\nQ 43.3368 75.1054, 44.3212 75.1054\\nQ 44.9947 75.1054, 45.7805 74.6995\\nL 46.0222 75.3472\\nQ 45.7028 75.5544, 45.2192 75.6753\\nQ 44.7356 75.7962, 44.2003 75.7962\\nQ 42.8705 75.7962, 42.1538 74.9845\\nQ 41.4457 74.1728, 41.4457 72.6531\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 46.903 69.1645\\nL 47.6974 69.1645\\nL 47.6974 75.7185\\nL 46.903 75.7185\\nL 46.903 69.1645\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 112.307 111.402\\nQ 112.307 109.883, 113.015 109.088\\nQ 113.732 108.285, 115.087 108.285\\nQ 116.348 108.285, 117.022 109.175\\nL 116.452 109.641\\nQ 115.959 108.993, 115.087 108.993\\nQ 114.163 108.993, 113.671 109.615\\nQ 113.188 110.228, 113.188 111.402\\nQ 113.188 112.611, 113.688 113.233\\nQ 114.198 113.855, 115.182 113.855\\nQ 115.856 113.855, 116.642 113.449\\nL 116.883 114.096\\nQ 116.564 114.304, 116.08 114.425\\nQ 115.597 114.545, 115.061 114.545\\nQ 113.732 114.545, 113.015 113.734\\nQ 112.307 112.922, 112.307 111.402\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 117.764 107.914\\nL 118.559 107.914\\nL 118.559 114.468\\nL 117.764 114.468\\nL 117.764 107.914\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 45, "data-ID": 231, "data-Solubility": -6.02, "data-SMILES": "c1cccc(Cl)c1c2c(Cl)ccc(Cl)c2", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,5-PCB<br><strong>SMILES</strong>: c1cccc(Cl)c1c2c(Cl)ccc(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.02</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.684,50.3892 L 104.684,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.018,47.6401 L 101.018,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 88.8123,59.5528 L 104.684,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.684,32.062 L 88.8123,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8123,22.8984 L 88.8123,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8123,17.1748 L 88.8123,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.8123,22.8984 L 72.941,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.2644,27.4473 L 77.1544,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.941,32.062 L 66.9437,28.5997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.9437,28.5997 L 60.9464,25.1374' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 72.941,32.062 L 72.941,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 72.941,50.3892 L 88.8123,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.1544,48.5894 L 88.2644,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.8123,59.5528 L 88.8123,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 88.8123,77.8898 L 72.9556,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 88.2717,82.4396 L 77.172,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 104.698,87.029 L 88.8123,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.9556,87.0791 L 66.9529,83.6264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.9529,83.6264 L 60.9501,80.1737' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 72.9556,87.0791 L 72.9837,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 72.9837,105.406 L 88.871,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 77.1945,103.6 L 88.3156,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 88.871,114.545 L 104.728,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 104.728,105.356 L 104.698,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.058,102.613 L 101.037,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 86.811 8.41622\\nQ 86.811 7.12599, 87.4121 6.45155\\nQ 88.0206 5.76977, 89.1715 5.76977\\nQ 90.2419 5.76977, 90.8137 6.52485\\nL 90.3298 6.92072\\nQ 89.912 6.37091, 89.1715 6.37091\\nQ 88.3871 6.37091, 87.9693 6.89873\\nQ 87.5588 7.41922, 87.5588 8.41622\\nQ 87.5588 9.44255, 87.9839 9.97037\\nQ 88.4165 10.4982, 89.2522 10.4982\\nQ 89.824 10.4982, 90.4911 10.1536\\nL 90.6964 10.7035\\nQ 90.4251 10.8794, 90.0146 10.982\\nQ 89.6041 11.0847, 89.1496 11.0847\\nQ 88.0206 11.0847, 87.4121 10.3956\\nQ 86.811 9.70646, 86.811 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 91.4441 5.45455\\nL 92.1186 5.45455\\nL 92.1186 11.0187\\nL 91.4441 11.0187\\nL 91.4441 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 55.2723 24.9107\\nQ 55.2723 23.6205, 55.8734 22.946\\nQ 56.4819 22.2643, 57.6329 22.2643\\nQ 58.7032 22.2643, 59.275 23.0193\\nL 58.7911 23.4152\\nQ 58.3733 22.8654, 57.6329 22.8654\\nQ 56.8485 22.8654, 56.4306 23.3932\\nQ 56.0201 23.9137, 56.0201 24.9107\\nQ 56.0201 25.937, 56.4453 26.4649\\nQ 56.8778 26.9927, 57.7135 26.9927\\nQ 58.2853 26.9927, 58.9524 26.6481\\nL 59.1577 27.198\\nQ 58.8864 27.3739, 58.4759 27.4765\\nQ 58.0654 27.5792, 57.6109 27.5792\\nQ 56.4819 27.5792, 55.8734 26.8901\\nQ 55.2723 26.201, 55.2723 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 59.9054 21.949\\nL 60.5799 21.949\\nL 60.5799 27.5132\\nL 59.9054 27.5132\\nL 59.9054 21.949\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 55.276 79.9486\\nQ 55.276 78.6583, 55.8771 77.9839\\nQ 56.4856 77.3021, 57.6365 77.3021\\nQ 58.7068 77.3021, 59.2786 78.0572\\nL 58.7948 78.4531\\nQ 58.3769 77.9032, 57.6365 77.9032\\nQ 56.8521 77.9032, 56.4343 78.4311\\nQ 56.0237 78.9516, 56.0237 79.9486\\nQ 56.0237 80.9749, 56.4489 81.5027\\nQ 56.8814 82.0305, 57.7172 82.0305\\nQ 58.289 82.0305, 58.9561 81.686\\nL 59.1613 82.2358\\nQ 58.8901 82.4117, 58.4796 82.5144\\nQ 58.069 82.617, 57.6145 82.617\\nQ 56.4856 82.617, 55.8771 81.9279\\nQ 55.276 81.2388, 55.276 79.9486\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 59.9091 76.9869\\nL 60.5835 76.9869\\nL 60.5835 82.551\\nL 59.9091 82.551\\nL 59.9091 76.9869\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 46, "data-ID": 236, "data-Solubility": -6.29, "data-SMILES": "c1cc(Cl)c(Cl)cc1c2c(Cl)cccc2", "mols2grid-tooltip": "<strong>Name</strong>: 2\\uffb4,3,4-PCB<br><strong>SMILES</strong>: c1cc(Cl)c(Cl)cc1c2c(Cl)cccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.29</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.664,32.9288 L 96.664,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.0008,30.1813 L 93.0008,17.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80.8022,42.0868 L 96.664,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.664,14.6126 L 80.8022,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.8022,5.45455 L 64.9405,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.2546,10.0007 L 69.1514,16.4113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.9405,14.6126 L 64.9405,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.9405,32.9288 L 80.8022,42.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.1514,31.13 L 80.2546,37.5407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.8022,42.0868 L 80.8022,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.8022,60.4127 L 64.9551,69.5964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.2619,64.9597 L 69.169,71.3883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-6' d='M 96.6787,69.5464 L 80.8022,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 64.9551,69.5964 L 58.956,66.1459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 58.956,66.1459 L 52.9568,62.6953' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 64.9551,69.5964 L 64.9832,87.9126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 64.9832,87.9126 L 58.9963,91.3824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 58.9963,91.3824 L 53.0093,94.8522' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 64.9832,87.9126 L 80.8609,97.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 69.1915,86.1073 L 80.3058,92.5008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8609,97.0462 L 80.8702,102.957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8702,102.957 L 80.8796,108.867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 80.8609,97.0462 L 96.708,87.8625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 96.708,87.8625 L 101.876,90.8348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.876,90.8348 L 107.043,93.8071' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 96.708,87.8625 L 96.6787,69.5464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 93.0404,85.1209 L 93.0198,72.2997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 47.2862 62.4702\\nQ 47.2862 61.1808, 47.8869 60.5067\\nQ 48.495 59.8254, 49.6453 59.8254\\nQ 50.7149 59.8254, 51.2864 60.58\\nL 50.8029 60.9756\\nQ 50.3852 60.4262, 49.6453 60.4262\\nQ 48.8613 60.4262, 48.4437 60.9537\\nQ 48.0335 61.4738, 48.0335 62.4702\\nQ 48.0335 63.4959, 48.4584 64.0234\\nQ 48.8907 64.5509, 49.7259 64.5509\\nQ 50.2973 64.5509, 50.964 64.2066\\nL 51.1692 64.7561\\nQ 50.8981 64.9319, 50.4878 65.0345\\nQ 50.0775 65.1371, 49.6233 65.1371\\nQ 48.495 65.1371, 47.8869 64.4484\\nQ 47.2862 63.7597, 47.2862 62.4702\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 51.9165 59.5103\\nL 52.5905 59.5103\\nL 52.5905 65.0711\\nL 51.9165 65.0711\\nL 51.9165 59.5103\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.3387 95.4393\\nQ 47.3387 94.1498, 47.9394 93.4758\\nQ 48.5475 92.7944, 49.6978 92.7944\\nQ 50.7674 92.7944, 51.3389 93.5491\\nL 50.8554 93.9447\\nQ 50.4378 93.3952, 49.6978 93.3952\\nQ 48.9139 93.3952, 48.4962 93.9227\\nQ 48.086 94.4429, 48.086 95.4393\\nQ 48.086 96.465, 48.5109 96.9925\\nQ 48.9432 97.52, 49.7784 97.52\\nQ 50.3498 97.52, 51.0165 97.1757\\nL 51.2217 97.7251\\nQ 50.9506 97.901, 50.5403 98.0035\\nQ 50.13 98.1061, 49.6758 98.1061\\nQ 48.5475 98.1061, 47.9394 97.4174\\nQ 47.3387 96.7287, 47.3387 95.4393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 51.969 92.4794\\nL 52.643 92.4794\\nL 52.643 98.0402\\nL 51.969 98.0402\\nL 51.969 92.4794\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 78.8839 111.879\\nQ 78.8839 110.589, 79.4847 109.915\\nQ 80.0928 109.234, 81.2431 109.234\\nQ 82.3127 109.234, 82.8842 109.988\\nL 82.4006 110.384\\nQ 81.983 109.835, 81.2431 109.835\\nQ 80.4591 109.835, 80.0415 110.362\\nQ 79.6312 110.882, 79.6312 111.879\\nQ 79.6312 112.904, 80.0562 113.432\\nQ 80.4884 113.959, 81.3236 113.959\\nQ 81.8951 113.959, 82.5618 113.615\\nL 82.767 114.164\\nQ 82.4959 114.34, 82.0856 114.443\\nQ 81.6753 114.545, 81.2211 114.545\\nQ 80.0928 114.545, 79.4847 113.857\\nQ 78.8839 113.168, 78.8839 111.879\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 83.5143 108.919\\nL 84.1883 108.919\\nL 84.1883 114.48\\nL 83.5143 114.48\\nL 83.5143 108.919\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 107.409 95.3477\\nQ 107.409 94.0582, 108.01 93.3842\\nQ 108.618 92.7029, 109.769 92.7029\\nQ 110.838 92.7029, 111.41 93.4575\\nL 110.926 93.8531\\nQ 110.509 93.3036, 109.769 93.3036\\nQ 108.985 93.3036, 108.567 93.8311\\nQ 108.157 94.3513, 108.157 95.3477\\nQ 108.157 96.3734, 108.582 96.9009\\nQ 109.014 97.4284, 109.849 97.4284\\nQ 110.421 97.4284, 111.087 97.0841\\nL 111.293 97.6336\\nQ 111.021 97.8094, 110.611 97.912\\nQ 110.201 98.0145, 109.747 98.0145\\nQ 108.618 98.0145, 108.01 97.3258\\nQ 107.409 96.6372, 107.409 95.3477\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 112.04 92.3878\\nL 112.714 92.3878\\nL 112.714 97.9486\\nL 112.04 97.9486\\nL 112.04 92.3878\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 47, "data-ID": 241, "data-Solubility": -7.16, "data-SMILES": "c1ccccc1c2c(Cl)c(Cl)c(Cl)c(Cl)c2", "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5-PCB<br><strong>SMILES</strong>: c1ccccc1c2c(Cl)c(Cl)c(Cl)c(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.16</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.6774,38.9609 L 99.6774,17.369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.359,35.7221 L 95.359,20.6077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.9788,49.7568 L 99.6774,38.9609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6774,17.369 L 105.763,13.8558' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.763,13.8558 L 111.848,10.3427' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 99.6774,17.369 L 80.9788,6.57301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.9788,6.57301 L 62.2802,17.369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.3333,11.9322 L 67.2443,19.4894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.2802,17.369 L 62.2802,38.9609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.2802,38.9609 L 55.2147,43.0399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.2147,43.0399 L 48.1491,47.1189' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 62.2802,38.9609 L 80.9788,49.7568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 67.2443,36.8404 L 80.3333,44.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.9788,49.7568 L 80.9788,71.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.9788,71.3602 L 62.2975,82.1864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.3419,76.7205 L 67.265,84.2988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 99.6947,82.1274 L 80.9788,71.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 62.2975,82.1864 L 55.2255,78.1187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 55.2255,78.1187 L 48.1534,74.051' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 62.2975,82.1864 L 62.3306,103.778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 62.3306,103.778 L 81.0479,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 67.2915,101.65 L 80.3936,109.187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 81.0479,114.545 L 99.7292,103.719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 99.7292,103.719 L 99.6947,82.1274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 95.4057,100.487 L 95.3815,85.3731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 99.6947,82.1274 L 105.773,78.6057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 105.773,78.6057 L 111.851,75.0839' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 112.28 8.9438\\nQ 112.28 7.42373, 112.988 6.62914\\nQ 113.705 5.82593, 115.061 5.82593\\nQ 116.322 5.82593, 116.996 6.71551\\nL 116.426 7.1819\\nQ 115.933 6.53414, 115.061 6.53414\\nQ 114.137 6.53414, 113.644 7.15599\\nQ 113.161 7.7692, 113.161 8.9438\\nQ 113.161 10.1529, 113.662 10.7748\\nQ 114.171 11.3966, 115.156 11.3966\\nQ 115.83 11.3966, 116.616 10.9907\\nL 116.857 11.6385\\nQ 116.538 11.8457, 116.054 11.9667\\nQ 115.57 12.0876, 115.035 12.0876\\nQ 113.705 12.0876, 112.988 11.2757\\nQ 112.28 10.4639, 112.28 8.9438\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 117.738 5.45455\\nL 118.533 5.45455\\nL 118.533 12.0098\\nL 117.738 12.0098\\nL 117.738 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 41.4642 47.8092\\nQ 41.4642 46.2891, 42.1724 45.4946\\nQ 42.8893 44.6913, 44.2453 44.6913\\nQ 45.5062 44.6913, 46.1799 45.5809\\nL 45.6099 46.0473\\nQ 45.1176 45.3996, 44.2453 45.3996\\nQ 43.3211 45.3996, 42.8288 46.0214\\nQ 42.3452 46.6346, 42.3452 47.8092\\nQ 42.3452 49.0184, 42.8461 49.6402\\nQ 43.3557 50.2621, 44.3403 50.2621\\nQ 45.0139 50.2621, 45.7999 49.8561\\nL 46.0417 50.5039\\nQ 45.7221 50.7112, 45.2385 50.8321\\nQ 44.7548 50.953, 44.2193 50.953\\nQ 42.8893 50.953, 42.1724 50.1411\\nQ 41.4642 49.3293, 41.4642 47.8092\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 46.9227 44.32\\nL 47.7172 44.32\\nL 47.7172 50.8753\\nL 46.9227 50.8753\\nL 46.9227 44.32\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 41.4685 73.7857\\nQ 41.4685 72.2656, 42.1768 71.4711\\nQ 42.8936 70.6678, 44.2496 70.6678\\nQ 45.5105 70.6678, 46.1842 71.5574\\nL 45.6142 72.0238\\nQ 45.1219 71.3761, 44.2496 71.3761\\nQ 43.3254 71.3761, 42.8331 71.9979\\nQ 42.3495 72.6111, 42.3495 73.7857\\nQ 42.3495 74.9949, 42.8504 75.6167\\nQ 43.36 76.2385, 44.3446 76.2385\\nQ 45.0182 76.2385, 45.8042 75.8326\\nL 46.046 76.4804\\nQ 45.7265 76.6877, 45.2428 76.8086\\nQ 44.7591 76.9295, 44.2237 76.9295\\nQ 42.8936 76.9295, 42.1768 76.1176\\nQ 41.4685 75.3058, 41.4685 73.7857\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 46.927 70.2965\\nL 47.7216 70.2965\\nL 47.7216 76.8518\\nL 46.927 76.8518\\nL 46.927 70.2965\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 112.283 73.6792\\nQ 112.283 72.1591, 112.991 71.3645\\nQ 113.708 70.5613, 115.064 70.5613\\nQ 116.325 70.5613, 116.998 71.4509\\nL 116.428 71.9173\\nQ 115.936 71.2695, 115.064 71.2695\\nQ 114.14 71.2695, 113.647 71.8914\\nQ 113.164 72.5046, 113.164 73.6792\\nQ 113.164 74.8883, 113.665 75.5102\\nQ 114.174 76.132, 115.159 76.132\\nQ 115.832 76.132, 116.618 75.7261\\nL 116.86 76.3739\\nQ 116.541 76.5811, 116.057 76.7021\\nQ 115.573 76.823, 115.038 76.823\\nQ 113.708 76.823, 112.991 76.0111\\nQ 112.283 75.1993, 112.283 73.6792\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 117.741 70.1899\\nL 118.536 70.1899\\nL 118.536 76.7452\\nL 117.741 76.7452\\nL 117.741 70.1899\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 48, "data-ID": 246, "data-Solubility": -6.8, "data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)cccc2Cl", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,5,6\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)cccc2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.8</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.5494,33.6325 L 96.5494,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.9178,30.9087 L 92.9178,18.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.8244,42.7116 L 96.5494,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.5494,15.4742 L 101.667,12.5198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.667,12.5198 L 106.785,9.56537' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.5494,15.4742 L 80.8244,6.39514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.8244,6.39514 L 65.0994,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.2815,10.9021 L 69.274,17.2575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0994,15.4742 L 65.0994,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0994,33.6325 L 59.1574,37.0628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1574,37.0628 L 53.2154,40.4932' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0994,33.6325 L 80.8244,42.7116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.274,31.8493 L 80.2815,38.2046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.8244,42.7116 L 80.8244,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.8244,60.8795 L 65.1139,69.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.2887,65.3873 L 69.2914,71.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-8' d='M 96.5639,69.9344 L 80.8244,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.1139,69.984 L 59.1665,66.5632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 59.1665,66.5632 L 53.2191,63.1423' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 65.1139,69.984 L 65.1417,88.1422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 65.1417,88.1422 L 59.2064,91.5821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 59.2064,91.5821 L 53.2711,95.022' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 65.1417,88.1422 L 80.8825,97.1971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 69.3137,86.3525 L 80.3322,92.6909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8825,97.1971 L 80.8918,103.057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8918,103.057 L 80.901,108.916' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 80.8825,97.1971 L 96.593,88.0926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.593,88.0926 L 96.5639,69.9344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 92.957,85.3746 L 92.9366,72.6639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 107.148 8.38891\\nQ 107.148 7.11057, 107.743 6.44235\\nQ 108.346 5.76687, 109.487 5.76687\\nQ 110.547 5.76687, 111.113 6.51499\\nL 110.634 6.9072\\nQ 110.22 6.36246, 109.487 6.36246\\nQ 108.709 6.36246, 108.295 6.88541\\nQ 107.889 7.40111, 107.889 8.38891\\nQ 107.889 9.40577, 108.31 9.92873\\nQ 108.738 10.4517, 109.566 10.4517\\nQ 110.133 10.4517, 110.794 10.1103\\nL 110.997 10.6551\\nQ 110.729 10.8294, 110.322 10.9311\\nQ 109.915 11.0327, 109.465 11.0327\\nQ 108.346 11.0327, 107.743 10.35\\nQ 107.148 9.66725, 107.148 8.38891\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 111.738 5.45455\\nL 112.406 5.45455\\nL 112.406 10.9674\\nL 111.738 10.9674\\nL 111.738 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.5936 41.0737\\nQ 47.5936 39.7954, 48.1892 39.1271\\nQ 48.7921 38.4516, 49.9324 38.4516\\nQ 50.9929 38.4516, 51.5594 39.1998\\nL 51.08 39.592\\nQ 50.666 39.0472, 49.9324 39.0472\\nQ 49.1552 39.0472, 48.7412 39.5702\\nQ 48.3345 40.0859, 48.3345 41.0737\\nQ 48.3345 42.0906, 48.7558 42.6135\\nQ 49.1843 43.1365, 50.0123 43.1365\\nQ 50.5789 43.1365, 51.2398 42.7951\\nL 51.4432 43.3398\\nQ 51.1744 43.5142, 50.7677 43.6158\\nQ 50.361 43.7175, 49.9106 43.7175\\nQ 48.7921 43.7175, 48.1892 43.0348\\nQ 47.5936 42.352, 47.5936 41.0737\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 52.184 38.1393\\nL 52.8523 38.1393\\nL 52.8523 43.6522\\nL 52.184 43.6522\\nL 52.184 38.1393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.5973 62.9192\\nQ 47.5973 61.6409, 48.1929 60.9727\\nQ 48.7957 60.2972, 49.9361 60.2972\\nQ 50.9965 60.2972, 51.563 61.0453\\nL 51.0837 61.4375\\nQ 50.6696 60.8928, 49.9361 60.8928\\nQ 49.1589 60.8928, 48.7449 61.4157\\nQ 48.3381 61.9314, 48.3381 62.9192\\nQ 48.3381 63.9361, 48.7594 64.4591\\nQ 49.1879 64.982, 50.0159 64.982\\nQ 50.5825 64.982, 51.2434 64.6406\\nL 51.4468 65.1854\\nQ 51.1781 65.3597, 50.7713 65.4614\\nQ 50.3646 65.5631, 49.9143 65.5631\\nQ 48.7957 65.5631, 48.1929 64.8803\\nQ 47.5973 64.1976, 47.5973 62.9192\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 52.1877 59.9849\\nL 52.8559 59.9849\\nL 52.8559 65.4977\\nL 52.1877 65.4977\\nL 52.1877 59.9849\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.6493 95.604\\nQ 47.6493 94.3257, 48.2449 93.6575\\nQ 48.8478 92.982, 49.9881 92.982\\nQ 51.0485 92.982, 51.6151 93.7301\\nL 51.1357 94.1223\\nQ 50.7217 93.5776, 49.9881 93.5776\\nQ 49.2109 93.5776, 48.7969 94.1005\\nQ 48.3902 94.6162, 48.3902 95.604\\nQ 48.3902 96.6209, 48.8115 97.1438\\nQ 49.24 97.6668, 50.068 97.6668\\nQ 50.6345 97.6668, 51.2955 97.3254\\nL 51.4989 97.8702\\nQ 51.2301 98.0445, 50.8234 98.1462\\nQ 50.4166 98.2479, 49.9663 98.2479\\nQ 48.8478 98.2479, 48.2449 97.5651\\nQ 47.6493 96.8824, 47.6493 95.604\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 52.2397 92.6697\\nL 52.9079 92.6697\\nL 52.9079 98.1825\\nL 52.2397 98.1825\\nL 52.2397 92.6697\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 78.9226 111.902\\nQ 78.9226 110.623, 79.5182 109.955\\nQ 80.1211 109.28, 81.2614 109.28\\nQ 82.3218 109.28, 82.8884 110.028\\nL 82.409 110.42\\nQ 81.995 109.875, 81.2614 109.875\\nQ 80.4842 109.875, 80.0702 110.398\\nQ 79.6635 110.914, 79.6635 111.902\\nQ 79.6635 112.918, 80.0847 113.441\\nQ 80.5133 113.964, 81.3413 113.964\\nQ 81.9078 113.964, 82.5688 113.623\\nL 82.7722 114.168\\nQ 82.5034 114.342, 82.0967 114.444\\nQ 81.6899 114.545, 81.2396 114.545\\nQ 80.1211 114.545, 79.5182 113.863\\nQ 78.9226 113.18, 78.9226 111.902\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 83.513 108.967\\nL 84.1812 108.967\\nL 84.1812 114.48\\nL 83.513 114.48\\nL 83.513 108.967\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 49, "data-ID": 251, "data-Solubility": -7.91, "data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,4,5\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.91</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.034,56.3531 L 101.869,53.3711' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.869,53.3711 L 96.7034,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7034,50.3892 L 96.7034,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.038,47.6401 L 93.038,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 80.8321,59.5528 L 96.7034,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7034,32.062 L 101.869,29.0801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.869,29.0801 L 107.034,26.0981' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.7034,32.062 L 80.8321,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8321,22.8984 L 80.8321,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8321,17.1748 L 80.8321,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.8321,22.8984 L 64.9607,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.2841,27.4473 L 69.1742,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 64.9607,32.062 L 58.9634,28.5997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 58.9634,28.5997 L 52.9662,25.1374' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 64.9607,32.062 L 64.9607,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.9607,50.3892 L 58.9634,53.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.9634,53.8515 L 52.9662,57.3138' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 64.9607,50.3892 L 80.8321,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 69.1742,48.5894 L 80.2841,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.8321,59.5528 L 80.8321,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8321,77.8898 L 64.9753,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.2914,82.4396 L 69.1917,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 96.7181,87.029 L 80.8321,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 64.9753,87.0791 L 65.0035,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 65.0035,105.406 L 80.8907,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 69.2143,103.6 L 80.3353,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 80.8907,114.545 L 96.7474,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.7474,105.356 L 96.7181,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.0776,102.613 L 93.057,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.4 57.8997\\nQ 107.4 56.6095, 108.002 55.935\\nQ 108.61 55.2533, 109.761 55.2533\\nQ 110.831 55.2533, 111.403 56.0083\\nL 110.919 56.4042\\nQ 110.501 55.8544, 109.761 55.8544\\nQ 108.977 55.8544, 108.559 56.3822\\nQ 108.148 56.9027, 108.148 57.8997\\nQ 108.148 58.926, 108.573 59.4538\\nQ 109.006 59.9817, 109.842 59.9817\\nQ 110.413 59.9817, 111.081 59.6371\\nL 111.286 60.1869\\nQ 111.015 60.3629, 110.604 60.4655\\nQ 110.193 60.5681, 109.739 60.5681\\nQ 108.61 60.5681, 108.002 59.879\\nQ 107.4 59.1899, 107.4 57.8997\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 112.034 54.938\\nL 112.708 54.938\\nL 112.708 60.5022\\nL 112.034 60.5022\\nL 112.034 54.938\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 107.4 24.9107\\nQ 107.4 23.6205, 108.002 22.946\\nQ 108.61 22.2643, 109.761 22.2643\\nQ 110.831 22.2643, 111.403 23.0193\\nL 110.919 23.4152\\nQ 110.501 22.8654, 109.761 22.8654\\nQ 108.977 22.8654, 108.559 23.3932\\nQ 108.148 23.9137, 108.148 24.9107\\nQ 108.148 25.937, 108.573 26.4649\\nQ 109.006 26.9927, 109.842 26.9927\\nQ 110.413 26.9927, 111.081 26.6481\\nL 111.286 27.198\\nQ 111.015 27.3739, 110.604 27.4765\\nQ 110.193 27.5792, 109.739 27.5792\\nQ 108.61 27.5792, 108.002 26.8901\\nQ 107.4 26.201, 107.4 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 112.034 21.949\\nL 112.708 21.949\\nL 112.708 27.5132\\nL 112.034 27.5132\\nL 112.034 21.949\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 78.8307 8.41622\\nQ 78.8307 7.12599, 79.4319 6.45155\\nQ 80.0403 5.76977, 81.1913 5.76977\\nQ 82.2616 5.76977, 82.8334 6.52485\\nL 82.3495 6.92072\\nQ 81.9317 6.37091, 81.1913 6.37091\\nQ 80.4069 6.37091, 79.989 6.89873\\nQ 79.5785 7.41922, 79.5785 8.41622\\nQ 79.5785 9.44255, 80.0037 9.97037\\nQ 80.4362 10.4982, 81.2719 10.4982\\nQ 81.8437 10.4982, 82.5108 10.1536\\nL 82.7161 10.7035\\nQ 82.4449 10.8794, 82.0343 10.982\\nQ 81.6238 11.0847, 81.1693 11.0847\\nQ 80.0403 11.0847, 79.4319 10.3956\\nQ 78.8307 9.70646, 78.8307 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 83.4638 5.45455\\nL 84.1383 5.45455\\nL 84.1383 11.0187\\nL 83.4638 11.0187\\nL 83.4638 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 47.292 24.9107\\nQ 47.292 23.6205, 47.8932 22.946\\nQ 48.5016 22.2643, 49.6526 22.2643\\nQ 50.7229 22.2643, 51.2947 23.0193\\nL 50.8109 23.4152\\nQ 50.393 22.8654, 49.6526 22.8654\\nQ 48.8682 22.8654, 48.4503 23.3932\\nQ 48.0398 23.9137, 48.0398 24.9107\\nQ 48.0398 25.937, 48.465 26.4649\\nQ 48.8975 26.9927, 49.7332 26.9927\\nQ 50.305 26.9927, 50.9721 26.6481\\nL 51.1774 27.198\\nQ 50.9062 27.3739, 50.4956 27.4765\\nQ 50.0851 27.5792, 49.6306 27.5792\\nQ 48.5016 27.5792, 47.8932 26.8901\\nQ 47.292 26.201, 47.292 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 51.9252 21.949\\nL 52.5996 21.949\\nL 52.5996 27.5132\\nL 51.9252 27.5132\\nL 51.9252 21.949\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 47.292 57.8997\\nQ 47.292 56.6095, 47.8932 55.935\\nQ 48.5016 55.2533, 49.6526 55.2533\\nQ 50.7229 55.2533, 51.2947 56.0083\\nL 50.8109 56.4042\\nQ 50.393 55.8544, 49.6526 55.8544\\nQ 48.8682 55.8544, 48.4503 56.3822\\nQ 48.0398 56.9027, 48.0398 57.8997\\nQ 48.0398 58.926, 48.465 59.4538\\nQ 48.8975 59.9817, 49.7332 59.9817\\nQ 50.305 59.9817, 50.9721 59.6371\\nL 51.1774 60.1869\\nQ 50.9062 60.3629, 50.4956 60.4655\\nQ 50.0851 60.5681, 49.6306 60.5681\\nQ 48.5016 60.5681, 47.8932 59.879\\nQ 47.292 59.1899, 47.292 57.8997\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 51.9252 54.938\\nL 52.5996 54.938\\nL 52.5996 60.5022\\nL 51.9252 60.5022\\nL 51.9252 54.938\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 50, "data-ID": 256, "data-Solubility": -7.92, "data-SMILES": "Clc1c(Cl)c(Cl)c(Cl)c(Cl)c1c2ccccc2", "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5,6-PCB<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c(Cl)c(Cl)c1c2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.92</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.5222,33.6325 L 96.5222,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.8905,30.9087 L 92.8905,18.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.7971,42.7116 L 96.5222,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.5222,15.4742 L 101.64,12.5198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.64,12.5198 L 106.757,9.56537' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.5222,15.4742 L 80.7971,6.39514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.7971,6.39514 L 65.0721,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.2543,10.9021 L 69.2467,17.2575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0721,15.4742 L 65.0721,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0721,33.6325 L 59.1302,37.0628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1302,37.0628 L 53.1882,40.4932' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0721,33.6325 L 80.7971,42.7116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.2467,31.8493 L 80.2543,38.2046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.7971,42.7116 L 80.7971,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.7971,60.8795 L 65.0867,69.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.2615,65.3873 L 69.2642,71.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-8' d='M 96.5367,69.9344 L 80.7971,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.0867,69.984 L 59.1392,66.5632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 59.1392,66.5632 L 53.1918,63.1423' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 65.0867,69.984 L 65.1145,88.1422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 65.1145,88.1422 L 59.1792,91.5821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 59.1792,91.5821 L 53.2439,95.022' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 65.1145,88.1422 L 80.8553,97.1971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 69.2865,86.3525 L 80.305,92.6909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8553,97.1971 L 80.8645,103.057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8645,103.057 L 80.8738,108.916' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 80.8553,97.1971 L 96.5657,88.0926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.5657,88.0926 L 101.689,91.0392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 101.689,91.0392 L 106.812,93.9859' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 96.5657,88.0926 L 96.5367,69.9344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 92.9297,85.3746 L 92.9094,72.6639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 107.121 8.38891\\nQ 107.121 7.11057, 107.716 6.44235\\nQ 108.319 5.76687, 109.459 5.76687\\nQ 110.52 5.76687, 111.086 6.51499\\nL 110.607 6.9072\\nQ 110.193 6.36246, 109.459 6.36246\\nQ 108.682 6.36246, 108.268 6.88541\\nQ 107.861 7.40111, 107.861 8.38891\\nQ 107.861 9.40577, 108.283 9.92873\\nQ 108.711 10.4517, 109.539 10.4517\\nQ 110.106 10.4517, 110.767 10.1103\\nL 110.97 10.6551\\nQ 110.701 10.8294, 110.295 10.9311\\nQ 109.888 11.0327, 109.437 11.0327\\nQ 108.319 11.0327, 107.716 10.35\\nQ 107.121 9.66725, 107.121 8.38891\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 111.711 5.45455\\nL 112.379 5.45455\\nL 112.379 10.9674\\nL 111.711 10.9674\\nL 111.711 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.5664 41.0737\\nQ 47.5664 39.7954, 48.162 39.1271\\nQ 48.7648 38.4516, 49.9052 38.4516\\nQ 50.9656 38.4516, 51.5322 39.1998\\nL 51.0528 39.592\\nQ 50.6388 39.0472, 49.9052 39.0472\\nQ 49.128 39.0472, 48.714 39.5702\\nQ 48.3073 40.0859, 48.3073 41.0737\\nQ 48.3073 42.0906, 48.7285 42.6135\\nQ 49.1571 43.1365, 49.9851 43.1365\\nQ 50.5516 43.1365, 51.2126 42.7951\\nL 51.4159 43.3398\\nQ 51.1472 43.5142, 50.7405 43.6158\\nQ 50.3337 43.7175, 49.8834 43.7175\\nQ 48.7648 43.7175, 48.162 43.0348\\nQ 47.5664 42.352, 47.5664 41.0737\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 52.1568 38.1393\\nL 52.825 38.1393\\nL 52.825 43.6522\\nL 52.1568 43.6522\\nL 52.1568 38.1393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.57 62.9192\\nQ 47.57 61.6409, 48.1656 60.9727\\nQ 48.7685 60.2972, 49.9088 60.2972\\nQ 50.9693 60.2972, 51.5358 61.0453\\nL 51.0564 61.4375\\nQ 50.6424 60.8928, 49.9088 60.8928\\nQ 49.1316 60.8928, 48.7176 61.4157\\nQ 48.3109 61.9314, 48.3109 62.9192\\nQ 48.3109 63.9361, 48.7322 64.4591\\nQ 49.1607 64.982, 49.9887 64.982\\nQ 50.5552 64.982, 51.2162 64.6406\\nL 51.4196 65.1854\\nQ 51.1508 65.3597, 50.7441 65.4614\\nQ 50.3373 65.5631, 49.887 65.5631\\nQ 48.7685 65.5631, 48.1656 64.8803\\nQ 47.57 64.1976, 47.57 62.9192\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 52.1604 59.9849\\nL 52.8287 59.9849\\nL 52.8287 65.4977\\nL 52.1604 65.4977\\nL 52.1604 59.9849\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.6221 95.604\\nQ 47.6221 94.3257, 48.2177 93.6575\\nQ 48.8205 92.982, 49.9609 92.982\\nQ 51.0213 92.982, 51.5878 93.7301\\nL 51.1085 94.1223\\nQ 50.6945 93.5776, 49.9609 93.5776\\nQ 49.1837 93.5776, 48.7697 94.1005\\nQ 48.3629 94.6162, 48.3629 95.604\\nQ 48.3629 96.6209, 48.7842 97.1438\\nQ 49.2128 97.6668, 50.0408 97.6668\\nQ 50.6073 97.6668, 51.2683 97.3254\\nL 51.4716 97.8702\\nQ 51.2029 98.0445, 50.7961 98.1462\\nQ 50.3894 98.2479, 49.9391 98.2479\\nQ 48.8205 98.2479, 48.2177 97.5651\\nQ 47.6221 96.8824, 47.6221 95.604\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 52.2125 92.6697\\nL 52.8807 92.6697\\nL 52.8807 98.1825\\nL 52.2125 98.1825\\nL 52.2125 92.6697\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 78.8954 111.902\\nQ 78.8954 110.623, 79.491 109.955\\nQ 80.0938 109.28, 81.2342 109.28\\nQ 82.2946 109.28, 82.8611 110.028\\nL 82.3818 110.42\\nQ 81.9677 109.875, 81.2342 109.875\\nQ 80.457 109.875, 80.043 110.398\\nQ 79.6362 110.914, 79.6362 111.902\\nQ 79.6362 112.918, 80.0575 113.441\\nQ 80.486 113.964, 81.314 113.964\\nQ 81.8806 113.964, 82.5415 113.623\\nL 82.7449 114.168\\nQ 82.4762 114.342, 82.0694 114.444\\nQ 81.6627 114.545, 81.2124 114.545\\nQ 80.0938 114.545, 79.491 113.863\\nQ 78.8954 113.18, 78.8954 111.902\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 83.4858 108.967\\nL 84.154 108.967\\nL 84.154 114.48\\nL 83.4858 114.48\\nL 83.4858 108.967\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 107.175 95.5132\\nQ 107.175 94.2349, 107.771 93.5667\\nQ 108.373 92.8912, 109.514 92.8912\\nQ 110.574 92.8912, 111.141 93.6393\\nL 110.661 94.0315\\nQ 110.247 93.4868, 109.514 93.4868\\nQ 108.737 93.4868, 108.323 94.0097\\nQ 107.916 94.5254, 107.916 95.5132\\nQ 107.916 96.5301, 108.337 97.053\\nQ 108.766 97.576, 109.594 97.576\\nQ 110.16 97.576, 110.821 97.2346\\nL 111.025 97.7794\\nQ 110.756 97.9537, 110.349 98.0554\\nQ 109.942 98.1571, 109.492 98.1571\\nQ 108.373 98.1571, 107.771 97.4743\\nQ 107.175 96.7916, 107.175 95.5132\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 111.765 92.5789\\nL 112.434 92.5789\\nL 112.434 98.0917\\nL 111.765 98.0917\\nL 111.765 92.5789\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 51, "data-ID": 261, "data-Solubility": -7.68, "data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)c(Cl)c2", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,4,5,5\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)c(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.68</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 101.27,44.1744 L 101.27,28.382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 98.1113,41.8055 L 98.1113,30.7509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-0' d='M 87.5935,52.0706 L 101.27,44.1744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.27,28.382 L 87.5935,20.4858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.5935,20.4858 L 87.5935,15.5538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.5935,15.5538 L 87.5935,10.6218' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 87.5935,20.4858 L 73.9173,28.382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 87.1214,24.4055 L 77.548,29.9329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.9173,28.382 L 68.7495,25.3986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.7495,25.3986 L 63.5817,22.4151' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 73.9173,28.382 L 73.9173,44.1744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 73.9173,44.1744 L 68.7495,47.1578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.7495,47.1578 L 63.5817,50.1413' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 73.9173,44.1744 L 87.5935,52.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 77.548,42.6235 L 87.1214,48.1509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.5935,52.0706 L 87.5935,67.8715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.5935,67.8715 L 73.9299,75.7898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.1277,71.792 L 77.5631,77.3348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-9' d='M 101.282,75.7466 L 87.5935,67.8715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.9299,75.7898 L 68.7574,72.8147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 68.7574,72.8147 L 63.5848,69.8395' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 73.9299,75.7898 L 73.9541,91.5822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 73.9541,91.5822 L 68.7921,94.5739' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 68.7921,94.5739 L 63.6301,97.5656' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 73.9541,91.5822 L 87.6441,99.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 77.5826,90.0257 L 87.1655,95.5383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 87.6441,99.4574 L 87.6521,104.554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 87.6521,104.554 L 87.6602,109.65' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 87.6441,99.4574 L 101.308,91.5391' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 101.308,91.5391 L 101.282,75.7466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 98.1454,89.1752 L 98.1277,78.1205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.869 8.0066\\nQ 85.869 6.89481, 86.387 6.31365\\nQ 86.9113 5.72618, 87.9031 5.72618\\nQ 88.8253 5.72618, 89.3181 6.37682\\nL 88.9011 6.71794\\nQ 88.5411 6.24417, 87.9031 6.24417\\nQ 87.2271 6.24417, 86.8671 6.69899\\nQ 86.5133 7.14749, 86.5133 8.0066\\nQ 86.5133 8.89098, 86.8797 9.3458\\nQ 87.2524 9.80062, 87.9725 9.80062\\nQ 88.4653 9.80062, 89.0401 9.50372\\nL 89.217 9.9775\\nQ 88.9833 10.1291, 88.6295 10.2175\\nQ 88.2758 10.306, 87.8841 10.306\\nQ 86.9113 10.306, 86.387 9.71218\\nQ 85.869 9.11839, 85.869 8.0066\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 89.8613 5.45455\\nL 90.4425 5.45455\\nL 90.4425 10.2491\\nL 89.8613 10.2491\\nL 89.8613 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 58.6923 22.2198\\nQ 58.6923 21.108, 59.2103 20.5268\\nQ 59.7346 19.9394, 60.7264 19.9394\\nQ 61.6487 19.9394, 62.1414 20.59\\nL 61.7245 20.9311\\nQ 61.3644 20.4573, 60.7264 20.4573\\nQ 60.0505 20.4573, 59.6904 20.9122\\nQ 59.3367 21.3607, 59.3367 22.2198\\nQ 59.3367 23.1042, 59.703 23.559\\nQ 60.0758 24.0138, 60.7959 24.0138\\nQ 61.2886 24.0138, 61.8635 23.7169\\nL 62.0403 24.1907\\nQ 61.8066 24.3423, 61.4529 24.4307\\nQ 61.0991 24.5192, 60.7074 24.5192\\nQ 59.7346 24.5192, 59.2103 23.9254\\nQ 58.6923 23.3316, 58.6923 22.2198\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 62.6847 19.6677\\nL 63.2658 19.6677\\nL 63.2658 24.4623\\nL 62.6847 24.4623\\nL 62.6847 19.6677\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 58.6923 50.6461\\nQ 58.6923 49.5344, 59.2103 48.9532\\nQ 59.7346 48.3657, 60.7264 48.3657\\nQ 61.6487 48.3657, 62.1414 49.0164\\nL 61.7245 49.3575\\nQ 61.3644 48.8837, 60.7264 48.8837\\nQ 60.0505 48.8837, 59.6904 49.3385\\nQ 59.3367 49.787, 59.3367 50.6461\\nQ 59.3367 51.5305, 59.703 51.9853\\nQ 60.0758 52.4402, 60.7959 52.4402\\nQ 61.2886 52.4402, 61.8635 52.1433\\nL 62.0403 52.617\\nQ 61.8066 52.7686, 61.4529 52.8571\\nQ 61.0991 52.9455, 60.7074 52.9455\\nQ 59.7346 52.9455, 59.2103 52.3517\\nQ 58.6923 51.7579, 58.6923 50.6461\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 62.6847 48.0941\\nL 63.2658 48.0941\\nL 63.2658 52.8887\\nL 62.6847 52.8887\\nL 62.6847 48.0941\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 58.6955 69.6455\\nQ 58.6955 68.5337, 59.2135 67.9525\\nQ 59.7378 67.3651, 60.7296 67.3651\\nQ 61.6518 67.3651, 62.1446 68.0157\\nL 61.7276 68.3568\\nQ 61.3676 67.8831, 60.7296 67.8831\\nQ 60.0536 67.8831, 59.6936 68.3379\\nQ 59.3398 68.7864, 59.3398 69.6455\\nQ 59.3398 70.5299, 59.7062 70.9847\\nQ 60.0789 71.4395, 60.799 71.4395\\nQ 61.2918 71.4395, 61.8666 71.1426\\nL 62.0435 71.6164\\nQ 61.8098 71.768, 61.456 71.8564\\nQ 61.1023 71.9449, 60.7106 71.9449\\nQ 59.7378 71.9449, 59.2135 71.3511\\nQ 58.6955 70.7573, 58.6955 69.6455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 62.6878 67.0934\\nL 63.269 67.0934\\nL 63.269 71.888\\nL 62.6878 71.888\\nL 62.6878 67.0934\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 58.7408 98.0719\\nQ 58.7408 96.9601, 59.2588 96.3789\\nQ 59.7831 95.7914, 60.7748 95.7914\\nQ 61.6971 95.7914, 62.1898 96.4421\\nL 61.7729 96.7832\\nQ 61.4128 96.3094, 60.7748 96.3094\\nQ 60.0989 96.3094, 59.7388 96.7642\\nQ 59.3851 97.2127, 59.3851 98.0719\\nQ 59.3851 98.9562, 59.7515 99.411\\nQ 60.1242 99.8659, 60.8443 99.8659\\nQ 61.337 99.8659, 61.9119 99.569\\nL 62.0888 100.043\\nQ 61.855 100.194, 61.5013 100.283\\nQ 61.1475 100.371, 60.7559 100.371\\nQ 59.7831 100.371, 59.2588 99.7774\\nQ 58.7408 99.1836, 58.7408 98.0719\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 62.7331 95.5198\\nL 63.3143 95.5198\\nL 63.3143 100.314\\nL 62.7331 100.314\\nL 62.7331 95.5198\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 85.9395 112.246\\nQ 85.9395 111.134, 86.4575 110.553\\nQ 86.9818 109.966, 87.9736 109.966\\nQ 88.8959 109.966, 89.3886 110.616\\nL 88.9717 110.957\\nQ 88.6116 110.484, 87.9736 110.484\\nQ 87.2977 110.484, 86.9376 110.938\\nQ 86.5839 111.387, 86.5839 112.246\\nQ 86.5839 113.13, 86.9502 113.585\\nQ 87.3229 114.04, 88.0431 114.04\\nQ 88.5358 114.04, 89.1106 113.743\\nL 89.2875 114.217\\nQ 89.0538 114.369, 88.7 114.457\\nQ 88.3463 114.545, 87.9546 114.545\\nQ 86.9818 114.545, 86.4575 113.952\\nQ 85.9395 113.358, 85.9395 112.246\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 89.9319 109.694\\nL 90.513 109.694\\nL 90.513 114.489\\nL 89.9319 114.489\\nL 89.9319 109.694\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 52, "data-ID": 266, "data-Solubility": -8.01, "data-SMILES": "c1cc(Cl)c(Cl)c(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,3\\uffb4,4,4\\uffb4-PCB<br><strong>SMILES</strong>: c1cc(Cl)c(Cl)c(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.01</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.457,45.5281 L 105.44,42.0548' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.44,42.0548 L 99.424,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.424,38.5814 L 99.424,17.234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.1545,35.3793 L 95.1545,20.4362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-1' d='M 80.9372,49.2551 L 99.424,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 99.424,17.234 L 105.44,13.7607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.44,13.7607 L 111.457,10.2874' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 99.424,17.234 L 80.9372,6.56034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.9372,6.56034 L 62.4503,17.234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.2989,11.8588 L 67.3581,19.3304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.4503,17.234 L 55.4647,13.2012' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.4647,13.2012 L 48.4792,9.16834' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 62.4503,17.234 L 62.4503,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 62.4503,38.5814 L 55.4647,42.6143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 55.4647,42.6143 L 48.4792,46.6471' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 62.4503,38.5814 L 80.9372,49.2551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 67.3581,36.485 L 80.2989,43.9566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.9372,49.2551 L 80.9372,70.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.9372,70.6139 L 62.4674,81.3175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.3074,75.9135 L 67.3786,83.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-10' d='M 99.4411,81.2592 L 80.9372,70.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 62.4674,81.3175 L 55.4754,77.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 55.4754,77.2959 L 48.4834,73.2742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 62.4674,81.3175 L 62.5001,102.665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 62.5001,102.665 L 55.5224,106.709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 55.5224,106.709 L 48.5446,110.753' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 62.5001,102.665 L 81.0055,113.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 67.4048,100.561 L 80.3586,108.013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 81.0055,113.31 L 99.4752,102.607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 99.4752,102.607 L 105.498,106.071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 105.498,106.071 L 111.521,109.535' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 99.4752,102.607 L 99.4411,81.2592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 95.2006,99.4113 L 95.1767,84.4681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 99.4411,81.2592 L 105.45,77.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 105.45,77.7773 L 111.46,74.2955' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 111.884 47.3296\\nQ 111.884 45.8267, 112.584 45.0412\\nQ 113.293 44.247, 114.633 44.247\\nQ 115.88 44.247, 116.546 45.1266\\nL 115.982 45.5877\\nQ 115.496 44.9472, 114.633 44.9472\\nQ 113.72 44.9472, 113.233 45.562\\nQ 112.755 46.1683, 112.755 47.3296\\nQ 112.755 48.5251, 113.25 49.1399\\nQ 113.754 49.7547, 114.727 49.7547\\nQ 115.393 49.7547, 116.17 49.3533\\nL 116.409 49.9938\\nQ 116.093 50.1987, 115.615 50.3182\\nQ 115.137 50.4378, 114.608 50.4378\\nQ 113.293 50.4378, 112.584 49.6351\\nQ 111.884 48.8325, 111.884 47.3296\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 117.28 43.8799\\nL 118.066 43.8799\\nL 118.066 50.3609\\nL 117.28 50.3609\\nL 117.28 43.8799\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 111.884 8.90429\\nQ 111.884 7.40143, 112.584 6.61584\\nQ 113.293 5.82172, 114.633 5.82172\\nQ 115.88 5.82172, 116.546 6.70123\\nL 115.982 7.16234\\nQ 115.496 6.52192, 114.633 6.52192\\nQ 113.72 6.52192, 113.233 7.13672\\nQ 112.755 7.74299, 112.755 8.90429\\nQ 112.755 10.0997, 113.25 10.7145\\nQ 113.754 11.3294, 114.727 11.3294\\nQ 115.393 11.3294, 116.17 10.928\\nL 116.409 11.5684\\nQ 116.093 11.7734, 115.615 11.8929\\nQ 115.137 12.0125, 114.608 12.0125\\nQ 113.293 12.0125, 112.584 11.2098\\nQ 111.884 10.4071, 111.884 8.90429\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 117.28 5.45455\\nL 118.066 5.45455\\nL 118.066 11.9356\\nL 117.28 11.9356\\nL 117.28 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 41.87 8.90429\\nQ 41.87 7.40143, 42.5702 6.61584\\nQ 43.2789 5.82172, 44.6195 5.82172\\nQ 45.8662 5.82172, 46.5323 6.70123\\nL 45.9687 7.16234\\nQ 45.482 6.52192, 44.6195 6.52192\\nQ 43.7059 6.52192, 43.2191 7.13672\\nQ 42.741 7.74299, 42.741 8.90429\\nQ 42.741 10.0997, 43.2362 10.7145\\nQ 43.74 11.3294, 44.7135 11.3294\\nQ 45.3795 11.3294, 46.1565 10.928\\nL 46.3956 11.5684\\nQ 46.0797 11.7734, 45.6015 11.8929\\nQ 45.1233 12.0125, 44.5939 12.0125\\nQ 43.2789 12.0125, 42.5702 11.2098\\nQ 41.87 10.4071, 41.87 8.90429\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.2666 5.45455\\nL 48.0522 5.45455\\nL 48.0522 11.9356\\nL 47.2666 11.9356\\nL 47.2666 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 41.87 47.3296\\nQ 41.87 45.8267, 42.5702 45.0412\\nQ 43.2789 44.247, 44.6195 44.247\\nQ 45.8662 44.247, 46.5323 45.1266\\nL 45.9687 45.5877\\nQ 45.482 44.9472, 44.6195 44.9472\\nQ 43.7059 44.9472, 43.2191 45.562\\nQ 42.741 46.1683, 42.741 47.3296\\nQ 42.741 48.5251, 43.2362 49.1399\\nQ 43.74 49.7547, 44.7135 49.7547\\nQ 45.3795 49.7547, 46.1565 49.3533\\nL 46.3956 49.9938\\nQ 46.0797 50.1987, 45.6015 50.3182\\nQ 45.1233 50.4378, 44.5939 50.4378\\nQ 43.2789 50.4378, 42.5702 49.6351\\nQ 41.87 48.8325, 41.87 47.3296\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 47.2666 43.8799\\nL 48.0522 43.8799\\nL 48.0522 50.3609\\nL 47.2666 50.3609\\nL 47.2666 43.8799\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 41.8743 73.012\\nQ 41.8743 71.5091, 42.5744 70.7235\\nQ 43.2832 69.9294, 44.6238 69.9294\\nQ 45.8705 69.9294, 46.5365 70.8089\\nL 45.973 71.27\\nQ 45.4862 70.6296, 44.6238 70.6296\\nQ 43.7101 70.6296, 43.2234 71.2444\\nQ 42.7452 71.8507, 42.7452 73.012\\nQ 42.7452 74.2074, 43.2405 74.8222\\nQ 43.7443 75.437, 44.7177 75.437\\nQ 45.3838 75.437, 46.1608 75.0357\\nL 46.3999 75.6761\\nQ 46.084 75.881, 45.6058 76.0006\\nQ 45.1276 76.1201, 44.5982 76.1201\\nQ 43.2832 76.1201, 42.5744 75.3175\\nQ 41.8743 74.5148, 41.8743 73.012\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.2709 69.5622\\nL 48.0565 69.5622\\nL 48.0565 76.0433\\nL 47.2709 76.0433\\nL 47.2709 69.5622\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 41.9355 111.437\\nQ 41.9355 109.934, 42.6356 109.149\\nQ 43.3444 108.355, 44.685 108.355\\nQ 45.9317 108.355, 46.5977 109.234\\nL 46.0342 109.695\\nQ 45.5474 109.055, 44.685 109.055\\nQ 43.7713 109.055, 43.2846 109.67\\nQ 42.8064 110.276, 42.8064 111.437\\nQ 42.8064 112.633, 43.3017 113.248\\nQ 43.8055 113.862, 44.7789 113.862\\nQ 45.445 113.862, 46.222 113.461\\nL 46.4611 114.101\\nQ 46.1452 114.306, 45.667 114.426\\nQ 45.1888 114.545, 44.6594 114.545\\nQ 43.3444 114.545, 42.6356 113.743\\nQ 41.9355 112.94, 41.9355 111.437\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 47.3321 107.988\\nL 48.1177 107.988\\nL 48.1177 114.469\\nL 47.3321 114.469\\nL 47.3321 107.988\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 111.948 111.331\\nQ 111.948 109.828, 112.648 109.042\\nQ 113.357 108.248, 114.697 108.248\\nQ 115.944 108.248, 116.61 109.127\\nL 116.047 109.589\\nQ 115.56 108.948, 114.697 108.948\\nQ 113.784 108.948, 113.297 109.563\\nQ 112.819 110.169, 112.819 111.331\\nQ 112.819 112.526, 113.314 113.141\\nQ 113.818 113.756, 114.791 113.756\\nQ 115.457 113.756, 116.234 113.354\\nL 116.473 113.995\\nQ 116.158 114.2, 115.679 114.319\\nQ 115.201 114.439, 114.672 114.439\\nQ 113.357 114.439, 112.648 113.636\\nQ 111.948 112.833, 111.948 111.331\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 117.344 107.881\\nL 118.13 107.881\\nL 118.13 114.362\\nL 117.344 114.362\\nL 117.344 107.881\\n' fill='#00CC00'/>\\n<path class='atom-19' d='M 111.887 72.9066\\nQ 111.887 71.4038, 112.587 70.6182\\nQ 113.296 69.8241, 114.636 69.8241\\nQ 115.883 69.8241, 116.549 70.7036\\nL 115.985 71.1647\\nQ 115.499 70.5243, 114.636 70.5243\\nQ 113.722 70.5243, 113.236 71.1391\\nQ 112.758 71.7453, 112.758 72.9066\\nQ 112.758 74.1021, 113.253 74.7169\\nQ 113.757 75.3317, 114.73 75.3317\\nQ 115.396 75.3317, 116.173 74.9304\\nL 116.412 75.5708\\nQ 116.096 75.7757, 115.618 75.8953\\nQ 115.14 76.0148, 114.611 76.0148\\nQ 113.296 76.0148, 112.587 75.2122\\nQ 111.887 74.4095, 111.887 72.9066\\n' fill='#00CC00'/>\\n<path class='atom-19' d='M 117.283 69.4569\\nL 118.069 69.4569\\nL 118.069 75.938\\nL 117.283 75.938\\nL 117.283 69.4569\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 53, "data-ID": 271, "data-Solubility": -9.15, "data-SMILES": "Clc1c(Cl)cc(Cl)c(Cl)c1c2c(Cl)c(Cl)cc(Cl)c2Cl", "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,3\\uffb4,5,5\\uffb4,6,6\\uffb4-PCB<br><strong>SMILES</strong>: Clc1c(Cl)cc(Cl)c(Cl)c1c2c(Cl)c(Cl)cc(Cl)c2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-9.15</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.5,39.6515 L 117.397,36.6831' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.397,36.6831 L 112.293,33.7147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.293,33.7147 L 112.312,28.0459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.312,28.0459 L 112.332,22.377' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.293,33.7147 L 96.5298,42.7363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.5298,42.7363 L 80.8187,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-3 atom-11' d='M 96.5298,42.7363 L 96.5032,60.8979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8187,33.6228 L 80.8187,15.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.1883,30.9 L 77.1883,18.1936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-4' d='M 65.099,42.6988 L 80.8187,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.8187,15.4708 L 65.099,6.39482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.099,6.39482 L 49.3794,15.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 64.5563,10.9002 L 53.5526,17.2534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 49.3794,15.4708 L 43.4395,12.0416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 43.4395,12.0416 L 37.4996,8.61243' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 49.3794,15.4708 L 49.3794,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.3794,33.6228 L 65.099,42.6988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 53.5526,31.8402 L 64.5563,38.1934' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 96.5032,60.8979 L 112.191,70.0296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 97.0301,65.4052 L 108.012,71.7974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-11' d='M 80.7521,69.9207 L 96.5032,60.8979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 112.191,70.0296 L 112.13,88.1815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 112.13,88.1815 L 96.3773,97.2031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.963,86.3844 L 96.9359,92.6995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.3773,97.2031 L 96.3573,103.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.3573,103.061 L 96.3373,108.918' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 96.3773,97.2031 L 80.6892,88.0726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 80.6892,88.0726 L 80.7521,69.9207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.329,85.3624 L 84.373,72.656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 122.863 41.1934\\nQ 122.863 39.9155, 123.459 39.2475\\nQ 124.061 38.5722, 125.201 38.5722\\nQ 126.262 38.5722, 126.828 39.3201\\nL 126.349 39.7122\\nQ 125.935 39.1676, 125.201 39.1676\\nQ 124.425 39.1676, 124.011 39.6904\\nQ 123.604 40.2059, 123.604 41.1934\\nQ 123.604 42.2099, 124.025 42.7326\\nQ 124.454 43.2554, 125.281 43.2554\\nQ 125.848 43.2554, 126.508 42.9142\\nL 126.712 43.4587\\nQ 126.443 43.633, 126.036 43.7346\\nQ 125.63 43.8363, 125.18 43.8363\\nQ 124.061 43.8363, 123.459 43.1538\\nQ 122.863 42.4712, 122.863 41.1934\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 127.452 38.26\\nL 128.12 38.26\\nL 128.12 43.7709\\nL 127.452 43.7709\\nL 127.452 38.26\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 110.36 19.3711\\nQ 110.36 18.0932, 110.956 17.4252\\nQ 111.558 16.7499, 112.698 16.7499\\nQ 113.758 16.7499, 114.325 17.4978\\nL 113.846 17.8899\\nQ 113.432 17.3453, 112.698 17.3453\\nQ 111.921 17.3453, 111.508 17.8681\\nQ 111.101 18.3836, 111.101 19.3711\\nQ 111.101 20.3876, 111.522 20.9103\\nQ 111.95 21.4331, 112.778 21.4331\\nQ 113.345 21.4331, 114.005 21.0919\\nL 114.209 21.6364\\nQ 113.94 21.8107, 113.533 21.9123\\nQ 113.127 22.014, 112.677 22.014\\nQ 111.558 22.014, 110.956 21.3315\\nQ 110.36 20.649, 110.36 19.3711\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 114.949 16.4377\\nL 115.617 16.4377\\nL 115.617 21.9486\\nL 114.949 21.9486\\nL 114.949 16.4377\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 31.8797 8.3879\\nQ 31.8797 7.11, 32.4751 6.44201\\nQ 33.0778 5.76676, 34.2177 5.76676\\nQ 35.2778 5.76676, 35.8441 6.51462\\nL 35.3649 6.9067\\nQ 34.9511 6.36214, 34.2177 6.36214\\nQ 33.4408 6.36214, 33.0269 6.88492\\nQ 32.6203 7.40044, 32.6203 8.3879\\nQ 32.6203 9.40441, 33.0415 9.92719\\nQ 33.4698 10.45, 34.2976 10.45\\nQ 34.8639 10.45, 35.5247 10.1087\\nL 35.728 10.6533\\nQ 35.4593 10.8275, 35.0527 10.9292\\nQ 34.6461 11.0308, 34.1959 11.0308\\nQ 33.0778 11.0308, 32.4751 10.3483\\nQ 31.8797 9.6658, 31.8797 8.3879\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 36.4686 5.45455\\nL 37.1365 5.45455\\nL 37.1365 10.9655\\nL 36.4686 10.9655\\nL 36.4686 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 94.3455 111.903\\nQ 94.3455 110.625, 94.9409 109.957\\nQ 95.5435 109.281, 96.6835 109.281\\nQ 97.7435 109.281, 98.3099 110.029\\nL 97.8307 110.421\\nQ 97.4168 109.877, 96.6835 109.877\\nQ 95.9066 109.877, 95.4927 110.4\\nQ 95.0861 110.915, 95.0861 111.903\\nQ 95.0861 112.919, 95.5072 113.442\\nQ 95.9356 113.965, 96.7633 113.965\\nQ 97.3297 113.965, 97.9904 113.623\\nL 98.1937 114.168\\nQ 97.9251 114.342, 97.5185 114.444\\nQ 97.1119 114.545, 96.6617 114.545\\nQ 95.5435 114.545, 94.9409 113.863\\nQ 94.3455 113.18, 94.3455 111.903\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 98.9343 108.969\\nL 99.6023 108.969\\nL 99.6023 114.48\\nL 98.9343 114.48\\nL 98.9343 108.969\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 54, "data-ID": 276, "data-Solubility": -7.2, "data-SMILES": "ClC(Cl)C(c1ccc(Cl)cc1)c2ccc(Cl)cc2", "mols2grid-tooltip": "<strong>Name</strong>: p,p\\uffb4-DDD<br><strong>SMILES</strong>: ClC(Cl)C(c1ccc(Cl)cc1)c2ccc(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.2</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.1798,75.5975 L 96.1798,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 96.1798,75.5975 L 124.452,91.9256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 96.1798,75.5975 L 67.9071,91.9256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 88.6669,72.3811 L 68.876,83.8108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.1798,42.9457 L 67.9071,26.6176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.6669,46.1621 L 68.876,34.7324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 96.1798,42.9457 L 124.452,26.6176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 67.9071,26.6176 L 39.2354,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 39.2354,42.9457 L 39.2354,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 45.778,47.8435 L 45.778,70.6997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 39.2354,75.5975 L 29.2144,81.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 29.2144,81.4227 L 19.1933,87.248' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 67.9071,91.9256 L 39.2354,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.452,26.6176 L 152.727,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 125.422,34.7325 L 145.214,46.1622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,42.9457 L 152.727,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 124.452,91.9256 L 152.727,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 125.422,83.8107 L 145.214,72.381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 11.774 88.5147\\nQ 12.6638 88.7633, 13.1087 89.3129\\nQ 13.5667 89.8494, 13.5667 90.6476\\nQ 13.5667 91.93, 12.7423 92.6627\\nQ 11.931 93.3824, 10.387 93.3824\\nL 7.27273 93.3824\\nL 7.27273 84.1181\\nL 10.0075 84.1181\\nQ 11.5908 84.1181, 12.389 84.7593\\nQ 13.1872 85.4005, 13.1872 86.5781\\nQ 13.1872 87.9782, 11.774 88.5147\\nM 8.51582 85.1649\\nL 8.51582 88.0698\\nL 10.0075 88.0698\\nQ 10.9235 88.0698, 11.3946 87.7034\\nQ 11.8787 87.324, 11.8787 86.5781\\nQ 11.8787 85.1649, 10.0075 85.1649\\nL 8.51582 85.1649\\nM 10.387 92.3356\\nQ 11.2899 92.3356, 11.774 91.9038\\nQ 12.2582 91.472, 12.2582 90.6476\\nQ 12.2582 89.8887, 11.7217 89.5092\\nQ 11.1983 89.1166, 10.1907 89.1166\\nL 8.51582 89.1166\\nL 8.51582 92.3356\\nL 10.387 92.3356\\n' fill='#7F4C19'/>\\n<path class='atom-5' d='M 15.6734 86.6566\\nL 15.8173 87.5857\\nQ 16.5239 86.5389, 17.6754 86.5389\\nQ 18.0418 86.5389, 18.539 86.6697\\nL 18.3428 87.7689\\nQ 17.7801 87.638, 17.4661 87.638\\nQ 16.9165 87.638, 16.5501 87.8605\\nQ 16.1968 88.0698, 15.9089 88.5802\\nL 15.9089 93.3824\\nL 14.6789 93.3824\\nL 14.6789 86.6566\\nL 15.6734 86.6566\\n' fill='#7F4C19'/>\\n</svg>\\n", "mols2grid-id": 55, "data-ID": 281, "data-Solubility": -4.4, "data-SMILES": "c(c(ccc1Br)ccc2)(c2)c1", "mols2grid-tooltip": "<strong>Name</strong>: 2-bromonaphthalene<br><strong>SMILES</strong>: c(c(ccc1Br)ccc2)(c2)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.285,79.7287 L 40.27,64.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.27,64.7362 L 72.77,83.4862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.77,83.4862 L 105.27,64.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.27,64.7362 L 115.45,70.6098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.45,70.6098 L 125.63,76.4833' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 105.27,64.7362 L 105.27,34.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 126.38 79.7587\\nQ 126.38 77.2087, 127.64 75.7837\\nQ 128.9 74.3588, 131.255 74.3588\\nQ 133.61 74.3588, 134.87 75.7837\\nQ 136.13 77.2087, 136.13 79.7587\\nQ 136.13 82.3387, 134.855 83.8087\\nQ 133.58 85.2638, 131.255 85.2638\\nQ 128.915 85.2638, 127.64 83.8087\\nQ 126.38 82.3537, 126.38 79.7587\\nM 131.255 84.0637\\nQ 132.875 84.0637, 133.745 82.9838\\nQ 134.63 81.8888, 134.63 79.7587\\nQ 134.63 77.6737, 133.745 76.6238\\nQ 132.875 75.5587, 131.255 75.5587\\nQ 129.635 75.5587, 128.75 76.6088\\nQ 127.88 77.6587, 127.88 79.7587\\nQ 127.88 81.9038, 128.75 82.9838\\nQ 129.635 84.0637, 131.255 84.0637\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 137.405 74.4787\\nL 138.845 74.4787\\nL 138.845 78.9937\\nL 144.275 78.9937\\nL 144.275 74.4787\\nL 145.715 74.4787\\nL 145.715 85.0987\\nL 144.275 85.0987\\nL 144.275 80.1937\\nL 138.845 80.1937\\nL 138.845 85.0987\\nL 137.405 85.0987\\nL 137.405 74.4787\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 56, "data-ID": 286, "data-Solubility": -0.29, "data-SMILES": "CCCC(O)C", "mols2grid-tooltip": "<strong>Name</strong>: 2-pentanol<br><strong>SMILES</strong>: CCCC(O)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.29</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 50.3575,47.3721 L 60.5375,41.4985' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 60.5375,41.4985 L 70.7175,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,35.625 L 103.217,54.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.217,54.375 L 129.202,39.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 103.217,54.375 L 103.217,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 103.217,54.375 L 129.195,69.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 30.7975 45.3675\\nL 32.2375 45.3675\\nL 32.2375 49.8825\\nL 37.6675 49.8825\\nL 37.6675 45.3675\\nL 39.1075 45.3675\\nL 39.1075 55.9875\\nL 37.6675 55.9875\\nL 37.6675 51.0825\\nL 32.2375 51.0825\\nL 32.2375 55.9875\\nL 30.7975 55.9875\\nL 30.7975 45.3675\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 39.8575 50.6475\\nQ 39.8575 48.0975, 41.1175 46.6725\\nQ 42.3775 45.2475, 44.7325 45.2475\\nQ 47.0875 45.2475, 48.3475 46.6725\\nQ 49.6075 48.0975, 49.6075 50.6475\\nQ 49.6075 53.2275, 48.3325 54.6975\\nQ 47.0575 56.1525, 44.7325 56.1525\\nQ 42.3925 56.1525, 41.1175 54.6975\\nQ 39.8575 53.2425, 39.8575 50.6475\\nM 44.7325 54.9525\\nQ 46.3525 54.9525, 47.2225 53.8725\\nQ 48.1075 52.7775, 48.1075 50.6475\\nQ 48.1075 48.5625, 47.2225 47.5125\\nQ 46.3525 46.4475, 44.7325 46.4475\\nQ 43.1125 46.4475, 42.2275 47.4975\\nQ 41.3575 48.5475, 41.3575 50.6475\\nQ 41.3575 52.7925, 42.2275 53.8725\\nQ 43.1125 54.9525, 44.7325 54.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 57, "data-ID": 291, "data-Solubility": -0.4, "data-SMILES": "OCC(C)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: 2,2-dimethyl-1-propanol<br><strong>SMILES</strong>: OCC(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.4</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.285,65.6175 L 40.27,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.27,50.625 L 40.27,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 40.27,50.625 L 72.77,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.77,69.375 L 72.77,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 72.77,69.375 L 105.27,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.27,50.625 L 115.45,56.4985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 115.45,56.4985 L 125.63,62.3721' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 126.38 65.6475\\nQ 126.38 63.0975, 127.64 61.6725\\nQ 128.9 60.2475, 131.255 60.2475\\nQ 133.61 60.2475, 134.87 61.6725\\nQ 136.13 63.0975, 136.13 65.6475\\nQ 136.13 68.2275, 134.855 69.6975\\nQ 133.58 71.1525, 131.255 71.1525\\nQ 128.915 71.1525, 127.64 69.6975\\nQ 126.38 68.2425, 126.38 65.6475\\nM 131.255 69.9525\\nQ 132.875 69.9525, 133.745 68.8725\\nQ 134.63 67.7775, 134.63 65.6475\\nQ 134.63 63.5625, 133.745 62.5125\\nQ 132.875 61.4475, 131.255 61.4475\\nQ 129.635 61.4475, 128.75 62.4975\\nQ 127.88 63.5475, 127.88 65.6475\\nQ 127.88 67.7925, 128.75 68.8725\\nQ 129.635 69.9525, 131.255 69.9525\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 137.405 60.3675\\nL 138.845 60.3675\\nL 138.845 64.8825\\nL 144.275 64.8825\\nL 144.275 60.3675\\nL 145.715 60.3675\\nL 145.715 70.9875\\nL 144.275 70.9875\\nL 144.275 66.0825\\nL 138.845 66.0825\\nL 138.845 70.9875\\nL 137.405 70.9875\\nL 137.405 60.3675\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 58, "data-ID": 296, "data-Solubility": -0.39, "data-SMILES": "CC(C)C(C)CO", "mols2grid-tooltip": "<strong>Name</strong>: 2,3-dimethylbutanol<br><strong>SMILES</strong>: CC(C)C(C)CO<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.39</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,78.2938 L 30.3291,64.991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.3291,64.991 L 30.3291,38.3721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.3291,64.991 L 59.1663,81.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.1663,81.6279 L 88.0034,64.991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.0034,64.991 L 116.841,81.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 116.841,81.6279 L 125.873,76.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 125.873,76.4163 L 134.906,71.2047' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 135.571 68.3517\\nQ 135.571 66.0891, 136.689 64.8247\\nQ 137.807 63.5603, 139.897 63.5603\\nQ 141.987 63.5603, 143.105 64.8247\\nQ 144.223 66.0891, 144.223 68.3517\\nQ 144.223 70.6409, 143.091 71.9452\\nQ 141.96 73.2362, 139.897 73.2362\\nQ 137.821 73.2362, 136.689 71.9452\\nQ 135.571 70.6542, 135.571 68.3517\\nM 139.897 72.1715\\nQ 141.334 72.1715, 142.106 71.2132\\nQ 142.892 70.2416, 142.892 68.3517\\nQ 142.892 66.5017, 142.106 65.57\\nQ 141.334 64.625, 139.897 64.625\\nQ 138.46 64.625, 137.674 65.5567\\nQ 136.902 66.4884, 136.902 68.3517\\nQ 136.902 70.2549, 137.674 71.2132\\nQ 138.46 72.1715, 139.897 72.1715\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 145.354 63.6668\\nL 146.632 63.6668\\nL 146.632 67.6729\\nL 151.45 67.6729\\nL 151.45 63.6668\\nL 152.727 63.6668\\nL 152.727 73.0898\\nL 151.45 73.0898\\nL 151.45 68.7377\\nL 146.632 68.7377\\nL 146.632 73.0898\\nL 145.354 73.0898\\nL 145.354 63.6668\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 59, "data-ID": 301, "data-Solubility": -1.14, "data-SMILES": "CC(C)CCCO", "mols2grid-tooltip": "<strong>Name</strong>: 4-methyl-1-pentanol<br><strong>SMILES</strong>: CC(C)CCCO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.14</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 50.3575,62.3721 L 60.5375,56.4985' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 60.5375,56.4985 L 70.7175,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,50.625 L 103.217,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 70.7175,50.625 L 70.7175,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.217,69.375 L 129.202,54.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 103.217,69.375 L 103.217,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 103.217,69.375 L 129.195,84.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 30.7975 60.3675\\nL 32.2375 60.3675\\nL 32.2375 64.8825\\nL 37.6675 64.8825\\nL 37.6675 60.3675\\nL 39.1075 60.3675\\nL 39.1075 70.9875\\nL 37.6675 70.9875\\nL 37.6675 66.0825\\nL 32.2375 66.0825\\nL 32.2375 70.9875\\nL 30.7975 70.9875\\nL 30.7975 60.3675\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 39.8575 65.6475\\nQ 39.8575 63.0975, 41.1175 61.6725\\nQ 42.3775 60.2475, 44.7325 60.2475\\nQ 47.0875 60.2475, 48.3475 61.6725\\nQ 49.6075 63.0975, 49.6075 65.6475\\nQ 49.6075 68.2275, 48.3325 69.6975\\nQ 47.0575 71.1525, 44.7325 71.1525\\nQ 42.3925 71.1525, 41.1175 69.6975\\nQ 39.8575 68.2425, 39.8575 65.6475\\nM 44.7325 69.9525\\nQ 46.3525 69.9525, 47.2225 68.8725\\nQ 48.1075 67.7775, 48.1075 65.6475\\nQ 48.1075 63.5625, 47.2225 62.5125\\nQ 46.3525 61.4475, 44.7325 61.4475\\nQ 43.1125 61.4475, 42.2275 62.4975\\nQ 41.3575 63.5475, 41.3575 65.6475\\nQ 41.3575 67.7925, 42.2275 68.8725\\nQ 43.1125 69.9525, 44.7325 69.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 60, "data-ID": 306, "data-Solubility": -0.62, "data-SMILES": "OC(C(C)(C)C)C", "mols2grid-tooltip": "<strong>Name</strong>: 3,3-dimethyl-2-butanol<br><strong>SMILES</strong>: OC(C(C)(C)C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.62</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.7955,72.2384 L 29.3539,67.8775' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 29.3539,67.8775 L 36.9123,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.9123,63.5165 L 61.0428,77.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 36.9123,63.5165 L 36.9123,41.2423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 61.0428,77.438 L 85.1732,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.1732,63.5165 L 109.304,77.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.304,77.438 L 133.434,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 133.434,63.5165 L 152.727,74.6481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 70.7501\\nL 8.34189 70.7501\\nL 8.34189 74.1024\\nL 12.3735 74.1024\\nL 12.3735 70.7501\\nL 13.4427 70.7501\\nL 13.4427 78.6352\\nL 12.3735 78.6352\\nL 12.3735 74.9934\\nL 8.34189 74.9934\\nL 8.34189 78.6352\\nL 7.27273 78.6352\\nL 7.27273 70.7501\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 13.9995 74.6704\\nQ 13.9995 72.7771, 14.9351 71.719\\nQ 15.8706 70.661, 17.6191 70.661\\nQ 19.3676 70.661, 20.3032 71.719\\nQ 21.2387 72.7771, 21.2387 74.6704\\nQ 21.2387 76.586, 20.292 77.6774\\nQ 19.3454 78.7577, 17.6191 78.7577\\nQ 15.8817 78.7577, 14.9351 77.6774\\nQ 13.9995 76.5971, 13.9995 74.6704\\nM 17.6191 77.8667\\nQ 18.8219 77.8667, 19.4679 77.0649\\nQ 20.125 76.2518, 20.125 74.6704\\nQ 20.125 73.1223, 19.4679 72.3427\\nQ 18.8219 71.552, 17.6191 71.552\\nQ 16.4163 71.552, 15.7592 72.3316\\nQ 15.1133 73.1112, 15.1133 74.6704\\nQ 15.1133 76.263, 15.7592 77.0649\\nQ 16.4163 77.8667, 17.6191 77.8667\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 61, "data-ID": 311, "data-Solubility": -1.55, "data-SMILES": "OC(CCCCC)C", "mols2grid-tooltip": "<strong>Name</strong>: 2-heptanol<br><strong>SMILES</strong>: OC(CCCCC)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.55</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.684,48.7593 L 33.7457,43.531' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 33.7457,43.531 L 42.8074,38.3027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 42.8074,38.3027 L 71.7372,54.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 71.7372,54.9929 L 71.7372,81.6973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 71.7372,54.9929 L 100.667,38.3027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.667,38.3027 L 129.597,54.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 129.597,54.9929 L 152.727,41.6474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 129.597,54.9929 L 129.597,81.6973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 46.9749\\nL 8.55454 46.9749\\nL 8.55454 50.9939\\nL 13.388 50.9939\\nL 13.388 46.9749\\nL 14.6699 46.9749\\nL 14.6699 56.4283\\nL 13.388 56.4283\\nL 13.388 52.0621\\nL 8.55454 52.0621\\nL 8.55454 56.4283\\nL 7.27273 56.4283\\nL 7.27273 46.9749\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.3375 51.6749\\nQ 15.3375 49.405, 16.459 48.1366\\nQ 17.5806 46.8681, 19.6769 46.8681\\nQ 21.7732 46.8681, 22.8948 48.1366\\nQ 24.0164 49.405, 24.0164 51.6749\\nQ 24.0164 53.9715, 22.8815 55.28\\nQ 21.7465 56.5752, 19.6769 56.5752\\nQ 17.594 56.5752, 16.459 55.28\\nQ 15.3375 53.9848, 15.3375 51.6749\\nM 19.6769 55.507\\nQ 21.119 55.507, 21.8934 54.5456\\nQ 22.6812 53.5709, 22.6812 51.6749\\nQ 22.6812 49.8189, 21.8934 48.8843\\nQ 21.119 47.9363, 19.6769 47.9363\\nQ 18.2349 47.9363, 17.4471 48.8709\\nQ 16.6727 49.8056, 16.6727 51.6749\\nQ 16.6727 53.5843, 17.4471 54.5456\\nQ 18.2349 55.507, 19.6769 55.507\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 62, "data-ID": 316, "data-Solubility": -1.6, "data-SMILES": "OCC(C)CC(C)C", "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethyl-1-pentanol<br><strong>SMILES</strong>: OCC(C)CC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,65.6175 L 47.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 47.5,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,69.375 L 90.1763,75.253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.1763,75.253 L 100.353,81.1309' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80,69.375 L 80,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-3 atom-6' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 112.5,50.625 L 138.485,65.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 101.102 84.41\\nQ 101.102 81.86, 102.362 80.435\\nQ 103.622 79.01, 105.977 79.01\\nQ 108.332 79.01, 109.592 80.435\\nQ 110.852 81.86, 110.852 84.41\\nQ 110.852 86.99, 109.577 88.46\\nQ 108.302 89.915, 105.977 89.915\\nQ 103.637 89.915, 102.362 88.46\\nQ 101.102 87.005, 101.102 84.41\\nM 105.977 88.715\\nQ 107.597 88.715, 108.467 87.635\\nQ 109.352 86.54, 109.352 84.41\\nQ 109.352 82.325, 108.467 81.275\\nQ 107.597 80.21, 105.977 80.21\\nQ 104.357 80.21, 103.472 81.26\\nQ 102.602 82.31, 102.602 84.41\\nQ 102.602 86.555, 103.472 87.635\\nQ 104.357 88.715, 105.977 88.715\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 112.127 79.13\\nL 113.567 79.13\\nL 113.567 83.645\\nL 118.997 83.645\\nL 118.997 79.13\\nL 120.438 79.13\\nL 120.438 89.75\\nL 118.997 89.75\\nL 118.997 84.845\\nL 113.567 84.845\\nL 113.567 89.75\\nL 112.127 89.75\\nL 112.127 79.13\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 63, "data-ID": 321, "data-Solubility": -1.22, "data-SMILES": "CC(C)C(O)(C)CC", "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethyl-3-pentanol<br><strong>SMILES</strong>: CC(C)C(O)(C)CC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.22</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 70.7175,20.625 L 70.7175,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,50.625 L 60.5375,56.4985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.5375,56.4985 L 50.3575,62.3721' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 70.7175,50.625 L 44.74,35.62' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 70.7175,50.625 L 103.217,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.217,69.375 L 129.202,54.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 103.217,69.375 L 103.217,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 103.217,69.375 L 129.195,84.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 30.7975 60.3675\\nL 32.2375 60.3675\\nL 32.2375 64.8825\\nL 37.6675 64.8825\\nL 37.6675 60.3675\\nL 39.1075 60.3675\\nL 39.1075 70.9875\\nL 37.6675 70.9875\\nL 37.6675 66.0825\\nL 32.2375 66.0825\\nL 32.2375 70.9875\\nL 30.7975 70.9875\\nL 30.7975 60.3675\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 39.8575 65.6475\\nQ 39.8575 63.0975, 41.1175 61.6725\\nQ 42.3775 60.2475, 44.7325 60.2475\\nQ 47.0875 60.2475, 48.3475 61.6725\\nQ 49.6075 63.0975, 49.6075 65.6475\\nQ 49.6075 68.2275, 48.3325 69.6975\\nQ 47.0575 71.1525, 44.7325 71.1525\\nQ 42.3925 71.1525, 41.1175 69.6975\\nQ 39.8575 68.2425, 39.8575 65.6475\\nM 44.7325 69.9525\\nQ 46.3525 69.9525, 47.2225 68.8725\\nQ 48.1075 67.7775, 48.1075 65.6475\\nQ 48.1075 63.5625, 47.2225 62.5125\\nQ 46.3525 61.4475, 44.7325 61.4475\\nQ 43.1125 61.4475, 42.2275 62.4975\\nQ 41.3575 63.5475, 41.3575 65.6475\\nQ 41.3575 67.7925, 42.2275 68.8725\\nQ 43.1125 69.9525, 44.7325 69.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 64, "data-ID": 326, "data-Solubility": -0.72, "data-SMILES": "CC(O)(C)C(C)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: 2,3,3-trimethyl-2-butanol<br><strong>SMILES</strong>: CC(O)(C)C(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.72</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,52.5003 L 28.0434,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.0434,40.5163 L 54.0217,55.5038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 54.0217,55.5038 L 54.0217,79.4837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 54.0217,55.5038 L 45.8865,60.2023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 45.8865,60.2023 L 37.7513,64.9009' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 54.0217,55.5038 L 80,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,40.5163 L 105.978,55.5038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.978,55.5038 L 131.957,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.957,40.5163 L 152.727,52.5003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 22.1163 63.3012\\nL 23.2674 63.3012\\nL 23.2674 66.9102\\nL 27.6077 66.9102\\nL 27.6077 63.3012\\nL 28.7588 63.3012\\nL 28.7588 71.7902\\nL 27.6077 71.7902\\nL 27.6077 67.8694\\nL 23.2674 67.8694\\nL 23.2674 71.7902\\nL 22.1163 71.7902\\nL 22.1163 63.3012\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 29.3583 67.5217\\nQ 29.3583 65.4834, 30.3654 64.3444\\nQ 31.3726 63.2053, 33.255 63.2053\\nQ 35.1375 63.2053, 36.1446 64.3444\\nQ 37.1518 65.4834, 37.1518 67.5217\\nQ 37.1518 69.584, 36.1326 70.759\\nQ 35.1135 71.922, 33.255 71.922\\nQ 31.3846 71.922, 30.3654 70.759\\nQ 29.3583 69.596, 29.3583 67.5217\\nM 33.255 70.9628\\nQ 34.55 70.9628, 35.2454 70.0996\\nQ 35.9528 69.2243, 35.9528 67.5217\\nQ 35.9528 65.8551, 35.2454 65.0158\\nQ 34.55 64.1645, 33.255 64.1645\\nQ 31.9601 64.1645, 31.2527 65.0038\\nQ 30.5573 65.8431, 30.5573 67.5217\\nQ 30.5573 69.2363, 31.2527 70.0996\\nQ 31.9601 70.9628, 33.255 70.9628\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 65, "data-ID": 331, "data-Solubility": -1.6, "data-SMILES": "CCC(C)(O)CCCC", "mols2grid-tooltip": "<strong>Name</strong>: 3-methyl-3-heptanol<br><strong>SMILES</strong>: CCC(C)(O)CCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.0026,60.662 L 20.5461,58.0406' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.5461,58.0406 L 25.0895,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.0895,55.4192 L 39.5947,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.5947,63.7875 L 54.0999,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 54.0999,55.4192 L 68.6051,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.6051,63.7875 L 83.1102,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 83.1102,55.4192 L 97.6143,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.6143,63.7875 L 112.119,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.119,55.4192 L 126.625,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 126.625,63.7875 L 141.13,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 141.13,55.4192 L 152.727,62.1105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 59.7674\\nL 7.91542 59.7674\\nL 7.91542 61.7825\\nL 10.3389 61.7825\\nL 10.3389 59.7674\\nL 10.9816 59.7674\\nL 10.9816 64.5072\\nL 10.3389 64.5072\\nL 10.3389 62.318\\nL 7.91542 62.318\\nL 7.91542 64.5072\\nL 7.27273 64.5072\\nL 7.27273 59.7674\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 11.3163 62.1239\\nQ 11.3163 60.9858, 11.8787 60.3498\\nQ 12.441 59.7138, 13.4921 59.7138\\nQ 14.5432 59.7138, 15.1055 60.3498\\nQ 15.6679 60.9858, 15.6679 62.1239\\nQ 15.6679 63.2754, 15.0988 63.9315\\nQ 14.5298 64.5808, 13.4921 64.5808\\nQ 12.4477 64.5808, 11.8787 63.9315\\nQ 11.3163 63.2821, 11.3163 62.1239\\nM 13.4921 64.0453\\nQ 14.2151 64.0453, 14.6034 63.5633\\nQ 14.9984 63.0745, 14.9984 62.1239\\nQ 14.9984 61.1933, 14.6034 60.7247\\nQ 14.2151 60.2494, 13.4921 60.2494\\nQ 12.7691 60.2494, 12.3741 60.718\\nQ 11.9858 61.1866, 11.9858 62.1239\\nQ 11.9858 63.0812, 12.3741 63.5633\\nQ 12.7691 64.0453, 13.4921 64.0453\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 66, "data-ID": 336, "data-Solubility": -3.63, "data-SMILES": "OCCCCCCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: 1-decanol<br><strong>SMILES</strong>: OCCCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.63</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.703,103.051 L 133.72,91.275' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 133.72,91.275 L 133.737,79.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 133.737,79.4993 L 101.726,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.726,60.9308 L 101.726,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.3289,55.3831 L 94.3289,29.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-8' d='M 101.726,60.9308 L 69.6974,79.4228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.726,23.9466 L 69.6974,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.6974,5.45455 L 37.6692,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.5917,14.6342 L 46.1719,27.5786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.6692,23.9466 L 37.6692,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 37.6692,23.9466 L 12.0441,9.15296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-6' d='M 69.6974,79.4228 L 37.6692,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-6' d='M 68.5917,70.2432 L 46.1719,57.2988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.887 109.116\\nQ 128.887 106.601, 130.13 105.196\\nQ 131.372 103.79, 133.695 103.79\\nQ 136.017 103.79, 137.26 105.196\\nQ 138.503 106.601, 138.503 109.116\\nQ 138.503 111.661, 137.245 113.11\\nQ 135.988 114.545, 133.695 114.545\\nQ 131.387 114.545, 130.13 113.11\\nQ 128.887 111.675, 128.887 109.116\\nM 133.695 113.362\\nQ 135.293 113.362, 136.151 112.297\\nQ 137.023 111.217, 137.023 109.116\\nQ 137.023 107.06, 136.151 106.024\\nQ 135.293 104.974, 133.695 104.974\\nQ 132.097 104.974, 131.224 106.01\\nQ 130.366 107.045, 130.366 109.116\\nQ 130.366 111.232, 131.224 112.297\\nQ 132.097 113.362, 133.695 113.362\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 139.76 103.909\\nL 141.18 103.909\\nL 141.18 108.362\\nL 146.536 108.362\\nL 146.536 103.909\\nL 147.956 103.909\\nL 147.956 114.383\\nL 146.536 114.383\\nL 146.536 109.545\\nL 141.18 109.545\\nL 141.18 114.383\\nL 139.76 114.383\\nL 139.76 103.909\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 67, "data-ID": 341, "data-Solubility": -1.2, "data-SMILES": "OCc(ccc(c1)C)c1", "mols2grid-tooltip": "<strong>Name</strong>: p-methylbenzyl_alcohol<br><strong>SMILES</strong>: OCc(ccc(c1)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.2</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.611,90.4201 L 102.432,84.5438' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.432,84.5438 L 92.2537,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2537,78.6675 L 92.2537,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.7537,73.0425 L 84.7537,46.7925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 92.2537,78.6675 L 59.7788,97.4175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2537,41.1675 L 102.432,35.2912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.432,35.2912 L 112.611,29.4149' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 92.2537,41.1675 L 59.7788,22.4175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.7788,22.4175 L 27.3038,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.6576,31.7251 L 35.9251,44.8501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 27.3038,41.1675 L 27.3038,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 59.7788,97.4175 L 27.3038,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 58.6576,88.1099 L 35.9251,74.9849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 113.361 93.6975\\nQ 113.361 91.1475, 114.621 89.7225\\nQ 115.881 88.2975, 118.236 88.2975\\nQ 120.591 88.2975, 121.851 89.7225\\nQ 123.111 91.1475, 123.111 93.6975\\nQ 123.111 96.2775, 121.836 97.7475\\nQ 120.561 99.2025, 118.236 99.2025\\nQ 115.896 99.2025, 114.621 97.7475\\nQ 113.361 96.2925, 113.361 93.6975\\nM 118.236 98.0025\\nQ 119.856 98.0025, 120.726 96.9225\\nQ 121.611 95.8275, 121.611 93.6975\\nQ 121.611 91.6125, 120.726 90.5625\\nQ 119.856 89.4975, 118.236 89.4975\\nQ 116.616 89.4975, 115.731 90.5475\\nQ 114.861 91.5975, 114.861 93.6975\\nQ 114.861 95.8425, 115.731 96.9225\\nQ 116.616 98.0025, 118.236 98.0025\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 124.386 88.4175\\nL 125.826 88.4175\\nL 125.826 92.9325\\nL 131.256 92.9325\\nL 131.256 88.4175\\nL 132.696 88.4175\\nL 132.696 99.0375\\nL 131.256 99.0375\\nL 131.256 94.1325\\nL 125.826 94.1325\\nL 125.826 99.0375\\nL 124.386 99.0375\\nL 124.386 88.4175\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 113.361 26.1975\\nQ 113.361 23.6475, 114.621 22.2225\\nQ 115.881 20.7975, 118.236 20.7975\\nQ 120.591 20.7975, 121.851 22.2225\\nQ 123.111 23.6475, 123.111 26.1975\\nQ 123.111 28.7775, 121.836 30.2475\\nQ 120.561 31.7025, 118.236 31.7025\\nQ 115.896 31.7025, 114.621 30.2475\\nQ 113.361 28.7925, 113.361 26.1975\\nM 118.236 30.5025\\nQ 119.856 30.5025, 120.726 29.4225\\nQ 121.611 28.3275, 121.611 26.1975\\nQ 121.611 24.1125, 120.726 23.0625\\nQ 119.856 21.9975, 118.236 21.9975\\nQ 116.616 21.9975, 115.731 23.0475\\nQ 114.861 24.0975, 114.861 26.1975\\nQ 114.861 28.3425, 115.731 29.4225\\nQ 116.616 30.5025, 118.236 30.5025\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 124.386 20.9175\\nL 125.826 20.9175\\nL 125.826 25.4325\\nL 131.256 25.4325\\nL 131.256 20.9175\\nL 132.696 20.9175\\nL 132.696 31.5375\\nL 131.256 31.5375\\nL 131.256 26.6325\\nL 125.826 26.6325\\nL 125.826 31.5375\\nL 124.386 31.5375\\nL 124.386 20.9175\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 68, "data-ID": 346, "data-Solubility": 0.62, "data-SMILES": "Oc(c(O)ccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: 1,2-benzenediol<br><strong>SMILES</strong>: Oc(c(O)ccc1)c1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.62</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.872,60.9697 L 124.872,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.47,55.4182 L 117.47,29.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 92.8215,79.4747 L 124.872,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.872,23.9596 L 92.8215,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8215,5.45455 L 60.7708,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.715,14.6406 L 69.2795,27.5941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.7708,23.9596 L 35.1277,9.15555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 60.7708,23.9596 L 60.7708,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.7708,60.9697 L 92.8215,79.4747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.2795,57.3351 L 91.715,70.2887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.8215,79.4747 L 92.8215,91.2587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.8215,91.2587 L 92.8215,103.043' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 88.0102 109.112\\nQ 88.0102 106.596, 89.2538 105.189\\nQ 90.4973 103.783, 92.8215 103.783\\nQ 95.1458 103.783, 96.3893 105.189\\nQ 97.6328 106.596, 97.6328 109.112\\nQ 97.6328 111.659, 96.3745 113.109\\nQ 95.1161 114.545, 92.8215 114.545\\nQ 90.5121 114.545, 89.2538 113.109\\nQ 88.0102 111.673, 88.0102 109.112\\nM 92.8215 113.361\\nQ 94.4204 113.361, 95.279 112.295\\nQ 96.1524 111.215, 96.1524 109.112\\nQ 96.1524 107.055, 95.279 106.018\\nQ 94.4204 104.967, 92.8215 104.967\\nQ 91.2227 104.967, 90.3493 106.004\\nQ 89.4906 107.04, 89.4906 109.112\\nQ 89.4906 111.229, 90.3493 112.295\\nQ 91.2227 113.361, 92.8215 113.361\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 98.8912 103.901\\nL 100.312 103.901\\nL 100.312 108.357\\nL 105.671 108.357\\nL 105.671 103.901\\nL 107.093 103.901\\nL 107.093 114.383\\nL 105.671 114.383\\nL 105.671 109.542\\nL 100.312 109.542\\nL 100.312 114.383\\nL 98.8912 114.383\\nL 98.8912 103.901\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 69, "data-ID": 351, "data-Solubility": -0.68, "data-SMILES": "c1ccc(C)cc1O", "mols2grid-tooltip": "<strong>Name</strong>: m-cresol<br><strong>SMILES</strong>: c1ccc(C)cc1O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.68</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.627,103.471 L 105.717,97.7499' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.717,97.7499 L 95.8068,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8068,92.0286 L 95.8068,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.5046,86.5519 L 88.5046,60.9943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 95.8068,92.0286 L 64.1883,110.284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.8068,55.5177 L 64.1883,37.2622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 95.8068,55.5177 L 127.406,37.1868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1883,37.2622 L 32.5699,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.0968,46.3244 L 40.9638,59.1032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.5699,55.5177 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 32.5699,92.0286 L 7.27273,106.633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 64.1883,110.284 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 63.0968,101.222 L 40.9638,88.4431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.406,37.1868 L 127.364,7.97806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 127.406,37.1868 L 152.727,51.7473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.358 106.662\\nQ 116.358 104.179, 117.584 102.792\\nQ 118.811 101.405, 121.104 101.405\\nQ 123.397 101.405, 124.624 102.792\\nQ 125.85 104.179, 125.85 106.662\\nQ 125.85 109.174, 124.609 110.605\\nQ 123.368 112.022, 121.104 112.022\\nQ 118.826 112.022, 117.584 110.605\\nQ 116.358 109.189, 116.358 106.662\\nM 121.104 110.854\\nQ 122.681 110.854, 123.528 109.802\\nQ 124.39 108.736, 124.39 106.662\\nQ 124.39 104.632, 123.528 103.61\\nQ 122.681 102.573, 121.104 102.573\\nQ 119.527 102.573, 118.665 103.595\\nQ 117.818 104.618, 117.818 106.662\\nQ 117.818 108.751, 118.665 109.802\\nQ 119.527 110.854, 121.104 110.854\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 127.092 101.521\\nL 128.494 101.521\\nL 128.494 105.917\\nL 133.781 105.917\\nL 133.781 101.521\\nL 135.183 101.521\\nL 135.183 111.861\\nL 133.781 111.861\\nL 133.781 107.086\\nL 128.494 107.086\\nL 128.494 111.861\\nL 127.092 111.861\\nL 127.092 101.521\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 70, "data-ID": 356, "data-Solubility": -2.22, "data-SMILES": "Oc(c(ccc1C)C(C)C)c1", "mols2grid-tooltip": "<strong>Name</strong>: thymol<br><strong>SMILES</strong>: Oc(c(ccc1C)C(C)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.22</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.0113,34.6204 L 32.7025,39.6726' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.7025,39.6726 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,44.7248 L 41.3938,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.8119,49.5294 L 47.8119,71.951' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 41.3938,44.7248 L 69.5202,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 41.3938,76.7557 L 69.5202,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.5202,92.7732 L 97.2552,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.4707,84.8127 L 89.8852,73.6004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.2552,76.7557 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 97.2552,76.7557 L 124.99,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.2552,44.7248 L 124.99,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 69.5202,28.7072 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 70.4707,36.6677 L 89.8852,47.88' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.99,28.7072 L 152.727,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 125.941,36.6678 L 145.357,47.8801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,44.7248 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 124.99,92.7732 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 125.941,84.8126 L 145.357,73.6003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 27.3295\\nL 8.50501 27.3295\\nL 8.50501 31.1932\\nL 13.1518 31.1932\\nL 13.1518 27.3295\\nL 14.384 27.3295\\nL 14.384 36.4176\\nL 13.1518 36.4176\\nL 13.1518 32.2201\\nL 8.50501 32.2201\\nL 8.50501 36.4176\\nL 7.27273 36.4176\\nL 7.27273 27.3295\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.0259 31.8479\\nQ 15.0259 29.6657, 16.1041 28.4462\\nQ 17.1824 27.2268, 19.1977 27.2268\\nQ 21.213 27.2268, 22.2912 28.4462\\nQ 23.3694 29.6657, 23.3694 31.8479\\nQ 23.3694 34.0557, 22.2784 35.3137\\nQ 21.1873 36.5588, 19.1977 36.5588\\nQ 17.1952 36.5588, 16.1041 35.3137\\nQ 15.0259 34.0685, 15.0259 31.8479\\nM 19.1977 35.5319\\nQ 20.584 35.5319, 21.3285 34.6077\\nQ 22.0858 33.6706, 22.0858 31.8479\\nQ 22.0858 30.0636, 21.3285 29.1651\\nQ 20.584 28.2537, 19.1977 28.2537\\nQ 17.8113 28.2537, 17.054 29.1522\\nQ 16.3095 30.0508, 16.3095 31.8479\\nQ 16.3095 33.6834, 17.054 34.6077\\nQ 17.8113 35.5319, 19.1977 35.5319\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 71, "data-ID": 361, "data-Solubility": -2.28, "data-SMILES": "Oc(ccc(c1ccc2)c2)c1", "mols2grid-tooltip": "<strong>Name</strong>: 2-naphthol<br><strong>SMILES</strong>: Oc(ccc(c1ccc2)c2)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.28</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 19.0775,64.7288 L 45.0625,49.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 45.0625,49.7362 L 77.5625,68.4862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.5625,68.4862 L 110.062,49.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.188,52.9844 L 118.368,58.8579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 118.368,58.8579 L 128.548,64.7314' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 111.937,46.4881 L 122.117,52.3616' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 122.117,52.3616 L 132.297,58.2352' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 131.172 64.7588\\nQ 131.172 62.2088, 132.432 60.7838\\nQ 133.692 59.3588, 136.047 59.3588\\nQ 138.402 59.3588, 139.662 60.7838\\nQ 140.922 62.2088, 140.922 64.7588\\nQ 140.922 67.3388, 139.647 68.8088\\nQ 138.372 70.2638, 136.047 70.2638\\nQ 133.707 70.2638, 132.432 68.8088\\nQ 131.172 67.3538, 131.172 64.7588\\nM 136.047 69.0638\\nQ 137.667 69.0638, 138.537 67.9838\\nQ 139.422 66.8888, 139.422 64.7588\\nQ 139.422 62.6738, 138.537 61.6238\\nQ 137.667 60.5588, 136.047 60.5588\\nQ 134.427 60.5588, 133.542 61.6088\\nQ 132.672 62.6588, 132.672 64.7588\\nQ 132.672 66.9038, 133.542 67.9838\\nQ 134.427 69.0638, 136.047 69.0638\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 72, "data-ID": 366, "data-Solubility": -0.01, "data-SMILES": "CCCC=O", "mols2grid-tooltip": "<strong>Name</strong>: butanal<br><strong>SMILES</strong>: CCCC=O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.01</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.6026,62.4204 L 18.8102,59.4158' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.8102,59.4158 L 24.0177,56.4112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 11.6853,59.0972 L 16.8928,56.0926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8928,56.0926 L 22.1004,53.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,54.7496 L 39.6843,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.6843,64.3411 L 56.3096,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 56.3096,54.7496 L 72.9349,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.9349,64.3411 L 89.5602,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.5602,54.7496 L 106.184,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 106.184,64.3411 L 122.809,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.809,54.7496 L 139.435,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 139.435,64.3411 L 152.727,56.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 62.4343\\nQ 7.27273 61.1299, 7.91728 60.4009\\nQ 8.56183 59.672, 9.76652 59.672\\nQ 10.9712 59.672, 11.6158 60.4009\\nQ 12.2603 61.1299, 12.2603 62.4343\\nQ 12.2603 63.7541, 11.6081 64.5061\\nQ 10.9559 65.2504, 9.76652 65.2504\\nQ 8.5695 65.2504, 7.91728 64.5061\\nQ 7.27273 63.7618, 7.27273 62.4343\\nM 9.76652 64.6365\\nQ 10.5952 64.6365, 11.0403 64.0841\\nQ 11.493 63.5239, 11.493 62.4343\\nQ 11.493 61.3677, 11.0403 60.8306\\nQ 10.5952 60.2858, 9.76652 60.2858\\nQ 8.93781 60.2858, 8.48509 60.823\\nQ 8.04005 61.3601, 8.04005 62.4343\\nQ 8.04005 63.5316, 8.48509 64.0841\\nQ 8.93781 64.6365, 9.76652 64.6365\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 73, "data-ID": 371, "data-Solubility": -3.17, "data-SMILES": "O=CCCCCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: nonanal<br><strong>SMILES</strong>: O=CCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.17</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.546,105.415 L 110.831,95.8256' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 110.831,95.8256 L 115.117,86.2357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.371,102.656 L 104.657,93.0663' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.657,93.0663 L 108.942,83.4765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.029,84.8561 L 92.2342,57.4909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2342,57.4909 L 96.5104,44.3291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.5104,44.3291 L 100.787,31.1673' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2342,54.1095 L 58.4194,60.8724' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2342,60.8724 L 58.4194,54.1095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.4417,21.5227 L 86.3842,13.4886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.3842,13.4886 L 75.3268,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3392,2.71892 L 49.9583,28.0665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.3144,8.19017 L 45.983,22.5952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 58.4194,57.4909 L 47.9707,25.3309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 96.5963 109.581\\nQ 96.5963 107.282, 97.7325 105.997\\nQ 98.8686 104.712, 100.992 104.712\\nQ 103.116 104.712, 104.252 105.997\\nQ 105.388 107.282, 105.388 109.581\\nQ 105.388 111.908, 104.238 113.233\\nQ 103.089 114.545, 100.992 114.545\\nQ 98.8822 114.545, 97.7325 113.233\\nQ 96.5963 111.921, 96.5963 109.581\\nM 100.992 113.463\\nQ 102.453 113.463, 103.237 112.49\\nQ 104.036 111.502, 104.036 109.581\\nQ 104.036 107.701, 103.237 106.755\\nQ 102.453 105.794, 100.992 105.794\\nQ 99.5314 105.794, 98.7334 106.741\\nQ 97.9489 107.688, 97.9489 109.581\\nQ 97.9489 111.516, 98.7334 112.49\\nQ 99.5314 113.463, 100.992 113.463\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 98.287 25.3579\\nQ 98.287 23.0585, 99.4232 21.7735\\nQ 100.559 20.4886, 102.683 20.4886\\nQ 104.807 20.4886, 105.943 21.7735\\nQ 107.079 23.0585, 107.079 25.3579\\nQ 107.079 27.6844, 105.929 29.0099\\nQ 104.779 30.3219, 102.683 30.3219\\nQ 100.573 30.3219, 99.4232 29.0099\\nQ 98.287 27.6979, 98.287 25.3579\\nM 102.683 29.2398\\nQ 104.144 29.2398, 104.928 28.266\\nQ 105.726 27.2786, 105.726 25.3579\\nQ 105.726 23.4778, 104.928 22.531\\nQ 104.144 21.5707, 102.683 21.5707\\nQ 101.222 21.5707, 100.424 22.5175\\nQ 99.6396 23.4643, 99.6396 25.3579\\nQ 99.6396 27.2921, 100.424 28.266\\nQ 101.222 29.2398, 102.683 29.2398\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 74, "data-ID": 376, "data-Solubility": -0.1, "data-SMILES": "O=CC(OC=C1)=C1", "mols2grid-tooltip": "<strong>Name</strong>: furfural<br><strong>SMILES</strong>: O=CC(OC=C1)=C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.1</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.279,86.3625 L 109.1,80.4862' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.1,80.4862 L 98.9212,74.6099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.529,92.8577 L 105.35,86.9814' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.35,86.9814 L 95.1713,81.1051' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 97.0463,77.8575 L 97.0463,40.3575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 97.0463,77.8575 L 64.5713,96.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.0463,40.3575 L 64.5713,21.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.5713,21.6075 L 32.0963,40.3575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.0963,40.3575 L 32.0963,77.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 64.5713,96.6075 L 32.0963,77.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.154 92.8875\\nQ 118.154 90.3375, 119.414 88.9125\\nQ 120.674 87.4875, 123.029 87.4875\\nQ 125.384 87.4875, 126.644 88.9125\\nQ 127.904 90.3375, 127.904 92.8875\\nQ 127.904 95.4675, 126.629 96.9375\\nQ 125.354 98.3925, 123.029 98.3925\\nQ 120.689 98.3925, 119.414 96.9375\\nQ 118.154 95.4825, 118.154 92.8875\\nM 123.029 97.1925\\nQ 124.649 97.1925, 125.519 96.1125\\nQ 126.404 95.0175, 126.404 92.8875\\nQ 126.404 90.8025, 125.519 89.7525\\nQ 124.649 88.6875, 123.029 88.6875\\nQ 121.409 88.6875, 120.524 89.7375\\nQ 119.654 90.7875, 119.654 92.8875\\nQ 119.654 95.0325, 120.524 96.1125\\nQ 121.409 97.1925, 123.029 97.1925\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 75, "data-ID": 381, "data-Solubility": -0.6, "data-SMILES": "O=C(CCCC1)C1", "mols2grid-tooltip": "<strong>Name</strong>: cyclohexanone<br><strong>SMILES</strong>: O=C(CCCC1)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.4194,71.396 L 20.299,68.0037' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.299,68.0037 L 26.1785,64.6114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 12.2547,67.6441 L 18.1342,64.2518' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.1342,64.2518 L 24.0137,60.8595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.0961,62.7354 L 43.8667,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 25.0961,62.7354 L 25.0961,45.4088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.8667,73.5646 L 62.6372,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.6372,62.7354 L 81.4078,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.4078,73.5646 L 100.178,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.178,62.7354 L 118.947,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 118.947,73.5646 L 137.718,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 137.718,62.7354 L 152.727,71.3945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 71.4118\\nQ 7.27273 69.939, 8.00045 69.116\\nQ 8.72817 68.293, 10.0883 68.293\\nQ 11.4485 68.293, 12.1762 69.116\\nQ 12.9039 69.939, 12.9039 71.4118\\nQ 12.9039 72.9019, 12.1675 73.7509\\nQ 11.4311 74.5912, 10.0883 74.5912\\nQ 8.73683 74.5912, 8.00045 73.7509\\nQ 7.27273 72.9105, 7.27273 71.4118\\nM 10.0883 73.8982\\nQ 11.024 73.8982, 11.5264 73.2744\\nQ 12.0376 72.642, 12.0376 71.4118\\nQ 12.0376 70.2076, 11.5264 69.6011\\nQ 11.024 68.986, 10.0883 68.986\\nQ 9.15267 68.986, 8.64153 69.5925\\nQ 8.13906 70.1989, 8.13906 71.4118\\nQ 8.13906 72.6506, 8.64153 73.2744\\nQ 9.15267 73.8982, 10.0883 73.8982\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 76, "data-ID": 386, "data-Solubility": -2.58, "data-SMILES": "O=C(CCCCCCC)C", "mols2grid-tooltip": "<strong>Name</strong>: 2-nonanone<br><strong>SMILES</strong>: O=C(CCCCCCC)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.58</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 110.6,81.9151 L 120.779,87.7914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.779,87.7914 L 130.958,93.6677' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.35,75.4199 L 124.529,81.2962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.529,81.2962 L 134.707,87.1725' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 112.475,78.6675 L 112.475,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,97.4175 L 112.475,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.35,37.9199 L 78.125,25.6651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.6,44.4151 L 81.875,19.1699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,22.4175 L 47.525,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3999,37.9199 L 39.2212,32.0436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 39.2212,32.0436 L 29.0424,26.1673' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.6501,44.4151 L 35.4714,38.5388' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 35.4714,38.5388 L 25.2926,32.6625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 47.525,41.1675 L 47.525,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 45.65,81.9151 L 81.875,94.1699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.4,75.4199 L 78.125,100.665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 133.582 93.6975\\nQ 133.582 91.1475, 134.842 89.7225\\nQ 136.102 88.2975, 138.457 88.2975\\nQ 140.812 88.2975, 142.072 89.7225\\nQ 143.332 91.1475, 143.332 93.6975\\nQ 143.332 96.2775, 142.057 97.7475\\nQ 140.782 99.2025, 138.457 99.2025\\nQ 136.117 99.2025, 134.842 97.7475\\nQ 133.582 96.2925, 133.582 93.6975\\nM 138.457 98.0025\\nQ 140.077 98.0025, 140.947 96.9225\\nQ 141.832 95.8275, 141.832 93.6975\\nQ 141.832 91.6125, 140.947 90.5625\\nQ 140.077 89.4975, 138.457 89.4975\\nQ 136.837 89.4975, 135.952 90.5475\\nQ 135.082 91.5975, 135.082 93.6975\\nQ 135.082 95.8425, 135.952 96.9225\\nQ 136.837 98.0025, 138.457 98.0025\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 16.6675 26.1975\\nQ 16.6675 23.6475, 17.9275 22.2225\\nQ 19.1875 20.7975, 21.5425 20.7975\\nQ 23.8975 20.7975, 25.1575 22.2225\\nQ 26.4175 23.6475, 26.4175 26.1975\\nQ 26.4175 28.7775, 25.1425 30.2475\\nQ 23.8675 31.7025, 21.5425 31.7025\\nQ 19.2025 31.7025, 17.9275 30.2475\\nQ 16.6675 28.7925, 16.6675 26.1975\\nM 21.5425 30.5025\\nQ 23.1625 30.5025, 24.0325 29.4225\\nQ 24.9175 28.3275, 24.9175 26.1975\\nQ 24.9175 24.1125, 24.0325 23.0625\\nQ 23.1625 21.9975, 21.5425 21.9975\\nQ 19.9225 21.9975, 19.0375 23.0475\\nQ 18.1675 24.0975, 18.1675 26.1975\\nQ 18.1675 28.3425, 19.0375 29.4225\\nQ 19.9225 30.5025, 21.5425 30.5025\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 77, "data-ID": 391, "data-Solubility": -0.99, "data-SMILES": "C1(=O)C=CC(=O)C=C1", "mols2grid-tooltip": "<strong>Name</strong>: 2,5-cyclohexadiene-1,4-dione<br><strong>SMILES</strong>: C1(=O)C=CC(=O)C=C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.99</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 109.678,40.407 L 103.753,43.8147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.753,43.8147 L 97.8272,47.2224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.853,44.1877 L 105.927,47.5954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.927,47.5954 L 100.001,51.0031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.9143,49.1127 L 80.04,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-8' d='M 98.9143,49.1127 L 98.8823,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.04,38.1644 L 80.04,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 75.6787,34.8934 L 75.6787,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 80.04,38.1644 L 61.1555,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.04,16.3578 L 61.1555,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.1555,5.45455 L 42.271,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.5035,10.867 L 47.2844,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 42.271,16.3578 L 42.271,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 61.1555,49.0676 L 42.271,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 60.5035,43.6552 L 47.2844,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 98.8823,70.9309 L 117.729,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 99.5153,76.3457 L 112.708,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-8 atom-13' d='M 98.8823,70.9309 L 79.96,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 117.729,81.901 L 117.655,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 117.655,103.708 L 98.7311,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 112.649,101.549 L 99.4022,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 98.7311,114.545 L 79.8844,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-12' d='M 79.96,81.7702 L 79.8844,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-12' d='M 84.31,85.0563 L 84.257,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 111.202 40.4337\\nQ 111.202 38.9509, 111.934 38.1222\\nQ 112.667 37.2936, 114.036 37.2936\\nQ 115.406 37.2936, 116.139 38.1222\\nQ 116.871 38.9509, 116.871 40.4337\\nQ 116.871 41.934, 116.13 42.7888\\nQ 115.388 43.6349, 114.036 43.6349\\nQ 112.676 43.6349, 111.934 42.7888\\nQ 111.202 41.9427, 111.202 40.4337\\nM 114.036 42.9371\\nQ 114.978 42.9371, 115.484 42.3091\\nQ 115.999 41.6723, 115.999 40.4337\\nQ 115.999 39.2213, 115.484 38.6107\\nQ 114.978 37.9914, 114.036 37.9914\\nQ 113.094 37.9914, 112.58 38.602\\nQ 112.074 39.2125, 112.074 40.4337\\nQ 112.074 41.681, 112.58 42.3091\\nQ 113.094 42.9371, 114.036 42.9371\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 78, "data-ID": 396, "data-Solubility": -3.12, "data-SMILES": "O=C(c(cccc1)c1)c(cccc2)c2", "mols2grid-tooltip": "<strong>Name</strong>: benzophenone<br><strong>SMILES</strong>: O=C(c(cccc1)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.12</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.577,65.0589 L 27.8769,59.6932' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.8769,59.6932 L 37.1768,54.3275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.1529,59.1243 L 24.4528,53.7586' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 24.4528,53.7586 L 33.7527,48.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,51.3602 L 35.4647,40.5278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,40.5278 L 35.4647,29.6954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.4647,51.3602 L 65.1549,68.4891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,68.4891 L 94.8451,51.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 94.8451,51.3602 L 124.535,68.4891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 126.247,71.4564 L 135.547,66.0907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.547,66.0907 L 144.847,60.725' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 122.823,65.5218 L 132.123,60.1561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 132.123,60.1561 L 141.423,54.7903' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 124.535,68.4891 L 124.535,79.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 124.535,79.3968 L 124.535,90.3046' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 65.0839\\nQ 7.27273 62.7543, 8.42379 61.4525\\nQ 9.57486 60.1507, 11.7263 60.1507\\nQ 13.8777 60.1507, 15.0287 61.4525\\nQ 16.1798 62.7543, 16.1798 65.0839\\nQ 16.1798 67.4408, 15.015 68.7837\\nQ 13.8502 70.1129, 11.7263 70.1129\\nQ 9.58856 70.1129, 8.42379 68.7837\\nQ 7.27273 67.4545, 7.27273 65.0839\\nM 11.7263 69.0167\\nQ 13.2062 69.0167, 14.001 68.0301\\nQ 14.8095 67.0297, 14.8095 65.0839\\nQ 14.8095 63.1791, 14.001 62.2199\\nQ 13.2062 61.247, 11.7263 61.247\\nQ 10.2463 61.247, 9.43783 62.2062\\nQ 8.64304 63.1654, 8.64304 65.0839\\nQ 8.64304 67.0434, 9.43783 68.0301\\nQ 10.2463 69.0167, 11.7263 69.0167\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 31.0112 23.9812\\nQ 31.0112 21.6517, 32.1622 20.3499\\nQ 33.3133 19.0481, 35.4647 19.0481\\nQ 37.6161 19.0481, 38.7672 20.3499\\nQ 39.9182 21.6517, 39.9182 23.9812\\nQ 39.9182 26.3382, 38.7535 27.6811\\nQ 37.5887 29.0103, 35.4647 29.0103\\nQ 33.327 29.0103, 32.1622 27.6811\\nQ 31.0112 26.3519, 31.0112 23.9812\\nM 35.4647 27.914\\nQ 36.9447 27.914, 37.7394 26.9274\\nQ 38.5479 25.9271, 38.5479 23.9812\\nQ 38.5479 22.0765, 37.7394 21.1173\\nQ 36.9447 20.1443, 35.4647 20.1443\\nQ 33.9848 20.1443, 33.1763 21.1036\\nQ 32.3815 22.0628, 32.3815 23.9812\\nQ 32.3815 25.9408, 33.1763 26.9274\\nQ 33.9848 27.914, 35.4647 27.914\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 41.083 19.1577\\nL 42.3985 19.1577\\nL 42.3985 23.2824\\nL 47.3591 23.2824\\nL 47.3591 19.1577\\nL 48.6746 19.1577\\nL 48.6746 28.8596\\nL 47.3591 28.8596\\nL 47.3591 24.3786\\nL 42.3985 24.3786\\nL 42.3985 28.8596\\nL 41.083 28.8596\\nL 41.083 19.1577\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 143.82 54.8202\\nQ 143.82 52.4907, 144.971 51.1889\\nQ 146.122 49.8871, 148.274 49.8871\\nQ 150.425 49.8871, 151.576 51.1889\\nQ 152.727 52.4907, 152.727 54.8202\\nQ 152.727 57.1771, 151.563 58.5201\\nQ 150.398 59.8493, 148.274 59.8493\\nQ 146.136 59.8493, 144.971 58.5201\\nQ 143.82 57.1909, 143.82 54.8202\\nM 148.274 58.753\\nQ 149.754 58.753, 150.548 57.7664\\nQ 151.357 56.7661, 151.357 54.8202\\nQ 151.357 52.9155, 150.548 51.9562\\nQ 149.754 50.9833, 148.274 50.9833\\nQ 146.794 50.9833, 145.985 51.9425\\nQ 145.191 52.9018, 145.191 54.8202\\nQ 145.191 56.7798, 145.985 57.7664\\nQ 146.794 58.753, 148.274 58.753\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 120.082 95.9229\\nQ 120.082 93.5933, 121.233 92.2915\\nQ 122.384 90.9897, 124.535 90.9897\\nQ 126.687 90.9897, 127.838 92.2915\\nQ 128.989 93.5933, 128.989 95.9229\\nQ 128.989 98.2798, 127.824 99.6227\\nQ 126.659 100.952, 124.535 100.952\\nQ 122.398 100.952, 121.233 99.6227\\nQ 120.082 98.2935, 120.082 95.9229\\nM 124.535 99.8557\\nQ 126.015 99.8557, 126.81 98.869\\nQ 127.619 97.8687, 127.619 95.9229\\nQ 127.619 94.0181, 126.81 93.0589\\nQ 126.015 92.086, 124.535 92.086\\nQ 123.055 92.086, 122.247 93.0452\\nQ 121.452 94.0044, 121.452 95.9229\\nQ 121.452 97.8824, 122.247 98.869\\nQ 123.055 99.8557, 124.535 99.8557\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 130.154 91.0993\\nL 131.469 91.0993\\nL 131.469 95.224\\nL 136.43 95.224\\nL 136.43 91.0993\\nL 137.745 91.0993\\nL 137.745 100.801\\nL 136.43 100.801\\nL 136.43 96.3202\\nL 131.469 96.3202\\nL 131.469 100.801\\nL 130.154 100.801\\nL 130.154 91.0993\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 79, "data-ID": 401, "data-Solubility": -0.2, "data-SMILES": "O=C(O)CCC(=O)O", "mols2grid-tooltip": "<strong>Name</strong>: succinic_acid<br><strong>SMILES</strong>: O=C(O)CCC(=O)O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.2</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,70.2896 L 19.2018,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.2018,63.4069 L 34.1217,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 34.1217,72.0146 L 49.0417,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.0417,63.4069 L 63.9616,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.9616,72.0146 L 78.8816,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.8816,63.4069 L 93.8004,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.8004,72.0146 L 108.72,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 108.72,63.4069 L 123.64,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 123.64,72.0146 L 138.56,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 137.7,64.898 L 142.373,67.5944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 142.373,67.5944 L 147.047,70.2908' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 139.421,61.9158 L 144.094,64.6122' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 144.094,64.6122 L 148.767,67.3086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 138.56,63.4069 L 138.56,57.9634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 138.56,57.9634 L 138.56,52.5199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 148.251 70.3034\\nQ 148.251 69.1327, 148.83 68.4785\\nQ 149.408 67.8244, 150.489 67.8244\\nQ 151.57 67.8244, 152.149 68.4785\\nQ 152.727 69.1327, 152.727 70.3034\\nQ 152.727 71.4878, 152.142 72.1626\\nQ 151.557 72.8306, 150.489 72.8306\\nQ 149.415 72.8306, 148.83 72.1626\\nQ 148.251 71.4947, 148.251 70.3034\\nM 150.489 72.2797\\nQ 151.233 72.2797, 151.632 71.7839\\nQ 152.039 71.2812, 152.039 70.3034\\nQ 152.039 69.3462, 151.632 68.8642\\nQ 151.233 68.3753, 150.489 68.3753\\nQ 149.746 68.3753, 149.339 68.8573\\nQ 148.94 69.3393, 148.94 70.3034\\nQ 148.94 71.2881, 149.339 71.7839\\nQ 149.746 72.2797, 150.489 72.2797\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 136.322 49.6484\\nQ 136.322 48.4778, 136.901 47.8236\\nQ 137.479 47.1694, 138.56 47.1694\\nQ 139.641 47.1694, 140.22 47.8236\\nQ 140.798 48.4778, 140.798 49.6484\\nQ 140.798 50.8328, 140.213 51.5077\\nQ 139.628 52.1756, 138.56 52.1756\\nQ 137.486 52.1756, 136.901 51.5077\\nQ 136.322 50.8397, 136.322 49.6484\\nM 138.56 51.6247\\nQ 139.304 51.6247, 139.703 51.1289\\nQ 140.11 50.6263, 140.11 49.6484\\nQ 140.11 48.6913, 139.703 48.2092\\nQ 139.304 47.7203, 138.56 47.7203\\nQ 137.817 47.7203, 137.41 48.2023\\nQ 137.011 48.6844, 137.011 49.6484\\nQ 137.011 50.6331, 137.41 51.1289\\nQ 137.817 51.6247, 138.56 51.6247\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 141.384 47.2245\\nL 142.045 47.2245\\nL 142.045 49.2972\\nL 144.537 49.2972\\nL 144.537 47.2245\\nL 145.198 47.2245\\nL 145.198 52.0999\\nL 144.537 52.0999\\nL 144.537 49.8481\\nL 142.045 49.8481\\nL 142.045 52.0999\\nL 141.384 52.0999\\nL 141.384 47.2245\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 80, "data-ID": 406, "data-Solubility": -3.44, "data-SMILES": "CCCCCCCCCC(=O)O", "mols2grid-tooltip": "<strong>Name</strong>: caprinic_acid<br><strong>SMILES</strong>: CCCCCCCCCC(=O)O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.44</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.105,98.7541 L 120.12,88.1549' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.12,88.1549 L 120.135,77.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.447,98.7446 L 113.462,88.1454' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.462,88.1454 L 113.477,77.5463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.806,77.551 L 125.852,72.349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.852,72.349 L 134.898,67.147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 116.806,77.551 L 87.9938,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.9938,60.8378 L 87.9938,27.5489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.336,55.8444 L 81.336,32.5422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 87.9938,60.8378 L 59.1656,77.4822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.9938,27.5489 L 59.1656,10.9045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1656,10.9045 L 30.3375,27.5489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.1704,19.1669 L 37.9906,30.818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.3375,27.5489 L 30.3375,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.3375,60.8378 L 7.27273,74.1533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 59.1656,77.4822 L 30.3375,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 58.1704,69.2198 L 37.9906,57.5687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 112.441 104.209\\nQ 112.441 101.945, 113.56 100.68\\nQ 114.678 99.4151, 116.769 99.4151\\nQ 118.859 99.4151, 119.978 100.68\\nQ 121.096 101.945, 121.096 104.209\\nQ 121.096 106.499, 119.964 107.804\\nQ 118.833 109.096, 116.769 109.096\\nQ 114.691 109.096, 113.56 107.804\\nQ 112.441 106.512, 112.441 104.209\\nM 116.769 108.03\\nQ 118.207 108.03, 118.979 107.072\\nQ 119.765 106.1, 119.765 104.209\\nQ 119.765 102.358, 118.979 101.426\\nQ 118.207 100.48, 116.769 100.48\\nQ 115.331 100.48, 114.545 101.412\\nQ 113.773 102.345, 113.773 104.209\\nQ 113.773 106.113, 114.545 107.072\\nQ 115.331 108.03, 116.769 108.03\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.564 64.302\\nQ 135.564 62.0384, 136.682 60.7734\\nQ 137.801 59.5084, 139.891 59.5084\\nQ 141.982 59.5084, 143.1 60.7734\\nQ 144.219 62.0384, 144.219 64.302\\nQ 144.219 66.5923, 143.087 67.8972\\nQ 141.955 69.1888, 139.891 69.1888\\nQ 137.814 69.1888, 136.682 67.8972\\nQ 135.564 66.6056, 135.564 64.302\\nM 139.891 68.1236\\nQ 141.329 68.1236, 142.101 67.1649\\nQ 142.887 66.1928, 142.887 64.302\\nQ 142.887 62.4512, 142.101 61.5191\\nQ 141.329 60.5737, 139.891 60.5737\\nQ 138.453 60.5737, 137.667 61.5058\\nQ 136.895 62.4379, 136.895 64.302\\nQ 136.895 66.2062, 137.667 67.1649\\nQ 138.453 68.1236, 139.891 68.1236\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.35 59.615\\nL 146.629 59.615\\nL 146.629 63.6229\\nL 151.449 63.6229\\nL 151.449 59.615\\nL 152.727 59.615\\nL 152.727 69.0424\\nL 151.449 69.0424\\nL 151.449 64.6882\\nL 146.629 64.6882\\nL 146.629 69.0424\\nL 145.35 69.0424\\nL 145.35 59.615\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 81, "data-ID": 411, "data-Solubility": -2.14, "data-SMILES": "O=C(O)c(cccc1C)c1", "mols2grid-tooltip": "<strong>Name</strong>: m-toluic_acid<br><strong>SMILES</strong>: O=C(O)c(cccc1C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.14</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.615,106.934 L 111.626,99.1321' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.626,99.1321 L 111.637,91.3305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.715,106.927 L 106.726,99.1251' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.726,99.1251 L 106.737,91.3236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.187,91.327 L 115.846,87.498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.846,87.498 L 122.505,83.6689' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.187,91.327 L 87.9812,79.0252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.4315,79.0288 L 85.5669,54.5063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.531,79.0217 L 90.4674,54.5134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.0172,54.5098 L 66.8096,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8096,42.208 L 66.8096,17.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.9091,38.5327 L 61.9091,21.3811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 66.8096,42.208 L 45.5906,54.4592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.8096,17.7057 L 45.5906,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 45.5906,5.45455 L 24.3715,17.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 44.858,11.5361 L 30.0047,20.1119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 24.3715,17.7057 L 24.3715,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 45.5906,54.4592 L 24.3715,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 44.858,48.3776 L 30.0047,39.8018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 105.974 110.949\\nQ 105.974 109.282, 106.797 108.351\\nQ 107.621 107.42, 109.159 107.42\\nQ 110.698 107.42, 111.521 108.351\\nQ 112.345 109.282, 112.345 110.949\\nQ 112.345 112.634, 111.512 113.595\\nQ 110.679 114.545, 109.159 114.545\\nQ 107.63 114.545, 106.797 113.595\\nQ 105.974 112.644, 105.974 110.949\\nM 109.159 113.761\\nQ 110.218 113.761, 110.786 113.056\\nQ 111.365 112.34, 111.365 110.949\\nQ 111.365 109.586, 110.786 108.9\\nQ 110.218 108.204, 109.159 108.204\\nQ 108.101 108.204, 107.523 108.89\\nQ 106.954 109.576, 106.954 110.949\\nQ 106.954 112.35, 107.523 113.056\\nQ 108.101 113.761, 109.159 113.761\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 122.995 81.5751\\nQ 122.995 79.909, 123.818 78.9779\\nQ 124.642 78.0468, 126.18 78.0468\\nQ 127.719 78.0468, 128.542 78.9779\\nQ 129.366 79.909, 129.366 81.5751\\nQ 129.366 83.2609, 128.533 84.2214\\nQ 127.7 85.1721, 126.18 85.1721\\nQ 124.651 85.1721, 123.818 84.2214\\nQ 122.995 83.2707, 122.995 81.5751\\nM 126.18 84.388\\nQ 127.239 84.388, 127.807 83.6823\\nQ 128.386 82.9669, 128.386 81.5751\\nQ 128.386 80.2128, 127.807 79.5267\\nQ 127.239 78.8309, 126.18 78.8309\\nQ 125.122 78.8309, 124.544 79.5169\\nQ 123.975 80.203, 123.975 81.5751\\nQ 123.975 82.9767, 124.544 83.6823\\nQ 125.122 84.388, 126.18 84.388\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.199 78.1252\\nL 131.14 78.1252\\nL 131.14 81.0753\\nL 134.688 81.0753\\nL 134.688 78.1252\\nL 135.628 78.1252\\nL 135.628 85.0643\\nL 134.688 85.0643\\nL 134.688 81.8593\\nL 131.14 81.8593\\nL 131.14 85.0643\\nL 130.199 85.0643\\nL 130.199 78.1252\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 82, "data-ID": 416, "data-Solubility": -2.48, "data-SMILES": "O=C(O)C=Cc(cccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: cinnamic_acid<br><strong>SMILES</strong>: O=C(O)C=Cc(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.48</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.905,106.91 L 111.889,99.0934' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.889,99.0934 L 111.873,91.2766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.995,106.92 L 106.979,99.1036' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.979,99.1036 L 106.963,91.2869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.418,91.2818 L 116.072,87.4243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.072,87.4243 L 122.727,83.5669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.418,91.2818 L 88.1277,79.0296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.1277,79.0296 L 88.077,54.4664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.077,54.4664 L 66.8591,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.3499,48.3764 L 72.4974,39.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-4 atom-13' d='M 88.077,54.4664 L 109.296,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8591,42.2126 L 66.8591,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-5 atom-12' d='M 66.8591,42.2126 L 45.6413,54.4664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.8591,17.7083 L 45.6413,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 66.8591,17.7083 L 88.077,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 72.4974,20.1221 L 87.3499,11.5445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 45.6413,5.45455 L 24.1239,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 44.8435,11.5593 L 29.7813,20.1369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 24.1239,17.7083 L 24.1239,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 45.6413,54.4664 L 24.1239,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 44.8435,48.3617 L 29.7813,39.784' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 88.077,5.45455 L 109.296,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-11' d='M 109.296,42.2126 L 109.296,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-11' d='M 104.386,38.537 L 104.386,21.384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.267 110.941\\nQ 106.267 109.272, 107.092 108.339\\nQ 107.917 107.406, 109.459 107.406\\nQ 111 107.406, 111.825 108.339\\nQ 112.65 109.272, 112.65 110.941\\nQ 112.65 112.631, 111.815 113.593\\nQ 110.981 114.545, 109.459 114.545\\nQ 107.927 114.545, 107.092 113.593\\nQ 106.267 112.64, 106.267 110.941\\nM 109.459 113.76\\nQ 110.519 113.76, 111.089 113.053\\nQ 111.668 112.336, 111.668 110.941\\nQ 111.668 109.577, 111.089 108.889\\nQ 110.519 108.192, 109.459 108.192\\nQ 108.398 108.192, 107.819 108.879\\nQ 107.249 109.567, 107.249 110.941\\nQ 107.249 112.346, 107.819 113.053\\nQ 108.398 113.76, 109.459 113.76\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 123.218 81.4519\\nQ 123.218 79.7825, 124.043 78.8496\\nQ 124.868 77.9167, 126.41 77.9167\\nQ 127.951 77.9167, 128.776 78.8496\\nQ 129.601 79.7825, 129.601 81.4519\\nQ 129.601 83.1409, 128.766 84.1033\\nQ 127.932 85.0559, 126.41 85.0559\\nQ 124.878 85.0559, 124.043 84.1033\\nQ 123.218 83.1508, 123.218 81.4519\\nM 126.41 84.2702\\nQ 127.47 84.2702, 128.04 83.5632\\nQ 128.619 82.8463, 128.619 81.4519\\nQ 128.619 80.0869, 128.04 79.3995\\nQ 127.47 78.7023, 126.41 78.7023\\nQ 125.349 78.7023, 124.77 79.3897\\nQ 124.2 80.0771, 124.2 81.4519\\nQ 124.2 82.8562, 124.77 83.5632\\nQ 125.349 84.2702, 126.41 84.2702\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.436 77.9952\\nL 131.378 77.9952\\nL 131.378 80.9511\\nL 134.933 80.9511\\nL 134.933 77.9952\\nL 135.876 77.9952\\nL 135.876 84.9478\\nL 134.933 84.9478\\nL 134.933 81.7367\\nL 131.378 81.7367\\nL 131.378 84.9478\\nL 130.436 84.9478\\nL 130.436 77.9952\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 83, "data-ID": 421, "data-Solubility": -2.65, "data-SMILES": "O=C(O)Cc(c(c(ccc1)cc2)c1)c2", "mols2grid-tooltip": "<strong>Name</strong>: 1-naphthaceneacetic_acid<br><strong>SMILES</strong>: O=C(O)Cc(c(c(ccc1)cc2)c1)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.65</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.738,43.258 L 115.833,39.8239' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.833,39.8239 L 109.929,36.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.545,47.0281 L 113.641,43.594' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.641,43.594 L 107.736,40.1599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.833,38.2749 L 108.856,31.3796' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.856,31.3796 L 108.88,24.4844' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 108.833,38.2749 L 89.8958,49.1127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.8958,49.1127 L 71.0215,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-10' d='M 89.8958,49.1127 L 89.8638,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.0215,38.1644 L 71.0215,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.6602,34.8934 L 66.6602,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 71.0215,38.1644 L 52.137,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 71.0215,16.3578 L 52.137,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.137,5.45455 L 33.2526,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.4851,10.867 L 38.2659,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 33.2526,16.3578 L 33.2526,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 52.137,49.0676 L 33.2526,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 51.4851,43.6552 L 38.2659,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8638,70.9309 L 108.711,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 90.4968,76.3457 L 103.69,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 89.8638,70.9309 L 70.9416,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 108.711,81.901 L 108.636,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 108.636,103.708 L 89.7126,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 103.63,101.549 L 90.3837,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 89.7126,114.545 L 70.866,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 70.9416,81.7702 L 70.866,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 75.2915,85.0563 L 75.2386,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.078 47.0629\\nQ 121.078 45.5801, 121.81 44.7514\\nQ 122.543 43.9228, 123.913 43.9228\\nQ 125.282 43.9228, 126.015 44.7514\\nQ 126.747 45.5801, 126.747 47.0629\\nQ 126.747 48.5632, 126.006 49.418\\nQ 125.265 50.2641, 123.913 50.2641\\nQ 122.552 50.2641, 121.81 49.418\\nQ 121.078 48.5719, 121.078 47.0629\\nM 123.913 49.5663\\nQ 124.855 49.5663, 125.361 48.9383\\nQ 125.875 48.3015, 125.875 47.0629\\nQ 125.875 45.8505, 125.361 45.2399\\nQ 124.855 44.6206, 123.913 44.6206\\nQ 122.971 44.6206, 122.456 45.2311\\nQ 121.95 45.8417, 121.95 47.0629\\nQ 121.95 48.3102, 122.456 48.9383\\nQ 122.971 49.5663, 123.913 49.5663\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 106.057 20.8471\\nQ 106.057 19.3642, 106.79 18.5356\\nQ 107.523 17.7069, 108.892 17.7069\\nQ 110.262 17.7069, 110.994 18.5356\\nQ 111.727 19.3642, 111.727 20.8471\\nQ 111.727 22.3474, 110.986 23.2022\\nQ 110.244 24.0483, 108.892 24.0483\\nQ 107.531 24.0483, 106.79 23.2022\\nQ 106.057 22.3561, 106.057 20.8471\\nM 108.892 23.3505\\nQ 109.834 23.3505, 110.34 22.7224\\nQ 110.855 22.0857, 110.855 20.8471\\nQ 110.855 19.6346, 110.34 19.024\\nQ 109.834 18.4047, 108.892 18.4047\\nQ 107.95 18.4047, 107.436 19.0153\\nQ 106.93 19.6259, 106.93 20.8471\\nQ 106.93 22.0944, 107.436 22.7224\\nQ 107.95 23.3505, 108.892 23.3505\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 112.469 17.7767\\nL 113.306 17.7767\\nL 113.306 20.4022\\nL 116.463 20.4022\\nL 116.463 17.7767\\nL 117.301 17.7767\\nL 117.301 23.9523\\nL 116.463 23.9523\\nL 116.463 21.1\\nL 113.306 21.1\\nL 113.306 23.9523\\nL 112.469 23.9523\\nL 112.469 17.7767\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 84, "data-ID": 426, "data-Solubility": -3.22, "data-SMILES": "O=C(O)C(c(cccc1)c1)c(cccc2)c2", "mols2grid-tooltip": "<strong>Name</strong>: diphenylacetic_acid<br><strong>SMILES</strong>: O=C(O)C(c(cccc1)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.22</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 11.8483,67.0736 L 14.9752,65.2695' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 14.9752,65.2695 L 18.1021,63.4654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 10.6298,64.9617 L 13.7567,63.1576' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 13.7567,63.1576 L 16.8836,61.3535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.4928,62.4094 L 17.4928,58.7619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.4928,58.7619 L 17.4928,55.1144' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 17.4928,62.4094 L 28.0585,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 28.0585,68.505 L 38.6241,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 38.6241,62.4094 L 49.1897,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 49.1897,68.505 L 59.7554,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.7554,62.4094 L 70.3202,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.3202,68.505 L 80.8858,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 80.8858,62.4094 L 91.4515,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 91.4515,68.505 L 102.017,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 102.017,62.4094 L 112.583,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.583,68.505 L 123.148,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.148,62.4094 L 133.714,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.714,68.505 L 144.28,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 144.28,62.4094 L 152.727,67.2835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.09519 67.2955\\nQ 7.09519 66.2755, 7.59919 65.7055\\nQ 8.10319 65.1355, 9.04519 65.1355\\nQ 9.98719 65.1355, 10.4912 65.7055\\nQ 10.9952 66.2755, 10.9952 67.2955\\nQ 10.9952 68.3275, 10.4852 68.9155\\nQ 9.97519 69.4975, 9.04519 69.4975\\nQ 8.10919 69.4975, 7.59919 68.9155\\nQ 7.09519 68.3335, 7.09519 67.2955\\nM 9.04519 69.0175\\nQ 9.69319 69.0175, 10.0412 68.5855\\nQ 10.3952 68.1475, 10.3952 67.2955\\nQ 10.3952 66.4615, 10.0412 66.0415\\nQ 9.69319 65.6155, 9.04519 65.6155\\nQ 8.39719 65.6155, 8.04319 66.0355\\nQ 7.69519 66.4555, 7.69519 67.2955\\nQ 7.69519 68.1535, 8.04319 68.5855\\nQ 8.39719 69.0175, 9.04519 69.0175\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 15.5428 52.6686\\nQ 15.5428 51.6486, 16.0468 51.0786\\nQ 16.5508 50.5086, 17.4928 50.5086\\nQ 18.4348 50.5086, 18.9388 51.0786\\nQ 19.4428 51.6486, 19.4428 52.6686\\nQ 19.4428 53.7006, 18.9328 54.2886\\nQ 18.4228 54.8706, 17.4928 54.8706\\nQ 16.5568 54.8706, 16.0468 54.2886\\nQ 15.5428 53.7066, 15.5428 52.6686\\nM 17.4928 54.3906\\nQ 18.1408 54.3906, 18.4888 53.9586\\nQ 18.8428 53.5206, 18.8428 52.6686\\nQ 18.8428 51.8346, 18.4888 51.4146\\nQ 18.1408 50.9886, 17.4928 50.9886\\nQ 16.8448 50.9886, 16.4908 51.4086\\nQ 16.1428 51.8286, 16.1428 52.6686\\nQ 16.1428 53.5266, 16.4908 53.9586\\nQ 16.8448 54.3906, 17.4928 54.3906\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 19.9528 50.5566\\nL 20.5288 50.5566\\nL 20.5288 52.3626\\nL 22.7008 52.3626\\nL 22.7008 50.5566\\nL 23.2768 50.5566\\nL 23.2768 54.8046\\nL 22.7008 54.8046\\nL 22.7008 52.8426\\nL 20.5288 52.8426\\nL 20.5288 54.8046\\nL 19.9528 54.8046\\nL 19.9528 50.5566\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 85, "data-ID": 431, "data-Solubility": -5.33, "data-SMILES": "O=C(O)CCCCCCCCCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: tetradecanoic_acid<br><strong>SMILES</strong>: O=C(O)CCCCCCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.33</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4516,62.8527 L 41.6316,56.9792' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.6316,56.9792 L 51.8116,51.1056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.7034,56.3564 L 37.8834,50.4829' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 37.8834,50.4829 L 48.0634,44.6094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.9375,47.8575 L 63.281,55.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 63.281,55.5557 L 76.6245,63.2538' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.2505,63.2538 L 101.594,55.5557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.594,55.5557 L 114.937,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.937,47.8575 L 140.922,62.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 19.0775 62.88\\nQ 19.0775 60.33, 20.3375 58.905\\nQ 21.5975 57.48, 23.9525 57.48\\nQ 26.3075 57.48, 27.5675 58.905\\nQ 28.8275 60.33, 28.8275 62.88\\nQ 28.8275 65.46, 27.5525 66.93\\nQ 26.2775 68.385, 23.9525 68.385\\nQ 21.6125 68.385, 20.3375 66.93\\nQ 19.0775 65.475, 19.0775 62.88\\nM 23.9525 67.185\\nQ 25.5725 67.185, 26.4425 66.105\\nQ 27.3275 65.01, 27.3275 62.88\\nQ 27.3275 60.795, 26.4425 59.745\\nQ 25.5725 58.68, 23.9525 58.68\\nQ 22.3325 58.68, 21.4475 59.73\\nQ 20.5775 60.78, 20.5775 62.88\\nQ 20.5775 65.025, 21.4475 66.105\\nQ 22.3325 67.185, 23.9525 67.185\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 77.5625 66.6375\\nQ 77.5625 64.0875, 78.8225 62.6625\\nQ 80.0825 61.2375, 82.4375 61.2375\\nQ 84.7925 61.2375, 86.0525 62.6625\\nQ 87.3125 64.0875, 87.3125 66.6375\\nQ 87.3125 69.2175, 86.0375 70.6875\\nQ 84.7625 72.1425, 82.4375 72.1425\\nQ 80.0975 72.1425, 78.8225 70.6875\\nQ 77.5625 69.2325, 77.5625 66.6375\\nM 82.4375 70.9425\\nQ 84.0575 70.9425, 84.9275 69.8625\\nQ 85.8125 68.7675, 85.8125 66.6375\\nQ 85.8125 64.5525, 84.9275 63.5025\\nQ 84.0575 62.4375, 82.4375 62.4375\\nQ 80.8175 62.4375, 79.9325 63.4875\\nQ 79.0625 64.5375, 79.0625 66.6375\\nQ 79.0625 68.7825, 79.9325 69.8625\\nQ 80.8175 70.9425, 82.4375 70.9425\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 86, "data-ID": 436, "data-Solubility": 0.15, "data-SMILES": "O=COCC", "mols2grid-tooltip": "<strong>Name</strong>: ethyl_formate<br><strong>SMILES</strong>: O=COCC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.15</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 92.1642,42.3157 L 92.1642,53.8547' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1642,53.8547 L 92.1642,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.4627,42.3157 L 99.4627,53.8547' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.4627,53.8547 L 99.4627,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8134,65.3936 L 82.8284,72.885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.8284,72.885 L 69.8434,80.3763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 95.8134,65.3936 L 127.44,83.6399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.5297,80.3763 L 45.5447,72.885' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.5447,72.885 L 32.5597,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 32.5597,65.3936 L 7.27273,79.9833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.44,83.6399 L 152.727,69.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 91.0694 36.2287\\nQ 91.0694 33.7472, 92.2956 32.3605\\nQ 93.5217 30.9738, 95.8134 30.9738\\nQ 98.1052 30.9738, 99.3313 32.3605\\nQ 100.557 33.7472, 100.557 36.2287\\nQ 100.557 38.7394, 99.3167 40.1699\\nQ 98.076 41.5858, 95.8134 41.5858\\nQ 93.5363 41.5858, 92.2956 40.1699\\nQ 91.0694 38.754, 91.0694 36.2287\\nM 95.8134 40.4181\\nQ 97.3899 40.4181, 98.2366 39.3671\\nQ 99.0978 38.3015, 99.0978 36.2287\\nQ 99.0978 34.1997, 98.2366 33.178\\nQ 97.3899 32.1416, 95.8134 32.1416\\nQ 94.237 32.1416, 93.3757 33.1634\\nQ 92.5291 34.1852, 92.5291 36.2287\\nQ 92.5291 38.3161, 93.3757 39.3671\\nQ 94.237 40.4181, 95.8134 40.4181\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 59.4425 83.6691\\nQ 59.4425 81.1876, 60.6687 79.8009\\nQ 61.8948 78.4142, 64.1866 78.4142\\nQ 66.4783 78.4142, 67.7044 79.8009\\nQ 68.9306 81.1876, 68.9306 83.6691\\nQ 68.9306 86.1798, 67.6898 87.6103\\nQ 66.4491 89.0262, 64.1866 89.0262\\nQ 61.9094 89.0262, 60.6687 87.6103\\nQ 59.4425 86.1944, 59.4425 83.6691\\nM 64.1866 87.8584\\nQ 65.763 87.8584, 66.6097 86.8074\\nQ 67.4709 85.7419, 67.4709 83.6691\\nQ 67.4709 81.6401, 66.6097 80.6183\\nQ 65.763 79.5819, 64.1866 79.5819\\nQ 62.6101 79.5819, 61.7488 80.6037\\nQ 60.9022 81.6255, 60.9022 83.6691\\nQ 60.9022 85.7565, 61.7488 86.8074\\nQ 62.6101 87.8584, 64.1866 87.8584\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 87, "data-ID": 441, "data-Solubility": -0.66, "data-SMILES": "O=C(OCC)CC", "mols2grid-tooltip": "<strong>Name</strong>: ethyl_propionate<br><strong>SMILES</strong>: O=C(OCC)CC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.66</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 77.0025,45.4741 L 77.0025,54.9522' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0025,54.9522 L 77.0025,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.9975,45.4741 L 82.9975,54.9522' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.9975,54.9522 L 82.9975,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80,64.4303 L 69.3341,70.5837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 69.3341,70.5837 L 58.6682,76.7371' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 80,64.4303 L 105.978,79.4178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 49.3752,76.7371 L 38.7093,70.5837' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.7093,70.5837 L 28.0434,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 28.0434,64.4303 L 7.27273,76.4143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.978,79.4178 L 131.957,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 131.957,64.4303 L 152.727,76.4143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 76.1033 40.4743\\nQ 76.1033 38.436, 77.1104 37.297\\nQ 78.1176 36.1579, 80 36.1579\\nQ 81.8824 36.1579, 82.8896 37.297\\nQ 83.8967 38.436, 83.8967 40.4743\\nQ 83.8967 42.5366, 82.8776 43.7116\\nQ 81.8584 44.8746, 80 44.8746\\nQ 78.1296 44.8746, 77.1104 43.7116\\nQ 76.1033 42.5486, 76.1033 40.4743\\nM 80 43.9154\\nQ 81.2949 43.9154, 81.9903 43.0522\\nQ 82.6977 42.1769, 82.6977 40.4743\\nQ 82.6977 38.8077, 81.9903 37.9684\\nQ 81.2949 37.1171, 80 37.1171\\nQ 78.7051 37.1171, 77.9977 37.9564\\nQ 77.3023 38.7957, 77.3023 40.4743\\nQ 77.3023 42.1889, 77.9977 43.0522\\nQ 78.7051 43.9154, 80 43.9154\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 50.1249 79.4418\\nQ 50.1249 77.4035, 51.1321 76.2644\\nQ 52.1393 75.1254, 54.0217 75.1254\\nQ 55.9041 75.1254, 56.9113 76.2644\\nQ 57.9184 77.4035, 57.9184 79.4418\\nQ 57.9184 81.504, 56.8993 82.6791\\nQ 55.8801 83.8421, 54.0217 83.8421\\nQ 52.1513 83.8421, 51.1321 82.6791\\nQ 50.1249 81.516, 50.1249 79.4418\\nM 54.0217 82.8829\\nQ 55.3166 82.8829, 56.012 82.0196\\nQ 56.7194 81.1443, 56.7194 79.4418\\nQ 56.7194 77.7752, 56.012 76.9359\\nQ 55.3166 76.0846, 54.0217 76.0846\\nQ 52.7268 76.0846, 52.0194 76.9239\\nQ 51.3239 77.7632, 51.3239 79.4418\\nQ 51.3239 81.1563, 52.0194 82.0196\\nQ 52.7268 82.8829, 54.0217 82.8829\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 88, "data-ID": 446, "data-Solubility": -1.28, "data-SMILES": "O=C(OCC)CCC", "mols2grid-tooltip": "<strong>Name</strong>: ethyl_butyrate<br><strong>SMILES</strong>: O=C(OCC)CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 93.5641,72.3247 L 93.5641,64.2269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.5641,64.2269 L 93.5641,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.4776,72.3247 L 88.4776,64.2269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.4776,64.2269 L 88.4776,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.0208,56.1291 L 81.9712,50.9082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.9712,50.9082 L 72.9216,45.6873' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 91.0208,56.1291 L 113.062,43.4128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.0368,45.6873 L 55.9871,50.9082' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.9871,50.9082 L 46.9375,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.9375,56.1291 L 24.8959,43.4128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 24.8959,43.4128 L 7.27273,53.5808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 113.062,43.4128 L 135.102,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 135.102,56.1291 L 152.727,45.9612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 87.7146 76.4956\\nQ 87.7146 74.7662, 88.5691 73.7998\\nQ 89.4237 72.8333, 91.0208 72.8333\\nQ 92.618 72.8333, 93.4725 73.7998\\nQ 94.3271 74.7662, 94.3271 76.4956\\nQ 94.3271 78.2454, 93.4624 79.2424\\nQ 92.5977 80.2291, 91.0208 80.2291\\nQ 89.4338 80.2291, 88.5691 79.2424\\nQ 87.7146 78.2556, 87.7146 76.4956\\nM 91.0208 79.4153\\nQ 92.1195 79.4153, 92.7096 78.6828\\nQ 93.3098 77.9402, 93.3098 76.4956\\nQ 93.3098 75.0816, 92.7096 74.3695\\nQ 92.1195 73.6472, 91.0208 73.6472\\nQ 89.9221 73.6472, 89.3219 74.3593\\nQ 88.7319 75.0714, 88.7319 76.4956\\nQ 88.7319 77.9504, 89.3219 78.6828\\nQ 89.9221 79.4153, 91.0208 79.4153\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 65.6729 43.4332\\nQ 65.6729 41.7037, 66.5275 40.7373\\nQ 67.382 39.7709, 68.9792 39.7709\\nQ 70.5763 39.7709, 71.4309 40.7373\\nQ 72.2854 41.7037, 72.2854 43.4332\\nQ 72.2854 45.1829, 71.4207 46.1799\\nQ 70.556 47.1667, 68.9792 47.1667\\nQ 67.3922 47.1667, 66.5275 46.1799\\nQ 65.6729 45.1931, 65.6729 43.4332\\nM 68.9792 46.3528\\nQ 70.0779 46.3528, 70.6679 45.6204\\nQ 71.2681 44.8777, 71.2681 43.4332\\nQ 71.2681 42.0191, 70.6679 41.307\\nQ 70.0779 40.5847, 68.9792 40.5847\\nQ 67.8805 40.5847, 67.2803 41.2968\\nQ 66.6902 42.0089, 66.6902 43.4332\\nQ 66.6902 44.8879, 67.2803 45.6204\\nQ 67.8805 46.3528, 68.9792 46.3528\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 89, "data-ID": 451, "data-Solubility": -1.92, "data-SMILES": "O=C(OCCC)CCC", "mols2grid-tooltip": "<strong>Name</strong>: propyl_butyrate<br><strong>SMILES</strong>: O=C(OCCC)CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 58.6503,49.2972 L 58.6503,56.2807' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 58.6503,56.2807 L 58.6503,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 63.0675,49.2972 L 63.0675,56.2807' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 63.0675,56.2807 L 63.0675,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.8589,63.2643 L 53.0002,67.7982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.0002,67.7982 L 45.1415,72.3321' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 60.8589,63.2643 L 80,74.3072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.2942,72.3321 L 30.4355,67.7982' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 30.4355,67.7982 L 22.5768,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 22.5768,63.2643 L 7.27273,72.0942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,74.3072 L 99.1411,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 99.1411,63.2643 L 118.281,74.3072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 118.281,74.3072 L 137.422,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 137.422,63.2643 L 152.727,72.0942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 57.9878 45.6133\\nQ 57.9878 44.1114, 58.7298 43.2722\\nQ 59.4719 42.4329, 60.8589 42.4329\\nQ 62.2459 42.4329, 62.988 43.2722\\nQ 63.7301 44.1114, 63.7301 45.6133\\nQ 63.7301 47.1328, 62.9792 47.9985\\nQ 62.2282 48.8555, 60.8589 48.8555\\nQ 59.4808 48.8555, 58.7298 47.9985\\nQ 57.9878 47.1416, 57.9878 45.6133\\nM 60.8589 48.1487\\nQ 61.813 48.1487, 62.3254 47.5127\\nQ 62.8466 46.8677, 62.8466 45.6133\\nQ 62.8466 44.3853, 62.3254 43.7669\\nQ 61.813 43.1397, 60.8589 43.1397\\nQ 59.9048 43.1397, 59.3836 43.7581\\nQ 58.8712 44.3765, 58.8712 45.6133\\nQ 58.8712 46.8766, 59.3836 47.5127\\nQ 59.9048 48.1487, 60.8589 48.1487\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 38.8467 74.3249\\nQ 38.8467 72.8231, 39.5888 71.9838\\nQ 40.3308 71.1445, 41.7178 71.1445\\nQ 43.1048 71.1445, 43.8469 71.9838\\nQ 44.589 72.8231, 44.589 74.3249\\nQ 44.589 75.8444, 43.8381 76.7102\\nQ 43.0872 77.5671, 41.7178 77.5671\\nQ 40.3397 77.5671, 39.5888 76.7102\\nQ 38.8467 75.8532, 38.8467 74.3249\\nM 41.7178 76.8603\\nQ 42.6719 76.8603, 43.1843 76.2243\\nQ 43.7056 75.5794, 43.7056 74.3249\\nQ 43.7056 73.0969, 43.1843 72.4785\\nQ 42.6719 71.8513, 41.7178 71.8513\\nQ 40.7637 71.8513, 40.2425 72.4697\\nQ 39.7301 73.0881, 39.7301 74.3249\\nQ 39.7301 75.5882, 40.2425 76.2243\\nQ 40.7637 76.8603, 41.7178 76.8603\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 90, "data-ID": 456, "data-Solubility": -2.31, "data-SMILES": "O=C(OCC)CCCCC", "mols2grid-tooltip": "<strong>Name</strong>: ethyl_capronate<br><strong>SMILES</strong>: O=C(OCC)CCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.31</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 44.1085,52.3265 L 44.1085,57.3334' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 44.1085,57.3334 L 44.1085,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.2754,52.3265 L 47.2754,57.3334' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.2754,57.3334 L 47.2754,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 45.692,62.3404 L 40.0576,65.591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.0576,65.591 L 34.4232,68.8416' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 45.692,62.3404 L 59.4154,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 29.514,68.8416 L 23.8795,65.591' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 23.8795,65.591 L 18.2451,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 18.2451,62.3404 L 7.27273,68.6711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.4154,70.2577 L 73.1388,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 73.1388,62.3404 L 86.8612,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 86.8612,70.2577 L 100.585,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 100.585,62.3404 L 114.308,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 114.308,70.2577 L 128.031,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 128.031,62.3404 L 141.755,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 141.755,70.2577 L 152.727,63.927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 43.6335 49.6853\\nQ 43.6335 48.6085, 44.1655 48.0068\\nQ 44.6976 47.4051, 45.692 47.4051\\nQ 46.6864 47.4051, 47.2184 48.0068\\nQ 47.7505 48.6085, 47.7505 49.6853\\nQ 47.7505 50.7747, 47.2121 51.3954\\nQ 46.6737 52.0098, 45.692 52.0098\\nQ 44.7039 52.0098, 44.1655 51.3954\\nQ 43.6335 50.781, 43.6335 49.6853\\nM 45.692 51.5031\\nQ 46.376 51.5031, 46.7434 51.0471\\nQ 47.1171 50.5847, 47.1171 49.6853\\nQ 47.1171 48.8049, 46.7434 48.3615\\nQ 46.376 47.9118, 45.692 47.9118\\nQ 45.0079 47.9118, 44.6342 48.3551\\nQ 44.2668 48.7985, 44.2668 49.6853\\nQ 44.2668 50.591, 44.6342 51.0471\\nQ 45.0079 51.5031, 45.692 51.5031\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 29.91 70.2704\\nQ 29.91 69.1936, 30.4421 68.5919\\nQ 30.9741 67.9902, 31.9686 67.9902\\nQ 32.963 67.9902, 33.495 68.5919\\nQ 34.0271 69.1936, 34.0271 70.2704\\nQ 34.0271 71.3598, 33.4887 71.9805\\nQ 32.9503 72.5949, 31.9686 72.5949\\nQ 30.9805 72.5949, 30.4421 71.9805\\nQ 29.91 71.3662, 29.91 70.2704\\nM 31.9686 72.0882\\nQ 32.6526 72.0882, 33.02 71.6322\\nQ 33.3937 71.1698, 33.3937 70.2704\\nQ 33.3937 69.39, 33.02 68.9466\\nQ 32.6526 68.4969, 31.9686 68.4969\\nQ 31.2845 68.4969, 30.9108 68.9403\\nQ 30.5434 69.3837, 30.5434 70.2704\\nQ 30.5434 71.1761, 30.9108 71.6322\\nQ 31.2845 72.0882, 31.9686 72.0882\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 91, "data-ID": 461, "data-Solubility": -3.8, "data-SMILES": "O=C(OCC)CCCCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: ethyl_nonanoate<br><strong>SMILES</strong>: O=C(OCC)CCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.247,56.8222 L 115.538,61.8303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.538,61.8303 L 106.83,66.8383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.442,62.3785 L 118.734,67.3866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.734,67.3866 L 110.025,72.3946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.428,69.6165 L 108.408,82.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.408,82.9535 L 108.388,96.2906' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 108.428,69.6165 L 80.689,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 113.188,104.47 L 121.873,109.508' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.873,109.508 L 130.558,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.689,53.5263 L 80.689,21.4785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.2795,48.7192 L 74.2795,26.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 80.689,53.5263 L 52.9356,69.5503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.689,21.4785 L 52.9356,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.9356,5.45455 L 25.1821,21.4785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.9774,13.4089 L 32.55,24.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.1821,21.4785 L 25.1821,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 52.9356,69.5503 L 25.1821,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 51.9774,61.5959 L 32.55,50.3791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.485 56.8614\\nQ 126.485 54.6822, 127.562 53.4644\\nQ 128.639 52.2466, 130.652 52.2466\\nQ 132.664 52.2466, 133.741 53.4644\\nQ 134.818 54.6822, 134.818 56.8614\\nQ 134.818 59.0663, 133.728 60.3226\\nQ 132.639 61.5661, 130.652 61.5661\\nQ 128.652 61.5661, 127.562 60.3226\\nQ 126.485 59.0792, 126.485 56.8614\\nM 130.652 60.5405\\nQ 132.036 60.5405, 132.78 59.6176\\nQ 133.536 58.6818, 133.536 56.8614\\nQ 133.536 55.0796, 132.78 54.1822\\nQ 132.036 53.2721, 130.652 53.2721\\nQ 129.267 53.2721, 128.511 54.1694\\nQ 127.767 55.0668, 127.767 56.8614\\nQ 127.767 58.6946, 128.511 59.6176\\nQ 129.267 60.5405, 130.652 60.5405\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 104.214 101.707\\nQ 104.214 99.5278, 105.291 98.31\\nQ 106.368 97.0922, 108.381 97.0922\\nQ 110.393 97.0922, 111.47 98.31\\nQ 112.547 99.5278, 112.547 101.707\\nQ 112.547 103.912, 111.457 105.168\\nQ 110.367 106.412, 108.381 106.412\\nQ 106.381 106.412, 105.291 105.168\\nQ 104.214 103.925, 104.214 101.707\\nM 108.381 105.386\\nQ 109.765 105.386, 110.508 104.463\\nQ 111.265 103.527, 111.265 101.707\\nQ 111.265 99.9252, 110.508 99.0279\\nQ 109.765 98.1177, 108.381 98.1177\\nQ 106.996 98.1177, 106.24 99.0151\\nQ 105.496 99.9124, 105.496 101.707\\nQ 105.496 103.54, 106.24 104.463\\nQ 106.996 105.386, 108.381 105.386\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 92, "data-ID": 466, "data-Solubility": -1.85, "data-SMILES": "O=C(OC)c(cccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: methyl_benzoate<br><strong>SMILES</strong>: O=C(OC)c(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.0585,67.1132 L 87.2128,68.7498' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 87.2128,68.7498 L 84.367,70.3863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 91.1898,69.0804 L 88.3441,70.717' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.3441,70.717 L 85.4983,72.3535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9327,71.3699 L 84.9261,75.8303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9261,75.8303 L 84.9196,80.2906' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 84.9327,71.3699 L 75.1119,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.1499,84.0183 L 90.9429,86.2187' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.9429,86.2187 L 94.736,88.4191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 94.736,88.4191 L 94.7201,99.7716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 94.7201,99.7716 L 104.54,105.468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.54,105.468 L 104.527,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.1119,65.6732 L 75.1119,54.3268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.8427,63.9713 L 72.8427,56.0287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-7 atom-19' d='M 75.1119,65.6732 L 65.2859,71.3465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 75.1119,54.3268 L 65.2859,48.6535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 75.1119,54.3268 L 84.9319,48.6301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.2859,48.6535 L 55.4599,54.3268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 64.9467,51.4698 L 58.0685,55.441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 55.4599,54.3268 L 55.4599,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-11' d='M 65.2859,71.3465 L 55.4599,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-11' d='M 64.9467,68.5302 L 58.0685,64.559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 84.3663,49.6137 L 87.2124,51.2503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 87.2124,51.2503 L 90.0585,52.8869' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 85.4975,47.6465 L 88.3436,49.2831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 88.3436,49.2831 L 91.1897,50.9196' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 84.9319,48.6301 L 84.9257,44.2027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 84.9257,44.2027 L 84.9195,39.7754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 87.1499,35.9817 L 90.9429,33.7813' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 90.9429,33.7813 L 94.736,31.5809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 94.736,31.5809 L 94.7201,20.2284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 94.7201,20.2284 L 104.54,14.5317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 104.54,14.5317 L 104.527,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 90.8511 66.8569\\nQ 90.8511 65.8369, 91.3551 65.2669\\nQ 91.8591 64.6969, 92.8011 64.6969\\nQ 93.7431 64.6969, 94.2471 65.2669\\nQ 94.7511 65.8369, 94.7511 66.8569\\nQ 94.7511 67.8889, 94.2411 68.4769\\nQ 93.7311 69.0589, 92.8011 69.0589\\nQ 91.8651 69.0589, 91.3551 68.4769\\nQ 90.8511 67.8949, 90.8511 66.8569\\nM 92.8011 68.5789\\nQ 93.4491 68.5789, 93.7971 68.1469\\nQ 94.1511 67.7089, 94.1511 66.8569\\nQ 94.1511 66.0229, 93.7971 65.6029\\nQ 93.4491 65.1769, 92.8011 65.1769\\nQ 92.1531 65.1769, 91.7991 65.5969\\nQ 91.4511 66.0169, 91.4511 66.8569\\nQ 91.4511 67.7149, 91.7991 68.1469\\nQ 92.1531 68.5789, 92.8011 68.5789\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 82.966 82.7344\\nQ 82.966 81.7144, 83.47 81.1444\\nQ 83.974 80.5744, 84.916 80.5744\\nQ 85.858 80.5744, 86.362 81.1444\\nQ 86.866 81.7144, 86.866 82.7344\\nQ 86.866 83.7664, 86.356 84.3544\\nQ 85.846 84.9364, 84.916 84.9364\\nQ 83.98 84.9364, 83.47 84.3544\\nQ 82.966 83.7724, 82.966 82.7344\\nM 84.916 84.4564\\nQ 85.564 84.4564, 85.912 84.0244\\nQ 86.266 83.5864, 86.266 82.7344\\nQ 86.266 81.9004, 85.912 81.4804\\nQ 85.564 81.0544, 84.916 81.0544\\nQ 84.268 81.0544, 83.914 81.4744\\nQ 83.566 81.8944, 83.566 82.7344\\nQ 83.566 83.5924, 83.914 84.0244\\nQ 84.268 84.4564, 84.916 84.4564\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 90.8511 53.1671\\nQ 90.8511 52.1471, 91.3551 51.5771\\nQ 91.8591 51.0071, 92.8011 51.0071\\nQ 93.7431 51.0071, 94.2471 51.5771\\nQ 94.7511 52.1471, 94.7511 53.1671\\nQ 94.7511 54.1991, 94.2411 54.7871\\nQ 93.7311 55.3691, 92.8011 55.3691\\nQ 91.8651 55.3691, 91.3551 54.7871\\nQ 90.8511 54.2051, 90.8511 53.1671\\nM 92.8011 54.8891\\nQ 93.4491 54.8891, 93.7971 54.4571\\nQ 94.1511 54.0191, 94.1511 53.1671\\nQ 94.1511 52.3331, 93.7971 51.9131\\nQ 93.4491 51.4871, 92.8011 51.4871\\nQ 92.1531 51.4871, 91.7991 51.9071\\nQ 91.4511 52.3271, 91.4511 53.1671\\nQ 91.4511 54.0251, 91.7991 54.4571\\nQ 92.1531 54.8891, 92.8011 54.8891\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 82.966 37.2896\\nQ 82.966 36.2696, 83.47 35.6996\\nQ 83.974 35.1296, 84.916 35.1296\\nQ 85.858 35.1296, 86.362 35.6996\\nQ 86.866 36.2696, 86.866 37.2896\\nQ 86.866 38.3216, 86.356 38.9096\\nQ 85.846 39.4916, 84.916 39.4916\\nQ 83.98 39.4916, 83.47 38.9096\\nQ 82.966 38.3276, 82.966 37.2896\\nM 84.916 39.0116\\nQ 85.564 39.0116, 85.912 38.5796\\nQ 86.266 38.1416, 86.266 37.2896\\nQ 86.266 36.4556, 85.912 36.0356\\nQ 85.564 35.6096, 84.916 35.6096\\nQ 84.268 35.6096, 83.914 36.0296\\nQ 83.566 36.4496, 83.566 37.2896\\nQ 83.566 38.1476, 83.914 38.5796\\nQ 84.268 39.0116, 84.916 39.0116\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 93, "data-ID": 471, "data-Solubility": -4.4, "data-SMILES": "O=C(OCCCC)c(c(ccc1)C(=O)OCCCC)c1", "mols2grid-tooltip": "<strong>Name</strong>: dibutyl_phthalate<br><strong>SMILES</strong>: O=C(OCCCC)c(c(ccc1)C(=O)OCCCC)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,62.85 L 47.5,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,47.8575 L 60.8435,55.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.8435,55.5557 L 74.187,63.2538' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.813,63.2538 L 99.1565,55.5557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 99.1565,55.5557 L 112.5,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.5,47.8575 L 138.485,62.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 75.125 66.6375\\nQ 75.125 64.0875, 76.385 62.6625\\nQ 77.645 61.2375, 80 61.2375\\nQ 82.355 61.2375, 83.615 62.6625\\nQ 84.875 64.0875, 84.875 66.6375\\nQ 84.875 69.2175, 83.6 70.6875\\nQ 82.325 72.1425, 80 72.1425\\nQ 77.66 72.1425, 76.385 70.6875\\nQ 75.125 69.2325, 75.125 66.6375\\nM 80 70.9425\\nQ 81.62 70.9425, 82.49 69.8625\\nQ 83.375 68.7675, 83.375 66.6375\\nQ 83.375 64.5525, 82.49 63.5025\\nQ 81.62 62.4375, 80 62.4375\\nQ 78.38 62.4375, 77.495 63.4875\\nQ 76.625 64.5375, 76.625 66.6375\\nQ 76.625 68.7825, 77.495 69.8625\\nQ 78.38 70.9425, 80 70.9425\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 94, "data-ID": 476, "data-Solubility": -0.09, "data-SMILES": "CCOCC", "mols2grid-tooltip": "<strong>Name</strong>: diethyl_ether<br><strong>SMILES</strong>: CCOCC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.09</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 37.765,53.3025 L 47.945,47.429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.945,47.429 L 58.125,41.5554' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 69.563,41.6637 L 82.9065,49.3618' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.9065,49.3618 L 96.25,57.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.25,57.06 L 122.235,42.0675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.25,57.06 L 96.25,87.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 96.25,57.06 L 122.228,72.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 58.875 38.34\\nQ 58.875 35.79, 60.135 34.365\\nQ 61.395 32.94, 63.75 32.94\\nQ 66.105 32.94, 67.365 34.365\\nQ 68.625 35.79, 68.625 38.34\\nQ 68.625 40.92, 67.35 42.39\\nQ 66.075 43.845, 63.75 43.845\\nQ 61.41 43.845, 60.135 42.39\\nQ 58.875 40.935, 58.875 38.34\\nM 63.75 42.645\\nQ 65.37 42.645, 66.24 41.565\\nQ 67.125 40.47, 67.125 38.34\\nQ 67.125 36.255, 66.24 35.205\\nQ 65.37 34.14, 63.75 34.14\\nQ 62.13 34.14, 61.245 35.19\\nQ 60.375 36.24, 60.375 38.34\\nQ 60.375 40.485, 61.245 41.565\\nQ 62.13 42.645, 63.75 42.645\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 95, "data-ID": 481, "data-Solubility": -0.24, "data-SMILES": "COC(C)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: methyl_t-butyl_ether<br><strong>SMILES</strong>: COC(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.24</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,53.4824 L 32.5597,38.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.5597,38.8927 L 64.1866,57.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.1866,57.139 L 77.1716,49.6476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.1716,49.6476 L 90.1566,42.1563' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.47,42.1563 L 114.455,49.6476' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.455,49.6476 L 127.44,57.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 127.44,57.139 L 152.727,42.5492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 127.44,57.139 L 127.44,86.333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 91.0694 38.9219\\nQ 91.0694 36.4404, 92.2956 35.0537\\nQ 93.5217 33.667, 95.8134 33.667\\nQ 98.1052 33.667, 99.3313 35.0537\\nQ 100.557 36.4404, 100.557 38.9219\\nQ 100.557 41.4326, 99.3167 42.8631\\nQ 98.076 44.279, 95.8134 44.279\\nQ 93.5363 44.279, 92.2956 42.8631\\nQ 91.0694 41.4472, 91.0694 38.9219\\nM 95.8134 43.1112\\nQ 97.3899 43.1112, 98.2366 42.0602\\nQ 99.0978 40.9947, 99.0978 38.9219\\nQ 99.0978 36.8929, 98.2366 35.8711\\nQ 97.3899 34.8347, 95.8134 34.8347\\nQ 94.237 34.8347, 93.3757 35.8565\\nQ 92.5291 36.8783, 92.5291 38.9219\\nQ 92.5291 41.0093, 93.3757 42.0602\\nQ 94.237 43.1112, 95.8134 43.1112\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 96, "data-ID": 486, "data-Solubility": -1.34, "data-SMILES": "CCCOC(C)C", "mols2grid-tooltip": "<strong>Name</strong>: propyl_isopropyl_ether<br><strong>SMILES</strong>: CCCOC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.34</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0276,82.989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,82.989 L 80.0552,96.3436' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.8798,104.511 L 93.5987,109.528' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.5987,109.528 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 75.8946 101.767\\nQ 75.8946 99.5851, 76.9728 98.3657\\nQ 78.0511 97.1463, 80.0663 97.1463\\nQ 82.0816 97.1463, 83.1598 98.3657\\nQ 84.238 99.5851, 84.238 101.767\\nQ 84.238 103.975, 83.147 105.233\\nQ 82.0559 106.478, 80.0663 106.478\\nQ 78.0639 106.478, 76.9728 105.233\\nQ 75.8946 103.988, 75.8946 101.767\\nM 80.0663 105.451\\nQ 81.4526 105.451, 82.1971 104.527\\nQ 82.9544 103.59, 82.9544 101.767\\nQ 82.9544 99.983, 82.1971 99.0845\\nQ 81.4526 98.1732, 80.0663 98.1732\\nQ 78.68 98.1732, 77.9227 99.0717\\nQ 77.1782 99.9702, 77.1782 101.767\\nQ 77.1782 103.603, 77.9227 104.527\\nQ 78.68 105.451, 80.0663 105.451\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 97, "data-ID": 491, "data-Solubility": -1.85, "data-SMILES": "c1ccccc1OC", "mols2grid-tooltip": "<strong>Name</strong>: anisole<br><strong>SMILES</strong>: c1ccccc1OC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 138.283,80.9139 L 123.402,81.3695' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 123.402,81.3695 L 108.521,81.825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 140.296,87.21 L 132.77,100.198' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 132.77,100.198 L 125.244,113.185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.521,81.825 L 76.0288,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-1' d='M 125.244,113.185 L 108.521,81.825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.0288,63.065 L 76.0288,25.565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 68.5288,57.44 L 68.5288,31.19' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 76.0288,63.065 L 43.5538,81.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.0288,25.565 L 43.5538,6.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.5538,6.815 L 11.0788,25.565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 42.4326,16.1226 L 19.7001,29.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 11.0788,25.565 L 11.0788,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 43.5538,81.815 L 11.0788,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 42.4326,72.5074 L 19.7001,59.3824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 139.171 80.7675\\nQ 139.171 78.2175, 140.431 76.7925\\nQ 141.691 75.3675, 144.046 75.3675\\nQ 146.401 75.3675, 147.661 76.7925\\nQ 148.921 78.2175, 148.921 80.7675\\nQ 148.921 83.3475, 147.646 84.8175\\nQ 146.371 86.2725, 144.046 86.2725\\nQ 141.706 86.2725, 140.431 84.8175\\nQ 139.171 83.3625, 139.171 80.7675\\nM 144.046 85.0725\\nQ 145.666 85.0725, 146.536 83.9925\\nQ 147.421 82.8975, 147.421 80.7675\\nQ 147.421 78.6825, 146.536 77.6325\\nQ 145.666 76.5675, 144.046 76.5675\\nQ 142.426 76.5675, 141.541 77.6175\\nQ 140.671 78.6675, 140.671 80.7675\\nQ 140.671 82.9125, 141.541 83.9925\\nQ 142.426 85.0725, 144.046 85.0725\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 98, "data-ID": 496, "data-Solubility": -1.6, "data-SMILES": "O(C1c(cccc2)c2)C1", "mols2grid-tooltip": "<strong>Name</strong>: styrene_oxide<br><strong>SMILES</strong>: O(C1c(cccc2)c2)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,62.3231 L 23.7827,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.7827,52.7973 L 44.4322,64.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.4322,64.7105 L 65.0816,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.0816,52.7973 L 73.5596,57.6885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.5596,57.6885 L 82.0376,62.5796' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 89.4244,62.5796 L 97.9024,57.6885' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.9024,57.6885 L 106.38,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 106.38,52.7973 L 127.028,64.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 127.028,64.7105 L 133.497,60.9785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 133.497,60.9785 L 139.966,57.2466' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 82.6336 64.7295\\nQ 82.6336 63.1093, 83.4342 62.2039\\nQ 84.2347 61.2985, 85.731 61.2985\\nQ 87.2273 61.2985, 88.0279 62.2039\\nQ 88.8284 63.1093, 88.8284 64.7295\\nQ 88.8284 66.3688, 88.0183 67.3027\\nQ 87.2082 68.2272, 85.731 68.2272\\nQ 84.2443 68.2272, 83.4342 67.3027\\nQ 82.6336 66.3783, 82.6336 64.7295\\nM 85.731 67.4648\\nQ 86.7603 67.4648, 87.3131 66.7786\\nQ 87.8754 66.0828, 87.8754 64.7295\\nQ 87.8754 63.4048, 87.3131 62.7376\\nQ 86.7603 62.061, 85.731 62.061\\nQ 84.7017 62.061, 84.1394 62.7281\\nQ 83.5866 63.3952, 83.5866 64.7295\\nQ 83.5866 66.0924, 84.1394 66.7786\\nQ 84.7017 67.4648, 85.731 67.4648\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 140.442 55.2038\\nQ 140.442 53.5836, 141.243 52.6782\\nQ 142.044 51.7728, 143.54 51.7728\\nQ 145.036 51.7728, 145.837 52.6782\\nQ 146.637 53.5836, 146.637 55.2038\\nQ 146.637 56.843, 145.827 57.777\\nQ 145.017 58.7015, 143.54 58.7015\\nQ 142.053 58.7015, 141.243 57.777\\nQ 140.442 56.8526, 140.442 55.2038\\nM 143.54 57.939\\nQ 144.569 57.939, 145.122 57.2528\\nQ 145.684 56.5571, 145.684 55.2038\\nQ 145.684 53.879, 145.122 53.2119\\nQ 144.569 52.5352, 143.54 52.5352\\nQ 142.511 52.5352, 141.948 53.2024\\nQ 141.396 53.8695, 141.396 55.2038\\nQ 141.396 56.5666, 141.948 57.2528\\nQ 142.511 57.939, 143.54 57.939\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 147.447 51.849\\nL 148.362 51.849\\nL 148.362 54.7177\\nL 151.812 54.7177\\nL 151.812 51.849\\nL 152.727 51.849\\nL 152.727 58.5966\\nL 151.812 58.5966\\nL 151.812 55.4802\\nL 148.362 55.4802\\nL 148.362 58.5966\\nL 147.447 58.5966\\nL 147.447 51.849\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 99, "data-ID": 501, "data-Solubility": -0.42, "data-SMILES": "CCCCOCCO", "mols2grid-tooltip": "<strong>Name</strong>: 2-butoxyethanol<br><strong>SMILES</strong>: CCCCOCCO<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.42</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.159,24.0443 L 118.188,29.3783' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.188,29.3783 L 118.218,34.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.533,24.0258 L 121.562,29.3598' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.562,29.3598 L 121.591,34.6938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.904,34.7031 L 105.328,42.7609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-1 atom-24' d='M 119.904,34.7031 L 134.57,43.0578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.328,42.7609 L 100.654,40.2416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.654,40.2416 L 95.9795,37.7222' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 105.328,42.7609 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-2 atom-23' d='M 105.328,42.7609 L 119.491,50.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.1674,51.1752 L 91.1674,67.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-4 atom-21' d='M 91.1674,51.1752 L 77.211,42.9656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-4 atom-22' d='M 91.1674,51.1752 L 79.4951,57.9487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.1674,67.3898 L 77.211,75.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-5 atom-20' d='M 91.1674,67.3898 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.211,75.3936 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 77.211,75.3936 L 77.4157,91.6071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 63.2546,67.5945 L 49.2982,75.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-7 atom-17' d='M 63.2546,67.5945 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.2982,75.5983 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 49.2982,75.5983 L 34.9313,67.8003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-8 atom-16' d='M 49.2982,75.5983 L 49.1408,62.1041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 48.4365,90.3627 L 35.9988,101.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 50.1599,93.2631 L 34.2754,98.777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-9 atom-14' d='M 49.2982,91.8129 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 35.1371,100.227 L 21.1808,92.0176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 20.3432,90.5533 L 15.7509,93.1798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 15.7509,93.1798 L 11.1586,95.8064' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 22.0183,93.4819 L 17.4259,96.1085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 17.4259,96.1085 L 12.8336,98.7351' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 21.1808,92.0176 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 34.9313,67.8003 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-14' d='M 77.4157,91.6071 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 63.0499,51.1752 L 58.4475,48.5615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 58.4475,48.5615 L 53.845,45.9478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-17' d='M 77.211,42.9656 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-20' d='M 119.491,50.9705 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-24 atom-25' d='M 134.57,43.0578 L 139.131,40.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-24 atom-25' d='M 139.131,40.3928 L 143.692,37.7279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.637 21.2213\\nQ 117.637 20.0742, 118.204 19.4331\\nQ 118.771 18.7921, 119.83 18.7921\\nQ 120.89 18.7921, 121.456 19.4331\\nQ 122.023 20.0742, 122.023 21.2213\\nQ 122.023 22.3819, 121.45 23.0431\\nQ 120.876 23.6977, 119.83 23.6977\\nQ 118.778 23.6977, 118.204 23.0431\\nQ 117.637 22.3886, 117.637 21.2213\\nM 119.83 23.1578\\nQ 120.559 23.1578, 120.95 22.672\\nQ 121.348 22.1794, 121.348 21.2213\\nQ 121.348 20.2833, 120.95 19.811\\nQ 120.559 19.3319, 119.83 19.3319\\nQ 119.101 19.3319, 118.703 19.8043\\nQ 118.312 20.2766, 118.312 21.2213\\nQ 118.312 22.1862, 118.703 22.672\\nQ 119.101 23.1578, 119.83 23.1578\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 87.1806 33.9968\\nL 87.8284 33.9968\\nL 87.8284 36.0279\\nL 90.271 36.0279\\nL 90.271 33.9968\\nL 90.9188 33.9968\\nL 90.9188 38.7741\\nL 90.271 38.7741\\nL 90.271 36.5677\\nL 87.8284 36.5677\\nL 87.8284 38.7741\\nL 87.1806 38.7741\\nL 87.1806 33.9968\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 91.2562 36.372\\nQ 91.2562 35.2249, 91.823 34.5839\\nQ 92.3898 33.9428, 93.4492 33.9428\\nQ 94.5086 33.9428, 95.0754 34.5839\\nQ 95.6422 35.2249, 95.6422 36.372\\nQ 95.6422 37.5326, 95.0686 38.1939\\nQ 94.4951 38.8484, 93.4492 38.8484\\nQ 92.3966 38.8484, 91.823 38.1939\\nQ 91.2562 37.5393, 91.2562 36.372\\nM 93.4492 38.3086\\nQ 94.1779 38.3086, 94.5693 37.8227\\nQ 94.9674 37.3302, 94.9674 36.372\\nQ 94.9674 35.4341, 94.5693 34.9617\\nQ 94.1779 34.4826, 93.4492 34.4826\\nQ 92.7204 34.4826, 92.3223 34.955\\nQ 91.931 35.4273, 91.931 36.372\\nQ 91.931 37.3369, 92.3223 37.8227\\nQ 92.7204 38.3086, 93.4492 38.3086\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 7.27273 98.7315\\nQ 7.27273 97.5844, 7.83953 96.9434\\nQ 8.40633 96.3023, 9.46571 96.3023\\nQ 10.5251 96.3023, 11.0919 96.9434\\nQ 11.6587 97.5844, 11.6587 98.7315\\nQ 11.6587 99.8921, 11.0851 100.553\\nQ 10.5116 101.208, 9.46571 101.208\\nQ 8.41308 101.208, 7.83953 100.553\\nQ 7.27273 99.8988, 7.27273 98.7315\\nM 9.46571 100.668\\nQ 10.1945 100.668, 10.5858 100.182\\nQ 10.9839 99.6897, 10.9839 98.7315\\nQ 10.9839 97.7936, 10.5858 97.3212\\nQ 10.1945 96.8422, 9.46571 96.8422\\nQ 8.73697 96.8422, 8.33886 97.3145\\nQ 7.94749 97.7868, 7.94749 98.7315\\nQ 7.94749 99.6964, 8.33886 100.182\\nQ 8.73697 100.668, 9.46571 100.668\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 45.0461 42.1491\\nL 45.6938 42.1491\\nL 45.6938 44.1801\\nL 48.1365 44.1801\\nL 48.1365 42.1491\\nL 48.7843 42.1491\\nL 48.7843 46.9264\\nL 48.1365 46.9264\\nL 48.1365 44.72\\nL 45.6938 44.72\\nL 45.6938 46.9264\\nL 45.0461 46.9264\\nL 45.0461 42.1491\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 49.1216 44.5243\\nQ 49.1216 43.3772, 49.6884 42.7361\\nQ 50.2552 42.0951, 51.3146 42.0951\\nQ 52.374 42.0951, 52.9408 42.7361\\nQ 53.5076 43.3772, 53.5076 44.5243\\nQ 53.5076 45.6849, 52.9341 46.3461\\nQ 52.3605 47.0007, 51.3146 47.0007\\nQ 50.262 47.0007, 49.6884 46.3461\\nQ 49.1216 45.6916, 49.1216 44.5243\\nM 51.3146 46.4608\\nQ 52.0434 46.4608, 52.4347 45.975\\nQ 52.8328 45.4824, 52.8328 44.5243\\nQ 52.8328 43.5863, 52.4347 43.114\\nQ 52.0434 42.6349, 51.3146 42.6349\\nQ 50.5859 42.6349, 50.1878 43.1073\\nQ 49.7964 43.5796, 49.7964 44.5243\\nQ 49.7964 45.4892, 50.1878 45.975\\nQ 50.5859 46.4608, 51.3146 46.4608\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 144.03 36.2629\\nQ 144.03 35.1158, 144.596 34.4748\\nQ 145.163 33.8337, 146.223 33.8337\\nQ 147.282 33.8337, 147.849 34.4748\\nQ 148.416 35.1158, 148.416 36.2629\\nQ 148.416 37.4235, 147.842 38.0848\\nQ 147.268 38.7393, 146.223 38.7393\\nQ 145.17 38.7393, 144.596 38.0848\\nQ 144.03 37.4302, 144.03 36.2629\\nM 146.223 38.1995\\nQ 146.951 38.1995, 147.343 37.7136\\nQ 147.741 37.2211, 147.741 36.2629\\nQ 147.741 35.325, 147.343 34.8526\\nQ 146.951 34.3736, 146.223 34.3736\\nQ 145.494 34.3736, 145.096 34.8459\\nQ 144.704 35.3182, 144.704 36.2629\\nQ 144.704 37.2278, 145.096 37.7136\\nQ 145.494 38.1995, 146.223 38.1995\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 148.989 33.8877\\nL 149.637 33.8877\\nL 149.637 35.9188\\nL 152.079 35.9188\\nL 152.079 33.8877\\nL 152.727 33.8877\\nL 152.727 38.6651\\nL 152.079 38.6651\\nL 152.079 36.4586\\nL 149.637 36.4586\\nL 149.637 38.6651\\nL 148.989 38.6651\\nL 148.989 33.8877\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 100, "data-ID": 506, "data-Solubility": -2.97, "data-SMILES": "O=C(C(O)(C(C(C(C(C(C(=CC(=O)C1)C2)(C1)C)C3O)C2)C4)(C3)C)C4)CO", "mols2grid-tooltip": "<strong>Name</strong>: hydrocortisone<br><strong>SMILES</strong>: O=C(C(O)(C(C(C(C(C(C(=CC(=O)C1)C2)(C1)C)C3O)C2)C4)(C3)C)C4)CO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.97</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 12.0979,93.0234 L 15.9794,90.8033' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.9794,90.8033 L 19.8609,88.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 10.6679,90.5232 L 14.5494,88.3032' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 14.5494,88.3032 L 18.4309,86.0831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.1459,87.3332 L 31.0604,94.3417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-1' d='M 19.1459,73.4919 L 19.1459,87.3332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 31.796,95.5798 L 42.414,85.9204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 30.3248,93.1037 L 43.8852,88.3965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1496,87.1585 L 55.2398,94.167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-3' d='M 43.1496,73.3162 L 43.1496,87.1585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.2398,94.167 L 67.1533,86.9828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 67.1533,86.9828 L 66.9786,73.1414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.9786,73.1414 L 78.893,66.3086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-6' d='M 55.0641,66.4834 L 66.9786,73.1414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.893,66.3086 L 103.072,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-7' d='M 78.893,52.4663 L 78.893,66.3086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 103.072,66.4834 L 103.072,52.2916' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 103.072,52.2916 L 90.9822,45.2831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 90.9822,45.2831 L 87.0306,43.1533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.0306,43.1533 L 83.079,41.0236' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 90.9822,45.2831 L 103.426,38.4042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-10 atom-19' d='M 90.9822,45.2831 L 78.893,52.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 104.866,38.3963 L 104.841,33.8868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 104.841,33.8868 L 104.816,29.3774' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 101.986,38.4121 L 101.961,33.9027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 101.961,33.9027 L 101.936,29.3933' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 103.426,38.4042 L 115.946,45.5365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 115.946,45.5365 L 121.012,42.5767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 121.012,42.5767 L 126.077,39.6168' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 130.698,39.583 L 135.802,42.4911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 135.802,42.4911 L 140.907,45.3992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 141.633,46.6427 L 145.488,44.3903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 145.488,44.3903 L 149.344,42.138' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 140.18,44.1558 L 144.036,41.9035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 144.036,41.9035 L 147.891,39.6511' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-18' d='M 140.907,45.3992 L 140.97,56.9201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 78.893,52.4663 L 68.9285,58.2488' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 78.893,52.4663 L 66.9786,45.4578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.9786,45.4578 L 54.8894,52.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 54.8894,52.4663 L 50.9992,50.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 50.9992,50.2571 L 47.109,48.0479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 54.8894,52.4663 L 55.0641,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 55.0641,66.4834 L 43.1496,73.3162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 43.1496,73.3162 L 43.0152,61.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-27' d='M 43.1496,73.3162 L 30.8847,66.6591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-28' d='M 30.1602,65.4144 L 19.8704,74.7365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-28' d='M 31.6092,67.9037 L 18.4215,72.2473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.19487 93.0653\\nQ 7.19487 92.0453, 7.69887 91.4753\\nQ 8.20287 90.9053, 9.14487 90.9053\\nQ 10.0869 90.9053, 10.5909 91.4753\\nQ 11.0949 92.0453, 11.0949 93.0653\\nQ 11.0949 94.0973, 10.5849 94.6853\\nQ 10.0749 95.2673, 9.14487 95.2673\\nQ 8.20887 95.2673, 7.69887 94.6853\\nQ 7.19487 94.1033, 7.19487 93.0653\\nM 9.14487 94.7873\\nQ 9.79287 94.7873, 10.1409 94.3553\\nQ 10.4949 93.9173, 10.4949 93.0653\\nQ 10.4949 92.2313, 10.1409 91.8113\\nQ 9.79287 91.3853, 9.14487 91.3853\\nQ 8.49687 91.3853, 8.14287 91.8053\\nQ 7.79487 92.2253, 7.79487 93.0653\\nQ 7.79487 93.9233, 8.14287 94.3553\\nQ 8.49687 94.7873, 9.14487 94.7873\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 75.267 37.7174\\nL 75.843 37.7174\\nL 75.843 39.5234\\nL 78.015 39.5234\\nL 78.015 37.7174\\nL 78.591 37.7174\\nL 78.591 41.9654\\nL 78.015 41.9654\\nL 78.015 40.0034\\nL 75.843 40.0034\\nL 75.843 41.9654\\nL 75.267 41.9654\\nL 75.267 37.7174\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 78.891 39.8294\\nQ 78.891 38.8094, 79.395 38.2394\\nQ 79.899 37.6694, 80.841 37.6694\\nQ 81.783 37.6694, 82.287 38.2394\\nQ 82.791 38.8094, 82.791 39.8294\\nQ 82.791 40.8614, 82.281 41.4494\\nQ 81.771 42.0314, 80.841 42.0314\\nQ 79.905 42.0314, 79.395 41.4494\\nQ 78.891 40.8674, 78.891 39.8294\\nM 80.841 41.5514\\nQ 81.489 41.5514, 81.837 41.1194\\nQ 82.191 40.6814, 82.191 39.8294\\nQ 82.191 38.9954, 81.837 38.5754\\nQ 81.489 38.1494, 80.841 38.1494\\nQ 80.193 38.1494, 79.839 38.5694\\nQ 79.491 38.9894, 79.491 39.8294\\nQ 79.491 40.6874, 79.839 41.1194\\nQ 80.193 41.5514, 80.841 41.5514\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 101.412 26.8953\\nQ 101.412 25.8753, 101.916 25.3053\\nQ 102.42 24.7353, 103.362 24.7353\\nQ 104.304 24.7353, 104.808 25.3053\\nQ 105.312 25.8753, 105.312 26.8953\\nQ 105.312 27.9273, 104.802 28.5153\\nQ 104.292 29.0973, 103.362 29.0973\\nQ 102.426 29.0973, 101.916 28.5153\\nQ 101.412 27.9333, 101.412 26.8953\\nM 103.362 28.6173\\nQ 104.01 28.6173, 104.358 28.1853\\nQ 104.712 27.7473, 104.712 26.8953\\nQ 104.712 26.0613, 104.358 25.6413\\nQ 104.01 25.2153, 103.362 25.2153\\nQ 102.714 25.2153, 102.36 25.6353\\nQ 102.012 26.0553, 102.012 26.8953\\nQ 102.012 27.7533, 102.36 28.1853\\nQ 102.714 28.6173, 103.362 28.6173\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 126.438 38.2789\\nQ 126.438 37.2589, 126.942 36.6889\\nQ 127.446 36.1189, 128.388 36.1189\\nQ 129.33 36.1189, 129.834 36.6889\\nQ 130.338 37.2589, 130.338 38.2789\\nQ 130.338 39.3109, 129.828 39.8989\\nQ 129.318 40.4809, 128.388 40.4809\\nQ 127.452 40.4809, 126.942 39.8989\\nQ 126.438 39.3169, 126.438 38.2789\\nM 128.388 40.0009\\nQ 129.036 40.0009, 129.384 39.5689\\nQ 129.738 39.1309, 129.738 38.2789\\nQ 129.738 37.4449, 129.384 37.0249\\nQ 129.036 36.5989, 128.388 36.5989\\nQ 127.74 36.5989, 127.386 37.0189\\nQ 127.038 37.4389, 127.038 38.2789\\nQ 127.038 39.1369, 127.386 39.5689\\nQ 127.74 40.0009, 128.388 40.0009\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 148.905 39.599\\nQ 148.905 38.579, 149.409 38.009\\nQ 149.913 37.439, 150.855 37.439\\nQ 151.797 37.439, 152.301 38.009\\nQ 152.805 38.579, 152.805 39.599\\nQ 152.805 40.631, 152.295 41.219\\nQ 151.785 41.801, 150.855 41.801\\nQ 149.919 41.801, 149.409 41.219\\nQ 148.905 40.637, 148.905 39.599\\nM 150.855 41.321\\nQ 151.503 41.321, 151.851 40.889\\nQ 152.205 40.451, 152.205 39.599\\nQ 152.205 38.765, 151.851 38.345\\nQ 151.503 37.919, 150.855 37.919\\nQ 150.207 37.919, 149.853 38.339\\nQ 149.505 38.759, 149.505 39.599\\nQ 149.505 40.457, 149.853 40.889\\nQ 150.207 41.321, 150.855 41.321\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 39.297 44.6769\\nL 39.873 44.6769\\nL 39.873 46.4829\\nL 42.045 46.4829\\nL 42.045 44.6769\\nL 42.621 44.6769\\nL 42.621 48.9249\\nL 42.045 48.9249\\nL 42.045 46.9629\\nL 39.873 46.9629\\nL 39.873 48.9249\\nL 39.297 48.9249\\nL 39.297 44.6769\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 42.921 46.7889\\nQ 42.921 45.7689, 43.425 45.1989\\nQ 43.929 44.6289, 44.871 44.6289\\nQ 45.813 44.6289, 46.317 45.1989\\nQ 46.821 45.7689, 46.821 46.7889\\nQ 46.821 47.8209, 46.311 48.4089\\nQ 45.801 48.9909, 44.871 48.9909\\nQ 43.935 48.9909, 43.425 48.4089\\nQ 42.921 47.8269, 42.921 46.7889\\nM 44.871 48.5109\\nQ 45.519 48.5109, 45.867 48.0789\\nQ 46.221 47.6409, 46.221 46.7889\\nQ 46.221 45.9549, 45.867 45.5349\\nQ 45.519 45.1089, 44.871 45.1089\\nQ 44.223 45.1089, 43.869 45.5289\\nQ 43.521 45.9489, 43.521 46.7889\\nQ 43.521 47.6469, 43.869 48.0789\\nQ 44.223 48.5109, 44.871 48.5109\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 101, "data-ID": 511, "data-Solubility": -4.37, "data-SMILES": "O=C1C=C2CCC3C4CCC(O)(C(=O)COC(=O)C)C4(C)CC(O)C3C2(C)C=C1", "mols2grid-tooltip": "<strong>Name</strong>: prednisolone_acetate<br><strong>SMILES</strong>: O=C1C=C2CCC3C4CCC(O)(C(=O)COC(=O)C)C4(C)CC(O)C3C2(C)C=C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.37</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 30.0593,86.752 L 30.0593,104.491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-0' d='M 45.1034,77.9952 L 30.0593,86.752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.143,102.889 L 24.1187,105.762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.1187,105.762 L 19.0944,108.636' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.9756,106.093 L 25.9513,108.966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.9513,108.966 L 20.927,111.84' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.0593,104.491 L 45.3286,113.473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.2713,115.059 L 59.879,102.68' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 44.3858,111.886 L 61.7645,105.853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.8218,104.267 L 76.3162,113.249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-4' d='M 60.8218,86.5268 L 60.8218,104.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.3162,113.249 L 91.5842,104.042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.5842,104.042 L 91.3603,86.3029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 91.3603,86.3029 L 106.63,77.5461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-7' d='M 76.091,77.77 L 91.3603,86.3029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 106.63,77.5461 L 137.617,77.77' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-8' d='M 106.63,59.8062 L 106.63,77.5461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 137.617,77.77 L 137.617,59.5823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 137.617,59.5823 L 122.123,50.6004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.123,50.6004 L 122.092,32.1308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-11 atom-16' d='M 122.123,50.6004 L 106.63,59.8062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.012,30.5308 L 117.996,27.6475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 117.996,27.6475 L 112.98,24.7643' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 121.172,33.7309 L 116.156,30.8477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 116.156,30.8477 L 111.141,27.9645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 122.092,32.1308 L 138.064,22.8622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.064,22.8622 L 138.055,17.0265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.055,17.0265 L 138.045,11.1907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 106.63,59.8062 L 106.596,45.0414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 106.63,59.8062 L 91.3603,50.8243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 91.3603,50.8243 L 75.8671,59.8062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 75.8671,59.8062 L 76.091,77.77' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 76.091,77.77 L 60.8218,86.5268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 60.8218,86.5268 L 60.6495,71.7632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-23' d='M 60.8218,86.5268 L 45.1034,77.9952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 14.843 111.836\\nQ 14.843 110.581, 15.4631 109.88\\nQ 16.0832 109.178, 17.2422 109.178\\nQ 18.4013 109.178, 19.0214 109.88\\nQ 19.6415 110.581, 19.6415 111.836\\nQ 19.6415 113.106, 19.014 113.829\\nQ 18.3865 114.545, 17.2422 114.545\\nQ 16.0906 114.545, 15.4631 113.829\\nQ 14.843 113.113, 14.843 111.836\\nM 17.2422 113.955\\nQ 18.0395 113.955, 18.4677 113.423\\nQ 18.9033 112.884, 18.9033 111.836\\nQ 18.9033 110.81, 18.4677 110.293\\nQ 18.0395 109.769, 17.2422 109.769\\nQ 16.4449 109.769, 16.0094 110.286\\nQ 15.5812 110.803, 15.5812 111.836\\nQ 15.5812 112.892, 16.0094 113.423\\nQ 16.4449 113.955, 17.2422 113.955\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 106.893 24.7878\\nQ 106.893 23.5328, 107.513 22.8315\\nQ 108.133 22.1301, 109.292 22.1301\\nQ 110.451 22.1301, 111.071 22.8315\\nQ 111.691 23.5328, 111.691 24.7878\\nQ 111.691 26.0576, 111.064 26.7811\\nQ 110.436 27.4972, 109.292 27.4972\\nQ 108.14 27.4972, 107.513 26.7811\\nQ 106.893 26.065, 106.893 24.7878\\nM 109.292 26.9066\\nQ 110.089 26.9066, 110.518 26.375\\nQ 110.953 25.8361, 110.953 24.7878\\nQ 110.953 23.7617, 110.518 23.2449\\nQ 110.089 22.7207, 109.292 22.7207\\nQ 108.495 22.7207, 108.059 23.2375\\nQ 107.631 23.7543, 107.631 24.7878\\nQ 107.631 25.8435, 108.059 26.375\\nQ 108.495 26.9066, 109.292 26.9066\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 135.641 8.11221\\nQ 135.641 6.8572, 136.261 6.15587\\nQ 136.881 5.45455, 138.04 5.45455\\nQ 139.199 5.45455, 139.82 6.15587\\nQ 140.44 6.8572, 140.44 8.11221\\nQ 140.44 9.38198, 139.812 10.1055\\nQ 139.185 10.8215, 138.04 10.8215\\nQ 136.889 10.8215, 136.261 10.1055\\nQ 135.641 9.38936, 135.641 8.11221\\nM 138.04 10.231\\nQ 138.838 10.231, 139.266 9.69942\\nQ 139.701 9.16051, 139.701 8.11221\\nQ 139.701 7.08606, 139.266 6.56929\\nQ 138.838 6.04514, 138.04 6.04514\\nQ 137.243 6.04514, 136.808 6.5619\\nQ 136.379 7.07867, 136.379 8.11221\\nQ 136.379 9.16789, 136.808 9.69942\\nQ 137.243 10.231, 138.04 10.231\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 141.067 5.5136\\nL 141.776 5.5136\\nL 141.776 7.73571\\nL 144.448 7.73571\\nL 144.448 5.5136\\nL 145.157 5.5136\\nL 145.157 10.7403\\nL 144.448 10.7403\\nL 144.448 8.3263\\nL 141.776 8.3263\\nL 141.776 10.7403\\nL 141.067 10.7403\\nL 141.067 5.5136\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 102, "data-ID": 516, "data-Solubility": -3.75, "data-SMILES": "C1C(=O)C=C2CCC3C4CCC(C(=O)CO)C4(C)CCC3C2(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: deoxycorticosterone<br><strong>SMILES</strong>: C1C(=O)C=C2CCC3C4CCC(C(=O)CO)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.75</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 91.137,37.6799 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.1674,51.1752 L 77.211,42.9656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-1' d='M 91.1674,67.3898 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-1' d='M 105.328,42.7609 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.211,42.9656 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.0499,51.1752 L 58.4475,48.5615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.4475,48.5615 L 53.845,45.9478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 63.0499,51.1752 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.2546,67.5945 L 58.2737,64.7506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.2737,64.7506 L 53.2928,61.9067' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 63.2546,67.5945 L 77.211,75.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 49.2982,75.5983 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 77.211,75.3936 L 77.4157,91.6071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-7 atom-18' d='M 77.211,75.3936 L 91.1674,67.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 77.4157,91.6071 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 63.4604,100.023 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 48.4365,90.3627 L 35.9988,101.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 50.1599,93.2631 L 34.2754,98.777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-10' d='M 49.2982,75.5983 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 35.1371,100.227 L 21.1808,92.0176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 20.3432,90.5533 L 15.7509,93.1798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 15.7509,93.1798 L 11.1586,95.8064' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 22.0183,93.4819 L 17.4259,96.1085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 17.4259,96.1085 L 12.8336,98.7351' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 21.1808,92.0176 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 21.1808,75.8041 L 34.9313,67.8003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 34.9313,67.8003 L 49.2982,75.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 49.2982,75.5983 L 37.6911,82.4832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 91.1674,67.3898 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 119.491,67.5945 L 119.491,50.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 119.491,50.9705 L 105.328,42.7609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-22' d='M 105.328,42.7609 L 105.486,48.1292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-22' d='M 105.486,48.1292 L 105.643,53.4975' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-21 atom-23' d='M 105.328,42.7609 L 119.904,34.7031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 121.591,34.6938 L 121.562,29.3598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 121.562,29.3598 L 121.533,24.0258' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 118.218,34.7123 L 118.188,29.3783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 118.188,29.3783 L 118.159,24.0443' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-25' d='M 119.904,34.7031 L 134.57,43.0578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-26' d='M 134.57,43.0578 L 139.131,40.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-26' d='M 139.131,40.3928 L 143.692,37.7279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 45.0461 42.1491\\nL 45.6938 42.1491\\nL 45.6938 44.1801\\nL 48.1365 44.1801\\nL 48.1365 42.1491\\nL 48.7843 42.1491\\nL 48.7843 46.9264\\nL 48.1365 46.9264\\nL 48.1365 44.72\\nL 45.6938 44.72\\nL 45.6938 46.9264\\nL 45.0461 46.9264\\nL 45.0461 42.1491\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 49.1216 44.5243\\nQ 49.1216 43.3772, 49.6884 42.7361\\nQ 50.2552 42.0951, 51.3146 42.0951\\nQ 52.374 42.0951, 52.9408 42.7361\\nQ 53.5076 43.3772, 53.5076 44.5243\\nQ 53.5076 45.6849, 52.9341 46.3461\\nQ 52.3605 47.0007, 51.3146 47.0007\\nQ 50.262 47.0007, 49.6884 46.3461\\nQ 49.1216 45.6916, 49.1216 44.5243\\nM 51.3146 46.4608\\nQ 52.0434 46.4608, 52.4347 45.975\\nQ 52.8328 45.4824, 52.8328 44.5243\\nQ 52.8328 43.5863, 52.4347 43.114\\nQ 52.0434 42.6349, 51.3146 42.6349\\nQ 50.5859 42.6349, 50.1878 43.1073\\nQ 49.7964 43.5796, 49.7964 44.5243\\nQ 49.7964 45.4892, 50.1878 45.975\\nQ 50.5859 46.4608, 51.3146 46.4608\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 50.1147 58.5144\\nL 52.9554 58.5144\\nL 52.9554 59.061\\nL 50.7557 59.061\\nL 50.7557 60.5117\\nL 52.7125 60.5117\\nL 52.7125 61.065\\nL 50.7557 61.065\\nL 50.7557 63.2917\\nL 50.1147 63.2917\\nL 50.1147 58.5144\\n' fill='#33CCCC'/>\\n<path class='atom-13' d='M 7.27273 98.7315\\nQ 7.27273 97.5844, 7.83953 96.9434\\nQ 8.40633 96.3023, 9.46571 96.3023\\nQ 10.5251 96.3023, 11.0919 96.9434\\nQ 11.6587 97.5844, 11.6587 98.7315\\nQ 11.6587 99.8921, 11.0851 100.553\\nQ 10.5116 101.208, 9.46571 101.208\\nQ 8.41308 101.208, 7.83953 100.553\\nQ 7.27273 99.8988, 7.27273 98.7315\\nM 9.46571 100.668\\nQ 10.1945 100.668, 10.5858 100.182\\nQ 10.9839 99.6897, 10.9839 98.7315\\nQ 10.9839 97.7936, 10.5858 97.3212\\nQ 10.1945 96.8422, 9.46571 96.8422\\nQ 8.73697 96.8422, 8.33886 97.3145\\nQ 7.94749 97.7868, 7.94749 98.7315\\nQ 7.94749 99.6964, 8.33886 100.182\\nQ 8.73697 100.668, 9.46571 100.668\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 103.531 56.2641\\nQ 103.531 55.117, 104.098 54.4759\\nQ 104.665 53.8349, 105.724 53.8349\\nQ 106.784 53.8349, 107.35 54.4759\\nQ 107.917 55.117, 107.917 56.2641\\nQ 107.917 57.4246, 107.344 58.0859\\nQ 106.77 58.7404, 105.724 58.7404\\nQ 104.672 58.7404, 104.098 58.0859\\nQ 103.531 57.4314, 103.531 56.2641\\nM 105.724 58.2006\\nQ 106.453 58.2006, 106.844 57.7148\\nQ 107.243 57.2222, 107.243 56.2641\\nQ 107.243 55.3261, 106.844 54.8538\\nQ 106.453 54.3747, 105.724 54.3747\\nQ 104.996 54.3747, 104.597 54.847\\nQ 104.206 55.3194, 104.206 56.2641\\nQ 104.206 57.229, 104.597 57.7148\\nQ 104.996 58.2006, 105.724 58.2006\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 108.491 53.8889\\nL 109.139 53.8889\\nL 109.139 55.9199\\nL 111.581 55.9199\\nL 111.581 53.8889\\nL 112.229 53.8889\\nL 112.229 58.6662\\nL 111.581 58.6662\\nL 111.581 56.4597\\nL 109.139 56.4597\\nL 109.139 58.6662\\nL 108.491 58.6662\\nL 108.491 53.8889\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 117.637 21.2213\\nQ 117.637 20.0742, 118.204 19.4331\\nQ 118.771 18.7921, 119.83 18.7921\\nQ 120.89 18.7921, 121.456 19.4331\\nQ 122.023 20.0742, 122.023 21.2213\\nQ 122.023 22.3819, 121.45 23.0431\\nQ 120.876 23.6977, 119.83 23.6977\\nQ 118.778 23.6977, 118.204 23.0431\\nQ 117.637 22.3886, 117.637 21.2213\\nM 119.83 23.1578\\nQ 120.559 23.1578, 120.95 22.672\\nQ 121.348 22.1794, 121.348 21.2213\\nQ 121.348 20.2833, 120.95 19.811\\nQ 120.559 19.3319, 119.83 19.3319\\nQ 119.101 19.3319, 118.703 19.8043\\nQ 118.312 20.2766, 118.312 21.2213\\nQ 118.312 22.1862, 118.703 22.672\\nQ 119.101 23.1578, 119.83 23.1578\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 144.03 36.2629\\nQ 144.03 35.1158, 144.596 34.4748\\nQ 145.163 33.8337, 146.223 33.8337\\nQ 147.282 33.8337, 147.849 34.4748\\nQ 148.416 35.1158, 148.416 36.2629\\nQ 148.416 37.4235, 147.842 38.0848\\nQ 147.268 38.7393, 146.223 38.7393\\nQ 145.17 38.7393, 144.596 38.0848\\nQ 144.03 37.4302, 144.03 36.2629\\nM 146.223 38.1995\\nQ 146.951 38.1995, 147.343 37.7136\\nQ 147.741 37.2211, 147.741 36.2629\\nQ 147.741 35.325, 147.343 34.8526\\nQ 146.951 34.3736, 146.223 34.3736\\nQ 145.494 34.3736, 145.096 34.8459\\nQ 144.704 35.3182, 144.704 36.2629\\nQ 144.704 37.2278, 145.096 37.7136\\nQ 145.494 38.1995, 146.223 38.1995\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 148.989 33.8877\\nL 149.637 33.8877\\nL 149.637 35.9188\\nL 152.079 35.9188\\nL 152.079 33.8877\\nL 152.727 33.8877\\nL 152.727 38.6651\\nL 152.079 38.6651\\nL 152.079 36.4586\\nL 149.637 36.4586\\nL 149.637 38.6651\\nL 148.989 38.6651\\nL 148.989 33.8877\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 103, "data-ID": 521, "data-Solubility": -3.43, "data-SMILES": "CC12CC(O)C3(F)C(CCC4=CC(=O)CCC43C)C2CCC1(O)C(=O)CO", "mols2grid-tooltip": "<strong>Name</strong>: fludrocortisone<br><strong>SMILES</strong>: CC12CC(O)C3(F)C(CCC4=CC(=O)CCC43C)C2CCC1(O)C(=O)CO<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.43</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.286,103.222 L 111.303,91.6161' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.303,91.6161 L 111.319,80.0103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.996,103.212 L 104.013,91.6058' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.013,91.6058 L 104.029,80' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.674,80.0051 L 117.579,74.3091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.579,74.3091 L 127.484,68.613' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.674,80.0051 L 76.1253,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.1253,61.7047 L 76.1253,25.2544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.8353,56.2371 L 68.8353,30.7219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 76.1253,61.7047 L 44.5594,79.9298' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.1253,25.2544 L 86.0191,19.5425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.0191,19.5425 L 95.913,13.8307' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 76.1253,25.2544 L 44.5594,7.0292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 44.5594,7.0292 L 12.9934,25.2544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 43.4696,16.0763 L 21.3734,28.8339' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.9934,25.2544 L 12.9934,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 44.5594,79.9298 L 12.9934,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 43.4696,70.8827 L 21.3734,58.1251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 102.894 109.195\\nQ 102.894 106.716, 104.119 105.331\\nQ 105.344 103.946, 107.633 103.946\\nQ 109.922 103.946, 111.147 105.331\\nQ 112.372 106.716, 112.372 109.195\\nQ 112.372 111.702, 111.132 113.131\\nQ 109.893 114.545, 107.633 114.545\\nQ 105.358 114.545, 104.119 113.131\\nQ 102.894 111.717, 102.894 109.195\\nM 107.633 113.379\\nQ 109.208 113.379, 110.053 112.329\\nQ 110.914 111.265, 110.914 109.195\\nQ 110.914 107.168, 110.053 106.147\\nQ 109.208 105.112, 107.633 105.112\\nQ 106.058 105.112, 105.198 106.133\\nQ 104.352 107.153, 104.352 109.195\\nQ 104.352 111.28, 105.198 112.329\\nQ 106.058 113.379, 107.633 113.379\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 128.213 65.4979\\nQ 128.213 63.0193, 129.438 61.6342\\nQ 130.662 60.2491, 132.951 60.2491\\nQ 135.24 60.2491, 136.465 61.6342\\nQ 137.69 63.0193, 137.69 65.4979\\nQ 137.69 68.0057, 136.451 69.4346\\nQ 135.211 70.8488, 132.951 70.8488\\nQ 130.677 70.8488, 129.438 69.4346\\nQ 128.213 68.0203, 128.213 65.4979\\nM 132.951 69.6824\\nQ 134.526 69.6824, 135.372 68.6326\\nQ 136.232 67.5683, 136.232 65.4979\\nQ 136.232 63.4713, 135.372 62.4507\\nQ 134.526 61.4155, 132.951 61.4155\\nQ 131.377 61.4155, 130.516 62.4361\\nQ 129.671 63.4567, 129.671 65.4979\\nQ 129.671 67.5829, 130.516 68.6326\\nQ 131.377 69.6824, 132.951 69.6824\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 138.929 60.3657\\nL 140.329 60.3657\\nL 140.329 64.7543\\nL 145.607 64.7543\\nL 145.607 60.3657\\nL 147.007 60.3657\\nL 147.007 70.6884\\nL 145.607 70.6884\\nL 145.607 65.9207\\nL 140.329 65.9207\\nL 140.329 70.6884\\nL 138.929 70.6884\\nL 138.929 60.3657\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 96.642 10.7034\\nQ 96.642 8.22477, 97.8667 6.83966\\nQ 99.0915 5.45455, 101.381 5.45455\\nQ 103.67 5.45455, 104.894 6.83966\\nQ 106.119 8.22477, 106.119 10.7034\\nQ 106.119 13.2112, 104.88 14.64\\nQ 103.64 16.0543, 101.381 16.0543\\nQ 99.106 16.0543, 97.8667 14.64\\nQ 96.642 13.2258, 96.642 10.7034\\nM 101.381 14.8879\\nQ 102.955 14.8879, 103.801 13.8381\\nQ 104.661 12.7738, 104.661 10.7034\\nQ 104.661 8.67675, 103.801 7.65614\\nQ 102.955 6.62096, 101.381 6.62096\\nQ 99.8059 6.62096, 98.9457 7.64156\\nQ 98.1 8.66217, 98.1 10.7034\\nQ 98.1 12.7883, 98.9457 13.8381\\nQ 99.8059 14.8879, 101.381 14.8879\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 107.358 5.57119\\nL 108.758 5.57119\\nL 108.758 9.9598\\nL 114.036 9.9598\\nL 114.036 5.57119\\nL 115.436 5.57119\\nL 115.436 15.8939\\nL 114.036 15.8939\\nL 114.036 11.1262\\nL 108.758 11.1262\\nL 108.758 15.8939\\nL 107.358 15.8939\\nL 107.358 5.57119\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 104, "data-ID": 526, "data-Solubility": -1.82, "data-SMILES": "O=C(O)c(c(O)ccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: salicylic_acid<br><strong>SMILES</strong>: O=C(O)c(c(O)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.82</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 127.487,46.7548 L 120.669,50.6757' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.669,50.6757 L 113.851,54.5966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.989,51.1049 L 123.171,55.0258' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 123.171,55.0258 L 116.353,58.9467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.102,56.7717 L 115.087,67.2134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.087,67.2134 L 115.071,77.6551' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 115.102,56.7717 L 93.385,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.954,84.132 L 127.867,89.3025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.867,89.3025 L 136.78,94.4729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 136.78,94.4729 L 136.752,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.385,44.1745 L 93.385,19.0838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 88.3669,40.4109 L 88.3669,22.8474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 93.385,44.1745 L 71.6565,56.7198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.385,19.0838 L 71.6565,6.53846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 71.6565,6.53846 L 49.928,19.0838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.9064,12.7661 L 55.6964,21.5478' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.928,19.0838 L 43.1176,15.1521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 43.1176,15.1521 L 36.3071,11.2203' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 49.928,19.0838 L 49.928,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 71.6565,56.7198 L 49.928,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 70.9064,50.4922 L 55.6964,41.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.24 46.7856\\nQ 129.24 45.0794, 130.083 44.126\\nQ 130.926 43.1725, 132.501 43.1725\\nQ 134.077 43.1725, 134.92 44.126\\nQ 135.763 45.0794, 135.763 46.7856\\nQ 135.763 48.5118, 134.91 49.4954\\nQ 134.057 50.4689, 132.501 50.4689\\nQ 130.936 50.4689, 130.083 49.4954\\nQ 129.24 48.5219, 129.24 46.7856\\nM 132.501 49.666\\nQ 133.585 49.666, 134.167 48.9434\\nQ 134.76 48.2107, 134.76 46.7856\\nQ 134.76 45.3905, 134.167 44.688\\nQ 133.585 43.9754, 132.501 43.9754\\nQ 131.417 43.9754, 130.825 44.678\\nQ 130.243 45.3805, 130.243 46.7856\\nQ 130.243 48.2208, 130.825 48.9434\\nQ 131.417 49.666, 132.501 49.666\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 111.803 81.8958\\nQ 111.803 80.1896, 112.646 79.2362\\nQ 113.489 78.2827, 115.065 78.2827\\nQ 116.641 78.2827, 117.484 79.2362\\nQ 118.327 80.1896, 118.327 81.8958\\nQ 118.327 83.622, 117.474 84.6056\\nQ 116.621 85.5791, 115.065 85.5791\\nQ 113.499 85.5791, 112.646 84.6056\\nQ 111.803 83.6321, 111.803 81.8958\\nM 115.065 84.7762\\nQ 116.149 84.7762, 116.731 84.0536\\nQ 117.323 83.3209, 117.323 81.8958\\nQ 117.323 80.5008, 116.731 79.7982\\nQ 116.149 79.0856, 115.065 79.0856\\nQ 113.981 79.0856, 113.389 79.7882\\nQ 112.807 80.4907, 112.807 81.8958\\nQ 112.807 83.331, 113.389 84.0536\\nQ 113.981 84.7762, 115.065 84.7762\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 23.2198 5.53484\\nL 24.1833 5.53484\\nL 24.1833 8.55575\\nL 27.8164 8.55575\\nL 27.8164 5.53484\\nL 28.7799 5.53484\\nL 28.7799 12.6405\\nL 27.8164 12.6405\\nL 27.8164 9.35865\\nL 24.1833 9.35865\\nL 24.1833 12.6405\\nL 23.2198 12.6405\\nL 23.2198 5.53484\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 29.2817 9.0676\\nQ 29.2817 7.36144, 30.1248 6.40799\\nQ 30.9678 5.45455, 32.5435 5.45455\\nQ 34.1192 5.45455, 34.9622 6.40799\\nQ 35.8053 7.36144, 35.8053 9.0676\\nQ 35.8053 10.7938, 34.9522 11.7774\\nQ 34.0991 12.7509, 32.5435 12.7509\\nQ 30.9778 12.7509, 30.1248 11.7774\\nQ 29.2817 10.8039, 29.2817 9.0676\\nM 32.5435 11.948\\nQ 33.6274 11.948, 34.2095 11.2254\\nQ 34.8017 10.4928, 34.8017 9.0676\\nQ 34.8017 7.67256, 34.2095 6.97002\\nQ 33.6274 6.25745, 32.5435 6.25745\\nQ 31.4596 6.25745, 30.8674 6.95999\\nQ 30.2853 7.66252, 30.2853 9.0676\\nQ 30.2853 10.5028, 30.8674 11.2254\\nQ 31.4596 11.948, 32.5435 11.948\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 105, "data-ID": 531, "data-Solubility": -2.35, "data-SMILES": "O=C(OCC)c(ccc(O)c1)c1", "mols2grid-tooltip": "<strong>Name</strong>: ethyl-p-hydroxybenzoate<br><strong>SMILES</strong>: O=C(OCC)c(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.35</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.611,90.5814 L 102.432,84.7051' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.432,84.7051 L 92.2537,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2537,78.8288 L 92.2537,41.3288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.7537,73.2038 L 84.7537,46.9538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 92.2537,78.8288 L 59.7788,97.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2537,41.3288 L 59.7788,22.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2537,41.3288 L 102.822,35.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 102.822,35.2273 L 113.391,29.1258' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.7788,22.5788 L 27.3038,41.3288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.6576,31.8864 L 35.9251,45.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 27.3038,41.3288 L 27.3038,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 59.7788,97.5788 L 27.3038,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 58.6576,88.2711 L 35.9251,75.1461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 113.361 93.8588\\nQ 113.361 91.3088, 114.621 89.8838\\nQ 115.881 88.4588, 118.236 88.4588\\nQ 120.591 88.4588, 121.851 89.8838\\nQ 123.111 91.3088, 123.111 93.8588\\nQ 123.111 96.4388, 121.836 97.9088\\nQ 120.561 99.3638, 118.236 99.3638\\nQ 115.896 99.3638, 114.621 97.9088\\nQ 113.361 96.4538, 113.361 93.8588\\nM 118.236 98.1638\\nQ 119.856 98.1638, 120.726 97.0838\\nQ 121.611 95.9888, 121.611 93.8588\\nQ 121.611 91.7738, 120.726 90.7238\\nQ 119.856 89.6588, 118.236 89.6588\\nQ 116.616 89.6588, 115.731 90.7088\\nQ 114.861 91.7588, 114.861 93.8588\\nQ 114.861 96.0038, 115.731 97.0838\\nQ 116.616 98.1638, 118.236 98.1638\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 124.386 88.5788\\nL 125.826 88.5788\\nL 125.826 93.0938\\nL 131.256 93.0938\\nL 131.256 88.5788\\nL 132.696 88.5788\\nL 132.696 99.1988\\nL 131.256 99.1988\\nL 131.256 94.2938\\nL 125.826 94.2938\\nL 125.826 99.1988\\nL 124.386 99.1988\\nL 124.386 88.5788\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 114.141 26.6963\\nQ 114.141 24.0563, 115.371 22.6763\\nQ 116.616 21.2813, 118.971 21.2813\\nQ 121.161 21.2813, 122.331 22.8263\\nL 121.341 23.6363\\nQ 120.486 22.5113, 118.971 22.5113\\nQ 117.366 22.5113, 116.511 23.5913\\nQ 115.671 24.6563, 115.671 26.6963\\nQ 115.671 28.7963, 116.541 29.8763\\nQ 117.426 30.9563, 119.136 30.9563\\nQ 120.306 30.9563, 121.671 30.2513\\nL 122.091 31.3763\\nQ 121.536 31.7363, 120.696 31.9463\\nQ 119.856 32.1563, 118.926 32.1563\\nQ 116.616 32.1563, 115.371 30.7463\\nQ 114.141 29.3363, 114.141 26.6963\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 123.621 20.6363\\nL 125.001 20.6363\\nL 125.001 32.0213\\nL 123.621 32.0213\\nL 123.621 20.6363\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 106, "data-ID": 536, "data-Solubility": -1.06, "data-SMILES": "Oc(c(ccc1)Cl)c1", "mols2grid-tooltip": "<strong>Name</strong>: 2-chlorophenol<br><strong>SMILES</strong>: Oc(c(ccc1)Cl)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.06</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.267,83.1507 L 113.382,78.5988' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.382,78.5988 L 105.498,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.498,74.0469 L 105.498,46.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.9024,69.8505 L 99.9024,50.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-1' d='M 81.2701,88.0351 L 105.498,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.498,46.0706 L 81.2701,32.0824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2701,32.0824 L 81.2701,23.3454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2701,23.3454 L 81.2701,14.6084' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 81.2701,32.0824 L 57.0426,46.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80.4337,39.0263 L 63.4744,48.818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 57.0426,46.0706 L 57.0426,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.0426,74.0469 L 47.8878,79.3321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 47.8878,79.3321 L 38.7331,84.6172' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 57.0426,74.0469 L 81.2701,88.0351' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 63.4744,71.2995 L 80.4337,81.0913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.2701,88.0351 L 81.2701,96.9427' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.2701,96.9427 L 81.2701,105.85' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.826 85.5116\\nQ 121.826 83.5421, 122.744 82.5126\\nQ 123.673 81.4718, 125.43 81.4718\\nQ 127.064 81.4718, 127.937 82.6245\\nL 127.198 83.2287\\nQ 126.56 82.3895, 125.43 82.3895\\nQ 124.232 82.3895, 123.595 83.1952\\nQ 122.968 83.9897, 122.968 85.5116\\nQ 122.968 87.0783, 123.617 87.884\\nQ 124.277 88.6897, 125.553 88.6897\\nQ 126.426 88.6897, 127.444 88.1638\\nL 127.757 89.0031\\nQ 127.343 89.2716, 126.717 89.4283\\nQ 126.09 89.585, 125.396 89.585\\nQ 123.673 89.585, 122.744 88.5331\\nQ 121.826 87.4812, 121.826 85.5116\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 128.899 80.9906\\nL 129.928 80.9906\\nL 129.928 89.4843\\nL 128.899 89.4843\\nL 128.899 80.9906\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 78.2151 9.97552\\nQ 78.2151 8.00599, 79.1327 6.97646\\nQ 80.0615 5.93574, 81.8185 5.93574\\nQ 83.4523 5.93574, 84.3251 7.08836\\nL 83.5866 7.69265\\nQ 82.9487 6.85336, 81.8185 6.85336\\nQ 80.6211 6.85336, 79.9832 7.65908\\nQ 79.3565 8.45361, 79.3565 9.97552\\nQ 79.3565 11.5422, 80.0056 12.3479\\nQ 80.6658 13.1536, 81.9416 13.1536\\nQ 82.8144 13.1536, 83.8328 12.6277\\nL 84.1461 13.467\\nQ 83.732 13.7355, 83.1054 13.8922\\nQ 82.4787 14.0489, 81.7849 14.0489\\nQ 80.0615 14.0489, 79.1327 12.997\\nQ 78.2151 11.9451, 78.2151 9.97552\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 85.2875 5.45455\\nL 86.3171 5.45455\\nL 86.3171 13.9482\\nL 85.2875 13.9482\\nL 85.2875 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 30.0716 85.5116\\nQ 30.0716 83.5421, 30.9892 82.5126\\nQ 31.918 81.4718, 33.6749 81.4718\\nQ 35.3087 81.4718, 36.1816 82.6245\\nL 35.443 83.2287\\nQ 34.8052 82.3895, 33.6749 82.3895\\nQ 32.4775 82.3895, 31.8397 83.1952\\nQ 31.213 83.9897, 31.213 85.5116\\nQ 31.213 87.0783, 31.8621 87.884\\nQ 32.5223 88.6897, 33.798 88.6897\\nQ 34.6709 88.6897, 35.6892 88.1638\\nL 36.0026 89.0031\\nQ 35.5885 89.2716, 34.9618 89.4283\\nQ 34.3352 89.585, 33.6414 89.585\\nQ 31.918 89.585, 30.9892 88.5331\\nQ 30.0716 87.4812, 30.0716 85.5116\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 37.144 80.9906\\nL 38.1735 80.9906\\nL 38.1735 89.4843\\nL 37.144 89.4843\\nL 37.144 80.9906\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 77.6332 110.439\\nQ 77.6332 108.536, 78.5732 107.473\\nQ 79.5132 106.41, 81.2701 106.41\\nQ 83.027 106.41, 83.967 107.473\\nQ 84.907 108.536, 84.907 110.439\\nQ 84.907 112.363, 83.9559 113.46\\nQ 83.0047 114.545, 81.2701 114.545\\nQ 79.5244 114.545, 78.5732 113.46\\nQ 77.6332 112.374, 77.6332 110.439\\nM 81.2701 113.65\\nQ 82.4787 113.65, 83.1278 112.844\\nQ 83.788 112.028, 83.788 110.439\\nQ 83.788 108.883, 83.1278 108.1\\nQ 82.4787 107.305, 81.2701 107.305\\nQ 80.0615 107.305, 79.4013 108.089\\nQ 78.7523 108.872, 78.7523 110.439\\nQ 78.7523 112.039, 79.4013 112.844\\nQ 80.0615 113.65, 81.2701 113.65\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 85.8582 106.499\\nL 86.9325 106.499\\nL 86.9325 109.868\\nL 90.9835 109.868\\nL 90.9835 106.499\\nL 92.0578 106.499\\nL 92.0578 114.422\\nL 90.9835 114.422\\nL 90.9835 110.763\\nL 86.9325 110.763\\nL 86.9325 114.422\\nL 85.8582 114.422\\nL 85.8582 106.499\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 107, "data-ID": 541, "data-Solubility": -2.34, "data-SMILES": "Clc1cc(Cl)cc(Cl)c1O", "mols2grid-tooltip": "<strong>Name</strong>: 2,4,6-trichlorophenol<br><strong>SMILES</strong>: Clc1cc(Cl)cc(Cl)c1O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.34</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.012,97.3011 L 122.026,87.3213' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.026,87.3213 L 122.04,77.3416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.743,97.2922 L 115.757,87.3124' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.757,87.3124 L 115.771,77.3327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.906,77.3371 L 127.423,72.4391' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.423,72.4391 L 135.94,67.5411' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 118.906,77.3371 L 91.7768,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.7768,61.6006 L 91.7768,30.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.5081,56.8991 L 85.5081,34.9587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 91.7768,61.6006 L 64.6333,77.2723' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.7768,30.2571 L 64.6333,14.5854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.6333,14.5854 L 37.4899,30.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.6962,22.365 L 44.6958,33.3352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 37.4899,30.2571 L 37.4899,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 37.4899,30.2571 L 27.2333,24.3359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 27.2333,24.3359 L 16.9767,18.4146' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 64.6333,77.2723 L 37.4899,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 63.6962,69.4928 L 44.6958,58.5226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 114.795 102.437\\nQ 114.795 100.306, 115.849 99.1145\\nQ 116.902 97.9235, 118.87 97.9235\\nQ 120.838 97.9235, 121.892 99.1145\\nQ 122.945 100.306, 122.945 102.437\\nQ 122.945 104.593, 121.879 105.822\\nQ 120.813 107.038, 118.87 107.038\\nQ 116.914 107.038, 115.849 105.822\\nQ 114.795 104.606, 114.795 102.437\\nM 118.87 106.035\\nQ 120.224 106.035, 120.951 105.132\\nQ 121.691 104.217, 121.691 102.437\\nQ 121.691 100.694, 120.951 99.8166\\nQ 120.224 98.9265, 118.87 98.9265\\nQ 117.516 98.9265, 116.776 99.8041\\nQ 116.049 100.682, 116.049 102.437\\nQ 116.049 104.23, 116.776 105.132\\nQ 117.516 106.035, 118.87 106.035\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 136.567 64.8624\\nQ 136.567 62.7311, 137.62 61.54\\nQ 138.673 60.349, 140.641 60.349\\nQ 142.61 60.349, 143.663 61.54\\nQ 144.716 62.7311, 144.716 64.8624\\nQ 144.716 67.0188, 143.65 68.2475\\nQ 142.585 69.4636, 140.641 69.4636\\nQ 138.685 69.4636, 137.62 68.2475\\nQ 136.567 67.0314, 136.567 64.8624\\nM 140.641 68.4606\\nQ 141.995 68.4606, 142.722 67.558\\nQ 143.462 66.6427, 143.462 64.8624\\nQ 143.462 63.1197, 142.722 62.2421\\nQ 141.995 61.3519, 140.641 61.3519\\nQ 139.287 61.3519, 138.547 62.2296\\nQ 137.82 63.1072, 137.82 64.8624\\nQ 137.82 66.6553, 138.547 67.558\\nQ 139.287 68.4606, 140.641 68.4606\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.782 60.4493\\nL 146.985 60.4493\\nL 146.985 64.223\\nL 151.524 64.223\\nL 151.524 60.4493\\nL 152.727 60.4493\\nL 152.727 69.3257\\nL 151.524 69.3257\\nL 151.524 65.226\\nL 146.985 65.226\\nL 146.985 69.3257\\nL 145.782 69.3257\\nL 145.782 60.4493\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 7.27273 18.0269\\nQ 7.27273 15.8203, 8.30079 14.6669\\nQ 9.3414 13.5009, 11.3098 13.5009\\nQ 13.1402 13.5009, 14.1181 14.7923\\nL 13.2907 15.4693\\nQ 12.576 14.529, 11.3098 14.529\\nQ 9.96826 14.529, 9.25363 15.4317\\nQ 8.55154 16.3218, 8.55154 18.0269\\nQ 8.55154 19.7822, 9.27871 20.6849\\nQ 10.0184 21.5875, 11.4477 21.5875\\nQ 12.4256 21.5875, 13.5665 20.9983\\nL 13.9175 21.9386\\nQ 13.4537 22.2395, 12.7516 22.415\\nQ 12.0495 22.5905, 11.2722 22.5905\\nQ 9.3414 22.5905, 8.30079 21.412\\nQ 7.27273 20.2335, 7.27273 18.0269\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 15.1964 12.9618\\nL 16.3498 12.9618\\nL 16.3498 22.4777\\nL 15.1964 22.4777\\nL 15.1964 12.9618\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 108, "data-ID": 546, "data-Solubility": -3.31, "data-SMILES": "O=C(O)c(ccc(c1)Cl)c1", "mols2grid-tooltip": "<strong>Name</strong>: p-chlorobenzoic_acid<br><strong>SMILES</strong>: O=C(O)c(ccc(c1)Cl)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.31</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.4061,87.2135 L 21.8566,82.7215' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.8566,82.7215 L 29.3071,78.2296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.4952,78.9365 L 35.3384,65.3881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.119,77.5228 L 37.7145,66.8018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-1' d='M 57.1093,66.095 L 29.3071,78.2296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.5265,66.095 L 27.7534,66.1893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 27.7534,66.1893 L 18.9804,66.2836' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 36.5265,66.095 L 63.2534,56.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.2534,56.7252 L 66.879,50.9343' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.879,50.9343 L 70.5046,45.1435' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 63.2534,56.7252 L 85.3723,69.0134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-16 atom-4' d='M 59.1061,34.4527 L 63.2534,56.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 85.3723,69.0134 L 112.714,57.954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-6' d='M 78.9209,78.6904 L 85.3723,69.0134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.714,57.954 L 108.259,34.9135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 136.215,69.9351 L 112.714,57.954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 108.259,34.9135 L 106.723,68.7062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.723,68.7062 L 130.071,79.4585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-9 atom-13' d='M 106.723,68.7062 L 78.9209,78.6904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 130.071,79.4585 L 138.064,87.0772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 138.064,87.0772 L 146.058,94.696' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 136.215,69.9351 L 130.071,79.4585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 147.779,94.1154 L 141.997,82.0252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 141.997,82.0252 L 136.215,69.9351' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 78.9209,78.6904 L 57.1093,66.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-14 atom-15' d='M 57.1093,66.095 L 52.8176,73.2635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-14 atom-15' d='M 52.8176,73.2635 L 48.5259,80.4321' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-14 atom-16' d='M 57.1093,66.095 L 59.1061,34.4527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-16 atom-17' d='M 59.1061,34.4527 L 66.2233,31.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-16 atom-17' d='M 66.2233,31.7252 L 73.3405,28.9978' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-16 atom-18' d='M 59.1061,34.4527 L 52.8007,28.5872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-16 atom-18' d='M 52.8007,28.5872 L 46.4953,22.7217' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 87.9727\\nQ 7.27273 86.3506, 8.02845 85.5027\\nQ 8.7934 84.6456, 10.2403 84.6456\\nQ 11.5859 84.6456, 12.3048 85.5949\\nL 11.6965 86.0926\\nQ 11.1712 85.4014, 10.2403 85.4014\\nQ 9.25421 85.4014, 8.72889 86.0649\\nQ 8.21278 86.7193, 8.21278 87.9727\\nQ 8.21278 89.2629, 8.74732 89.9265\\nQ 9.29107 90.5901, 10.3417 90.5901\\nQ 11.0606 90.5901, 11.8993 90.1569\\nL 12.1573 90.8481\\nQ 11.8163 91.0693, 11.3002 91.1983\\nQ 10.7841 91.3274, 10.2127 91.3274\\nQ 8.7934 91.3274, 8.02845 90.461\\nQ 7.27273 89.5947, 7.27273 87.9727\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 13.0974 84.2493\\nL 13.9453 84.2493\\nL 13.9453 91.2444\\nL 13.0974 91.2444\\nL 13.0974 84.2493\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 11.847 66.5189\\nQ 11.847 64.8969, 12.6028 64.049\\nQ 13.3677 63.1919, 14.8146 63.1919\\nQ 16.1602 63.1919, 16.8791 64.1411\\nL 16.2708 64.6388\\nQ 15.7455 63.9476, 14.8146 63.9476\\nQ 13.8285 63.9476, 13.3032 64.6112\\nQ 12.7871 65.2655, 12.7871 66.5189\\nQ 12.7871 67.8092, 13.3216 68.4728\\nQ 13.8654 69.1363, 14.916 69.1363\\nQ 15.6349 69.1363, 16.4736 68.7032\\nL 16.7316 69.3944\\nQ 16.3906 69.6156, 15.8745 69.7446\\nQ 15.3584 69.8736, 14.787 69.8736\\nQ 13.3677 69.8736, 12.6028 69.0073\\nQ 11.847 68.141, 11.847 66.5189\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 17.6717 62.7956\\nL 18.5196 62.7956\\nL 18.5196 69.7907\\nL 17.6717 69.7907\\nL 17.6717 62.7956\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 70.5188 41.328\\nQ 70.5188 39.7059, 71.2746 38.8581\\nQ 72.0395 38.001, 73.4865 38.001\\nQ 74.832 38.001, 75.5509 38.9502\\nL 74.9426 39.4479\\nQ 74.4173 38.7567, 73.4865 38.7567\\nQ 72.5003 38.7567, 71.975 39.4202\\nQ 71.4589 40.0746, 71.4589 41.328\\nQ 71.4589 42.6183, 71.9934 43.2818\\nQ 72.5372 43.9454, 73.5878 43.9454\\nQ 74.3067 43.9454, 75.1454 43.5122\\nL 75.4034 44.2034\\nQ 75.0624 44.4246, 74.5463 44.5537\\nQ 74.0302 44.6827, 73.4588 44.6827\\nQ 72.0395 44.6827, 71.2746 43.8164\\nQ 70.5188 42.95, 70.5188 41.328\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 76.3435 37.6047\\nL 77.1914 37.6047\\nL 77.1914 44.5997\\nL 76.3435 44.5997\\nL 76.3435 37.6047\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 146.737 98.2165\\nQ 146.737 96.6497, 147.511 95.7742\\nQ 148.285 94.8986, 149.732 94.8986\\nQ 151.179 94.8986, 151.953 95.7742\\nQ 152.727 96.6497, 152.727 98.2165\\nQ 152.727 99.8017, 151.944 100.705\\nQ 151.161 101.599, 149.732 101.599\\nQ 148.294 101.599, 147.511 100.705\\nQ 146.737 99.8109, 146.737 98.2165\\nM 149.732 100.862\\nQ 150.727 100.862, 151.262 100.198\\nQ 151.806 99.5252, 151.806 98.2165\\nQ 151.806 96.9354, 151.262 96.2903\\nQ 150.727 95.6359, 149.732 95.6359\\nQ 148.737 95.6359, 148.193 96.2811\\nQ 147.658 96.9262, 147.658 98.2165\\nQ 147.658 99.5344, 148.193 100.198\\nQ 148.737 100.862, 149.732 100.862\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 41.3926 82.1358\\nQ 41.3926 80.5137, 42.1483 79.6658\\nQ 42.9133 78.8087, 44.3602 78.8087\\nQ 45.7058 78.8087, 46.4246 79.758\\nL 45.8164 80.2557\\nQ 45.2911 79.5644, 44.3602 79.5644\\nQ 43.3741 79.5644, 42.8488 80.228\\nQ 42.3327 80.8824, 42.3327 82.1358\\nQ 42.3327 83.426, 42.8672 84.0896\\nQ 43.411 84.7532, 44.4616 84.7532\\nQ 45.1805 84.7532, 46.0191 84.32\\nL 46.2772 85.0112\\nQ 45.9362 85.2324, 45.4201 85.3614\\nQ 44.904 85.4905, 44.3326 85.4905\\nQ 42.9133 85.4905, 42.1483 84.6241\\nQ 41.3926 83.7578, 41.3926 82.1358\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 47.2172 78.4124\\nL 48.0651 78.4124\\nL 48.0651 85.4075\\nL 47.2172 85.4075\\nL 47.2172 78.4124\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 73.8013 28.0828\\nQ 73.8013 26.4607, 74.5571 25.6129\\nQ 75.322 24.7557, 76.769 24.7557\\nQ 78.1145 24.7557, 78.8334 25.705\\nL 78.2251 26.2027\\nQ 77.6998 25.5115, 76.769 25.5115\\nQ 75.7828 25.5115, 75.2575 26.175\\nQ 74.7414 26.8294, 74.7414 28.0828\\nQ 74.7414 29.3731, 75.2759 30.0366\\nQ 75.8197 30.7002, 76.8703 30.7002\\nQ 77.5892 30.7002, 78.4279 30.267\\nL 78.6859 30.9582\\nQ 78.3449 31.1794, 77.8288 31.3085\\nQ 77.3127 31.4375, 76.7413 31.4375\\nQ 75.322 31.4375, 74.5571 30.5712\\nQ 73.8013 29.7048, 73.8013 28.0828\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 79.626 24.3595\\nL 80.4739 24.3595\\nL 80.4739 31.3545\\nL 79.626 31.3545\\nL 79.626 24.3595\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 39.362 22.1245\\nQ 39.362 20.5025, 40.1177 19.6546\\nQ 40.8826 18.7975, 42.3296 18.7975\\nQ 43.6751 18.7975, 44.394 19.7467\\nL 43.7857 20.2444\\nQ 43.2604 19.5532, 42.3296 19.5532\\nQ 41.3435 19.5532, 40.8181 20.2168\\nQ 40.302 20.8711, 40.302 22.1245\\nQ 40.302 23.4148, 40.8366 24.0784\\nQ 41.3803 24.7419, 42.431 24.7419\\nQ 43.1498 24.7419, 43.9885 24.3088\\nL 44.2466 25\\nQ 43.9056 25.2212, 43.3894 25.3502\\nQ 42.8733 25.4792, 42.3019 25.4792\\nQ 40.8826 25.4792, 40.1177 24.6129\\nQ 39.362 23.7466, 39.362 22.1245\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 45.1866 18.4012\\nL 46.0345 18.4012\\nL 46.0345 25.3963\\nL 45.1866 25.3963\\nL 45.1866 18.4012\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 109, "data-ID": 551, "data-Solubility": -6.29, "data-SMILES": "ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: dieldrin<br><strong>SMILES</strong>: ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.29</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,61.5837 L 26.0956,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 26.0956,50.7235 L 49.6379,64.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 49.6379,64.3055 L 73.1801,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.1801,50.7235 L 96.7223,64.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.7223,64.3055 L 120.265,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 120.265,50.7235 L 127.946,55.1552' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.946,55.1552 L 135.627,59.587' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 137.387 57.7372\\nL 139.908 61.8118\\nQ 140.158 62.2139, 140.56 62.9419\\nQ 140.962 63.6699, 140.983 63.7133\\nL 140.983 57.7372\\nL 142.005 57.7372\\nL 142.005 65.4301\\nL 140.951 65.4301\\nL 138.245 60.9752\\nQ 137.93 60.4536, 137.593 59.856\\nQ 137.267 59.2584, 137.17 59.0737\\nL 137.17 65.4301\\nL 136.17 65.4301\\nL 136.17 57.7372\\nL 137.387 57.7372\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 142.928 57.7372\\nL 143.972 57.7372\\nL 143.972 61.0078\\nL 147.905 61.0078\\nL 147.905 57.7372\\nL 148.948 57.7372\\nL 148.948 65.4301\\nL 147.905 65.4301\\nL 147.905 61.877\\nL 143.972 61.877\\nL 143.972 65.4301\\nL 142.928 65.4301\\nL 142.928 57.7372\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 149.321 65.1602\\nQ 149.507 64.6797, 149.952 64.4144\\nQ 150.397 64.1419, 151.013 64.1419\\nQ 151.781 64.1419, 152.211 64.5578\\nQ 152.641 64.9737, 152.641 65.7124\\nQ 152.641 66.4654, 152.082 67.1682\\nQ 151.53 67.871, 150.382 68.7028\\nL 152.727 68.7028\\nL 152.727 69.2765\\nL 149.307 69.2765\\nL 149.307 68.7961\\nQ 150.253 68.122, 150.813 67.62\\nQ 151.379 67.118, 151.652 66.6662\\nQ 151.924 66.2144, 151.924 65.7482\\nQ 151.924 65.2606, 151.68 64.9881\\nQ 151.436 64.7156, 151.013 64.7156\\nQ 150.605 64.7156, 150.332 64.8805\\nQ 150.06 65.0455, 149.866 65.4112\\nL 149.321 65.1602\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 110, "data-ID": 556, "data-Solubility": -1.1, "data-SMILES": "CCCCCCN", "mols2grid-tooltip": "<strong>Name</strong>: hexylamine<br><strong>SMILES</strong>: CCCCCCN<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.1</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,61.1964 L 21.4926,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 21.4926,52.992 L 39.2777,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.2777,63.2526 L 57.0628,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.0628,52.992 L 74.8479,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.8479,63.2526 L 92.6329,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.6329,52.992 L 110.417,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 110.417,63.2526 L 128.202,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 128.202,52.992 L 134.005,56.34' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 134.005,56.34 L 139.809,59.6881' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 141.138 58.2906\\nL 143.043 61.3688\\nQ 143.232 61.6725, 143.535 62.2225\\nQ 143.839 62.7724, 143.855 62.8053\\nL 143.855 58.2906\\nL 144.627 58.2906\\nL 144.627 64.1022\\nL 143.831 64.1022\\nL 141.787 60.7367\\nQ 141.549 60.3427, 141.294 59.8912\\nQ 141.048 59.4398, 140.974 59.3002\\nL 140.974 64.1022\\nL 140.219 64.1022\\nL 140.219 58.2906\\nL 141.138 58.2906\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 145.325 58.2906\\nL 146.113 58.2906\\nL 146.113 60.7613\\nL 149.084 60.7613\\nL 149.084 58.2906\\nL 149.872 58.2906\\nL 149.872 64.1022\\nL 149.084 64.1022\\nL 149.084 61.418\\nL 146.113 61.418\\nL 146.113 64.1022\\nL 145.325 64.1022\\nL 145.325 58.2906\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 150.154 63.8983\\nQ 150.295 63.5353, 150.631 63.3349\\nQ 150.967 63.129, 151.432 63.129\\nQ 152.012 63.129, 152.337 63.4432\\nQ 152.662 63.7574, 152.662 64.3155\\nQ 152.662 64.8843, 152.24 65.4152\\nQ 151.823 65.9462, 150.956 66.5746\\nL 152.727 66.5746\\nL 152.727 67.008\\nL 150.143 67.008\\nL 150.143 66.645\\nQ 150.858 66.1358, 151.281 65.7565\\nQ 151.709 65.3773, 151.915 65.036\\nQ 152.121 64.6947, 152.121 64.3425\\nQ 152.121 63.9741, 151.936 63.7683\\nQ 151.752 63.5624, 151.432 63.5624\\nQ 151.124 63.5624, 150.918 63.687\\nQ 150.712 63.8116, 150.566 64.0879\\nL 150.154 63.8983\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 111, "data-ID": 561, "data-Solubility": -2.75, "data-SMILES": "CCCCCCCCN", "mols2grid-tooltip": "<strong>Name</strong>: n-octylamine<br><strong>SMILES</strong>: CCCCCCCCN<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0276,83.0147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,83.0147 L 80.0553,96.3949' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.1546,104.094 L 93.236,109.32' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.236,109.32 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 68.4433 97.1976\\nL 69.6756 97.1976\\nL 69.6756 101.061\\nL 74.3222 101.061\\nL 74.3222 97.1976\\nL 75.5545 97.1976\\nL 75.5545 106.285\\nL 74.3222 106.285\\nL 74.3222 102.088\\nL 69.6756 102.088\\nL 69.6756 106.285\\nL 68.4433 106.285\\nL 68.4433 97.1976\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 78.0575 97.1976\\nL 81.0354 102.011\\nQ 81.3307 102.486, 81.8056 103.346\\nQ 82.2805 104.206, 82.3062 104.257\\nL 82.3062 97.1976\\nL 83.5128 97.1976\\nL 83.5128 106.285\\nL 82.2677 106.285\\nL 79.0715 101.023\\nQ 78.6993 100.407, 78.3014 99.7006\\nQ 77.9163 98.9947, 77.8008 98.7764\\nL 77.8008 106.285\\nL 76.6199 106.285\\nL 76.6199 97.1976\\nL 78.0575 97.1976\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 112, "data-ID": 566, "data-Solubility": -1.28, "data-SMILES": "c1ccccc1NC", "mols2grid-tooltip": "<strong>Name</strong>: N-methylaniline<br><strong>SMILES</strong>: c1ccccc1NC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.772,53.5584 L 107.772,21.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.358,48.748 L 101.358,26.2995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.593 L 107.772,53.5584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.772,21.4892 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2281,21.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0412,13.4142 L 59.6008,24.6385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2281,21.4892 L 52.2281,53.5584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2281,53.5584 L 80,69.593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.6008,50.409 L 79.0412,61.6333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.593 L 80.0276,82.9645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,82.9645 L 80.0552,96.3361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.1519,104.03 L 93.2275,109.253' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.2275,109.253 L 102.303,114.475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 75.9807,104.048 L 66.9254,109.297' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 66.9254,109.297 L 57.8701,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 78.0587 97.1383\\nL 81.0348 101.949\\nQ 81.3298 102.423, 81.8044 103.283\\nQ 82.2791 104.142, 82.3047 104.194\\nL 82.3047 97.1383\\nL 83.5105 97.1383\\nL 83.5105 106.22\\nL 82.2662 106.22\\nL 79.0721 100.961\\nQ 78.7001 100.345, 78.3025 99.6397\\nQ 77.9176 98.9342, 77.8022 98.7161\\nL 77.8022 106.22\\nL 76.622 106.22\\nL 76.622 97.1383\\nL 78.0587 97.1383\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 113, "data-ID": 571, "data-Solubility": -1.92, "data-SMILES": "c1ccccc1N(C)C", "mols2grid-tooltip": "<strong>Name</strong>: N,N-dimethylaniline<br><strong>SMILES</strong>: c1ccccc1N(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.2253,96.0121 L 80.2253,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 80.2253,96.0121 L 112.316,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 80.2253,96.0121 L 48.1342,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 71.6977,92.3613 L 49.2339,105.335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.2253,58.9504 L 48.1342,40.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 71.6977,62.6012 L 49.2339,49.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 80.2253,58.9504 L 112.316,40.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 48.1342,40.4171 L 48.1697,28.5649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 48.1697,28.5649 L 48.2053,16.7127' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 48.1342,40.4171 L 15.5901,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 15.5901,58.9504 L 15.5901,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 23.0163,64.5097 L 23.0163,90.4529' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 48.1342,114.545 L 15.5901,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 112.316,40.4171 L 144.41,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 113.417,49.628 L 135.882,62.6014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 144.41,58.9504 L 144.41,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 112.316,114.545 L 144.41,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 113.417,105.335 L 135.882,92.3612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 45.8989 5.45455\\nL 49.3446 11.0242\\nQ 49.6862 11.5737, 50.2358 12.5688\\nQ 50.7853 13.564, 50.815 13.6234\\nL 50.815 5.45455\\nL 52.2112 5.45455\\nL 52.2112 15.97\\nL 50.7705 15.97\\nL 47.0722 9.88056\\nQ 46.6415 9.16765, 46.1811 8.35076\\nQ 45.7355 7.53388, 45.6018 7.28139\\nL 45.6018 15.97\\nL 44.2354 15.97\\nL 44.2354 5.45455\\nL 45.8989 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 53.4736 5.45455\\nL 54.8994 5.45455\\nL 54.8994 9.92512\\nL 60.276 9.92512\\nL 60.276 5.45455\\nL 61.7018 5.45455\\nL 61.7018 15.97\\nL 60.276 15.97\\nL 60.276 11.1133\\nL 54.8994 11.1133\\nL 54.8994 15.97\\nL 53.4736 15.97\\nL 53.4736 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 62.2116 15.6011\\nQ 62.4664 14.9443, 63.0742 14.5816\\nQ 63.682 14.2091, 64.525 14.2091\\nQ 65.5739 14.2091, 66.162 14.7777\\nQ 66.7502 15.3462, 66.7502 16.3559\\nQ 66.7502 17.3852, 65.9856 18.3458\\nQ 65.2308 19.3065, 63.6624 20.4436\\nL 66.8678 20.4436\\nL 66.8678 21.2278\\nL 62.192 21.2278\\nL 62.192 20.571\\nQ 63.4859 19.6496, 64.2505 18.9634\\nQ 65.0249 18.2772, 65.3974 17.6597\\nQ 65.7699 17.0421, 65.7699 16.4049\\nQ 65.7699 15.7384, 65.4366 15.3659\\nQ 65.1033 14.9934, 64.525 14.9934\\nQ 63.9662 14.9934, 63.5937 15.2188\\nQ 63.2212 15.4443, 62.9566 15.9442\\nL 62.2116 15.6011\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 114, "data-ID": 576, "data-Solubility": -1.92, "data-SMILES": "c(c(c(N)cc1)ccc2)(c2)c1", "mols2grid-tooltip": "<strong>Name</strong>: 1-naphthylamine<br><strong>SMILES</strong>: c(c(c(N)cc1)ccc2)(c2)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,76.095 L 112.475,38.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.975,70.47 L 104.975,44.22' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 84.965,91.9784 L 98.72,84.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 98.72,84.0367 L 112.475,76.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,38.595 L 138.457,23.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,38.595 L 80,19.845' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,19.845 L 47.525,38.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.8788,29.1526 L 56.1463,42.2776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,38.595 L 47.525,76.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.525,76.095 L 21.5425,91.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 47.525,76.095 L 61.28,84.0367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 61.28,84.0367 L 75.035,91.9784' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 55.4016,71.9824 L 65.0301,77.5415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0301,77.5415 L 74.6586,83.1007' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 77.6525 89.535\\nL 81.1325 95.16\\nQ 81.4775 95.715, 82.0325 96.72\\nQ 82.5875 97.725, 82.6175 97.785\\nL 82.6175 89.535\\nL 84.0275 89.535\\nL 84.0275 100.155\\nL 82.5725 100.155\\nL 78.8375 94.005\\nQ 78.4025 93.285, 77.9375 92.46\\nQ 77.4875 91.635, 77.3525 91.38\\nL 77.3525 100.155\\nL 75.9725 100.155\\nL 75.9725 89.535\\nL 77.6525 89.535\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 115, "data-ID": 581, "data-Solubility": 0.4, "data-SMILES": "c1c(C)ccc(C)n1", "mols2grid-tooltip": "<strong>Name</strong>: 2,5-dimethylpyridine<br><strong>SMILES</strong>: c1c(C)ccc(C)n1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.4</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 12.9362,41.285 L 12.9362,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.4362,46.8995 L 20.4362,73.1005' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 45.8037,22.5675 L 12.9362,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 12.9362,78.715 L 45.8037,97.4325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.8037,97.4325 L 78.2137,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 46.9144,88.1302 L 69.6014,75.0279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.2137,78.715 L 110.624,97.4325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 78.2137,41.285 L 78.2137,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.624,97.4325 L 124.348,89.5068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 124.348,89.5068 L 138.073,81.5811' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.991,88.56 L 120.598,83.012' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 120.598,83.012 L 130.205,77.464' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 143.036,72.4692 L 143.036,56.8771' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 143.036,56.8771 L 143.036,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 143.036,41.285 L 110.624,22.5675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 134.424,44.9722 L 111.735,31.87' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.624,22.5675 L 78.2137,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 78.2137,41.285 L 45.8037,22.5675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 69.6014,44.9721 L 46.9144,31.8698' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 140.689 73.405\\nL 144.169 79.03\\nQ 144.514 79.585, 145.069 80.59\\nQ 145.624 81.595, 145.654 81.655\\nL 145.654 73.405\\nL 147.064 73.405\\nL 147.064 84.025\\nL 145.609 84.025\\nL 141.874 77.875\\nQ 141.439 77.155, 140.974 76.33\\nQ 140.524 75.505, 140.389 75.25\\nL 140.389 84.025\\nL 139.009 84.025\\nL 139.009 73.405\\nL 140.689 73.405\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 116, "data-ID": 586, "data-Solubility": -1.45, "data-SMILES": "c1ccc2cnccc2c1", "mols2grid-tooltip": "<strong>Name</strong>: isoquinoline<br><strong>SMILES</strong>: c1ccc2cnccc2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.45</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 113.731,103.056 L 113.747,91.2803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.747,91.2803 L 113.764,79.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.334,103.046 L 106.351,91.2698' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.351,91.2698 L 106.367,79.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.066,79.4993 L 120.115,73.7198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.115,73.7198 L 130.165,67.9403' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 110.066,79.4993 L 78.0546,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.0546,60.9308 L 78.0546,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.6578,55.3831 L 70.6578,29.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-3 atom-8' d='M 78.0546,60.9308 L 46.0264,79.4228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.0546,23.9466 L 46.0264,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.0264,5.45455 L 13.9981,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 44.9206,14.6342 L 22.5008,27.5786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 13.9981,23.9466 L 13.9981,39.3579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 13.9981,39.3579 L 13.9981,54.7692' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 46.0264,79.4228 L 32.4606,71.5904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 32.4606,71.5904 L 18.8948,63.758' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 45.6551,70.6673 L 36.1591,65.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 36.1591,65.1846 L 26.663,59.7019' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 105.216 109.116\\nQ 105.216 106.601, 106.458 105.196\\nQ 107.701 103.79, 110.024 103.79\\nQ 112.346 103.79, 113.589 105.196\\nQ 114.832 106.601, 114.832 109.116\\nQ 114.832 111.661, 113.574 113.11\\nQ 112.317 114.545, 110.024 114.545\\nQ 107.716 114.545, 106.458 113.11\\nQ 105.216 111.675, 105.216 109.116\\nM 110.024 113.362\\nQ 111.621 113.362, 112.479 112.297\\nQ 113.352 111.217, 113.352 109.116\\nQ 113.352 107.06, 112.479 106.024\\nQ 111.621 104.974, 110.024 104.974\\nQ 108.426 104.974, 107.553 106.01\\nQ 106.695 107.045, 106.695 109.116\\nQ 106.695 111.232, 107.553 112.297\\nQ 108.426 113.362, 110.024 113.362\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.905 64.7796\\nQ 130.905 62.2647, 132.148 60.8593\\nQ 133.39 59.4539, 135.713 59.4539\\nQ 138.036 59.4539, 139.278 60.8593\\nQ 140.521 62.2647, 140.521 64.7796\\nQ 140.521 67.3241, 139.263 68.7739\\nQ 138.006 70.2089, 135.713 70.2089\\nQ 133.405 70.2089, 132.148 68.7739\\nQ 130.905 67.3389, 130.905 64.7796\\nM 135.713 69.0254\\nQ 137.311 69.0254, 138.169 67.9602\\nQ 139.041 66.8803, 139.041 64.7796\\nQ 139.041 62.7233, 138.169 61.6877\\nQ 137.311 60.6374, 135.713 60.6374\\nQ 134.115 60.6374, 133.242 61.6729\\nQ 132.384 62.7085, 132.384 64.7796\\nQ 132.384 66.8951, 133.242 67.9602\\nQ 134.115 69.0254, 135.713 69.0254\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 141.778 59.5722\\nL 143.199 59.5722\\nL 143.199 64.0251\\nL 148.554 64.0251\\nL 148.554 59.5722\\nL 149.974 59.5722\\nL 149.974 70.0461\\nL 148.554 70.0461\\nL 148.554 65.2086\\nL 143.199 65.2086\\nL 143.199 70.0461\\nL 141.778 70.0461\\nL 141.778 59.5722\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 11.6829 55.6938\\nL 15.115 61.2414\\nQ 15.4553 61.7888, 16.0026 62.78\\nQ 16.55 63.7712, 16.5796 63.8303\\nL 16.5796 55.6938\\nL 17.9702 55.6938\\nL 17.9702 66.1677\\nL 16.5352 66.1677\\nL 12.8516 60.1023\\nQ 12.4226 59.3922, 11.964 58.5786\\nQ 11.5202 57.7649, 11.387 57.5134\\nL 11.387 66.1677\\nL 10.026 66.1677\\nL 10.026 55.6938\\nL 11.6829 55.6938\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 117, "data-ID": 591, "data-Solubility": -0.84, "data-SMILES": "O=C(O)c(cccn1)c1", "mols2grid-tooltip": "<strong>Name</strong>: nicotinic_acid<br><strong>SMILES</strong>: O=C(O)c(cccn1)c1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.84</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.412,60.1558 L 121.412,44.7022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.412,44.7022 L 121.412,29.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.995,55.5197 L 113.995,44.7022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.995,44.7022 L 113.995,33.8847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 89.296,84.877 L 102.899,77.0231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 102.899,77.0231 L 116.502,69.1692' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.412,29.2486 L 147.107,14.4144' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 121.412,29.2486 L 107.809,21.3947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.809,21.3947 L 94.2061,13.5408' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.3859,13.5408 L 70.7829,21.3947' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.7829,21.3947 L 57.1799,29.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.0136,22.3203 L 74.4915,27.8181' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 74.4915,27.8181 L 64.9695,33.3158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.1799,29.2486 L 46.6946,23.1954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 46.6946,23.1954 L 36.2093,17.1421' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 57.1799,29.2486 L 57.1799,66.3342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.1799,66.3342 L 89.296,84.877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.706,62.6923 L 88.1872,75.6722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 89.296,84.877 L 89.296,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.091 61.0829\\nL 122.532 66.6457\\nQ 122.873 67.1946, 123.422 68.1885\\nQ 123.971 69.1824, 124.001 69.2417\\nL 124.001 61.0829\\nL 125.395 61.0829\\nL 125.395 71.5855\\nL 123.956 71.5855\\nL 120.262 65.5035\\nQ 119.832 64.7915, 119.372 63.9756\\nQ 118.927 63.1597, 118.794 62.9075\\nL 118.794 71.5855\\nL 117.429 71.5855\\nL 117.429 61.0829\\nL 119.091 61.0829\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 86.9745 5.45455\\nL 90.416 11.0174\\nQ 90.7572 11.5662, 91.3061 12.5601\\nQ 91.8549 13.554, 91.8846 13.6134\\nL 91.8846 5.45455\\nL 93.279 5.45455\\nL 93.279 15.9572\\nL 91.8401 15.9572\\nL 88.1464 9.87515\\nQ 87.7162 9.1631, 87.2563 8.34722\\nQ 86.8113 7.53134, 86.6778 7.27916\\nL 86.6778 15.9572\\nL 85.313 15.9572\\nL 85.313 5.45455\\nL 86.9745 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 12.8925 9.1631\\nL 14.3166 9.1631\\nL 14.3166 13.6282\\nL 19.6866 13.6282\\nL 19.6866 9.1631\\nL 21.1107 9.1631\\nL 21.1107 19.6657\\nL 19.6866 19.6657\\nL 19.6866 14.8149\\nL 14.3166 14.8149\\nL 14.3166 19.6657\\nL 12.8925 19.6657\\nL 12.8925 9.1631\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 21.6198 19.2973\\nQ 21.8744 18.6413, 22.4814 18.279\\nQ 23.0884 17.907, 23.9304 17.907\\nQ 24.978 17.907, 25.5654 18.4748\\nQ 26.1528 19.0427, 26.1528 20.0511\\nQ 26.1528 21.0791, 25.3892 22.0386\\nQ 24.6353 22.9981, 23.0688 24.1338\\nL 26.2703 24.1338\\nL 26.2703 24.9171\\nL 21.6002 24.9171\\nL 21.6002 24.2611\\nQ 22.8926 23.3408, 23.6562 22.6554\\nQ 24.4297 21.9701, 24.8017 21.3533\\nQ 25.1738 20.7365, 25.1738 20.1001\\nQ 25.1738 19.4343, 24.8409 19.0623\\nQ 24.508 18.6902, 23.9304 18.6902\\nQ 23.3723 18.6902, 23.0003 18.9154\\nQ 22.6282 19.1406, 22.3639 19.6399\\nL 21.6198 19.2973\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 29.163 9.1631\\nL 32.6045 14.7259\\nQ 32.9457 15.2748, 33.4946 16.2687\\nQ 34.0435 17.2626, 34.0731 17.3219\\nL 34.0731 9.1631\\nL 35.4676 9.1631\\nL 35.4676 19.6657\\nL 34.0286 19.6657\\nL 30.3349 13.5837\\nQ 29.9047 12.8717, 29.4449 12.0558\\nQ 28.9998 11.2399, 28.8663 10.9877\\nL 28.8663 19.6657\\nL 27.5016 19.6657\\nL 27.5016 9.1631\\nL 29.163 9.1631\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 118, "data-ID": 596, "data-Solubility": -1.28, "data-SMILES": "n1c(C)nc(N)cc1C", "mols2grid-tooltip": "<strong>Name</strong>: 2,6-dimethyl-4-pyrimidinamine<br><strong>SMILES</strong>: n1c(C)nc(N)cc1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.7475,86.1988 L 111.335,50.5338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 94.3527,78.5315 L 102.464,53.566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 67.2125,86.1988 L 83.48,86.1988' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 83.48,86.1988 L 99.7475,86.1988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.335,50.5338 L 80.9975,28.4913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.9975,28.4913 L 50.66,50.5338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.8554,37.8652 L 59.6191,53.2949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 50.66,50.5338 L 55.4388,65.2425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 55.4388,65.2425 L 60.2177,79.9512' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 48.665 80.8888\\nL 50.105 80.8888\\nL 50.105 85.4038\\nL 55.535 85.4038\\nL 55.535 80.8888\\nL 56.975 80.8888\\nL 56.975 91.5088\\nL 55.535 91.5088\\nL 55.535 86.6038\\nL 50.105 86.6038\\nL 50.105 91.5088\\nL 48.665 91.5088\\nL 48.665 80.8888\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 59.9 80.8888\\nL 63.38 86.5138\\nQ 63.725 87.0688, 64.28 88.0738\\nQ 64.835 89.0788, 64.865 89.1388\\nL 64.865 80.8888\\nL 66.275 80.8888\\nL 66.275 91.5088\\nL 64.82 91.5088\\nL 61.085 85.3588\\nQ 60.65 84.6388, 60.185 83.8138\\nQ 59.735 82.9888, 59.6 82.7338\\nL 59.6 91.5088\\nL 58.22 91.5088\\nL 58.22 80.8888\\nL 59.9 80.8888\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 119, "data-ID": 601, "data-Solubility": -0.17, "data-SMILES": "c1cccn1(H)", "mols2grid-tooltip": "<strong>Name</strong>: pyrrole<br><strong>SMILES</strong>: c1cccn1(H)<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.17</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 91.3936,85.0263 L 77.9586,80.7202' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.9586,80.7202 L 64.5235,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 102.361,82.8523 L 107.325,70.2672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 107.325,70.2672 L 112.289,57.6821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 97.0057,79.0157 L 107.325,70.2672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 107.325,70.2672 L 117.645,61.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.5235,76.4141 L 64.5235,43.5859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 71.1111,71.4899 L 71.1111,48.5101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 64.5235,76.4141 L 36.0979,93.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.5235,43.5859 L 78.232,39.1921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.232,39.1921 L 91.9404,34.7984' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 64.5235,43.5859 L 36.0979,26.7721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-3' d='M 114.967,59.6004 L 107.259,49.1614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-3' d='M 107.259,49.1614 L 99.5505,38.7225' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 36.0979,26.7721 L 7.27273,43.5859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 35.0933,34.9845 L 14.9157,46.7541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 7.27273,43.5859 L 7.27273,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 36.0979,93.2279 L 7.27273,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 35.0933,85.0155 L 14.9157,73.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 114.967,59.6004 L 126.318,59.5181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 126.318,59.5181 L 137.668,59.4358' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 93.6891 81.7589\\nL 96.7457 86.6996\\nQ 97.0487 87.1871, 97.5362 88.0698\\nQ 98.0237 88.9526, 98.0501 89.0053\\nL 98.0501 81.7589\\nL 99.2885 81.7589\\nL 99.2885 91.087\\nL 98.0105 91.087\\nL 94.7299 85.6851\\nQ 94.3478 85.0527, 93.9394 84.3281\\nQ 93.5441 83.6034, 93.4256 83.3794\\nL 93.4256 91.087\\nL 92.2134 91.087\\nL 92.2134 81.7589\\nL 93.6891 81.7589\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 93.1159 36.7787\\nQ 93.2213 36.8182, 93.6561 37.0026\\nQ 94.0909 37.1871, 94.5652 37.3057\\nQ 95.0527 37.4111, 95.527 37.4111\\nQ 96.4097 37.4111, 96.9236 36.9895\\nQ 97.4374 36.5547, 97.4374 35.8037\\nQ 97.4374 35.2899, 97.1739 34.9736\\nQ 96.9236 34.6574, 96.5283 34.4862\\nQ 96.1331 34.3149, 95.4743 34.1173\\nQ 94.6443 33.8669, 94.1436 33.6298\\nQ 93.6561 33.3926, 93.3004 32.892\\nQ 92.9578 32.3913, 92.9578 31.5481\\nQ 92.9578 30.3755, 93.7484 29.6509\\nQ 94.552 28.9262, 96.1331 28.9262\\nQ 97.2134 28.9262, 98.4387 29.4401\\nL 98.1357 30.4545\\nQ 97.0158 29.9934, 96.1726 29.9934\\nQ 95.2635 29.9934, 94.7628 30.3755\\nQ 94.2622 30.7444, 94.2754 31.39\\nQ 94.2754 31.8906, 94.5257 32.1937\\nQ 94.7892 32.4967, 95.1581 32.668\\nQ 95.5402 32.8393, 96.1726 33.0369\\nQ 97.0158 33.3004, 97.5165 33.5639\\nQ 98.0171 33.8274, 98.3729 34.3676\\nQ 98.7418 34.8946, 98.7418 35.8037\\nQ 98.7418 37.0949, 97.8722 37.7931\\nQ 97.0158 38.4783, 95.5797 38.4783\\nQ 94.7497 38.4783, 94.1173 38.2938\\nQ 93.498 38.1225, 92.7602 37.8195\\nL 93.1159 36.7787\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 138.682 62.6241\\nQ 138.788 62.6636, 139.223 62.848\\nQ 139.657 63.0325, 140.132 63.1511\\nQ 140.619 63.2565, 141.094 63.2565\\nQ 141.976 63.2565, 142.49 62.8349\\nQ 143.004 62.4001, 143.004 61.6491\\nQ 143.004 61.1353, 142.74 60.8191\\nQ 142.49 60.5029, 142.095 60.3316\\nQ 141.7 60.1603, 141.041 59.9627\\nQ 140.211 59.7123, 139.71 59.4752\\nQ 139.223 59.238, 138.867 58.7374\\nQ 138.524 58.2367, 138.524 57.3935\\nQ 138.524 56.2209, 139.315 55.4963\\nQ 140.119 54.7716, 141.7 54.7716\\nQ 142.78 54.7716, 144.005 55.2855\\nL 143.702 56.3\\nQ 142.582 55.8388, 141.739 55.8388\\nQ 140.83 55.8388, 140.329 56.2209\\nQ 139.829 56.5898, 139.842 57.2354\\nQ 139.842 57.7361, 140.092 58.0391\\nQ 140.356 58.3421, 140.725 58.5134\\nQ 141.107 58.6847, 141.739 58.8823\\nQ 142.582 59.1458, 143.083 59.4093\\nQ 143.584 59.6728, 143.939 60.213\\nQ 144.308 60.74, 144.308 61.6491\\nQ 144.308 62.9403, 143.439 63.6386\\nQ 142.582 64.3237, 141.146 64.3237\\nQ 140.316 64.3237, 139.684 64.1392\\nQ 139.065 63.9679, 138.327 63.6649\\nL 138.682 62.6241\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 145.428 54.7453\\nL 146.693 54.7453\\nL 146.693 58.711\\nL 151.462 58.711\\nL 151.462 54.7453\\nL 152.727 54.7453\\nL 152.727 64.0733\\nL 151.462 64.0733\\nL 151.462 59.765\\nL 146.693 59.765\\nL 146.693 64.0733\\nL 145.428 64.0733\\nL 145.428 54.7453\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 120, "data-ID": 606, "data-Solubility": -3.18, "data-SMILES": "N(c(c(S1)ccc2)c2)=C1S", "mols2grid-tooltip": "<strong>Name</strong>: 2-mercaptobenzothiazole<br><strong>SMILES</strong>: N(c(c(S1)ccc2)c2)=C1S<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.18</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.3938,45.4458 L 41.3938,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.8119,50.2504 L 47.8119,72.672' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 69.5202,29.4282 L 41.3938,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,77.4766 L 32.7025,82.5288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.7025,82.5288 L 24.0113,87.5811' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 41.3938,77.4766 L 69.5202,93.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.5202,93.4942 L 97.2552,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.4707,85.5337 L 89.8852,74.3214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.2552,77.4766 L 124.99,93.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 97.2552,45.4458 L 97.2552,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 124.99,93.4942 L 152.727,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 125.941,85.5336 L 145.357,74.3213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,77.4766 L 152.727,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,45.4458 L 140.982,38.6634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 140.982,38.6634 L 129.237,31.8809' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.994,48.969 L 137.773,44.2213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 137.773,44.2213 L 129.551,39.4736' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 120.743,31.8811 L 108.999,38.6634' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 108.999,38.6634 L 97.2552,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 97.2552,45.4458 L 69.5202,29.4282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 89.8852,48.601 L 70.4707,37.3887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.27273 85.8865\\nL 8.50501 85.8865\\nL 8.50501 89.7503\\nL 13.1518 89.7503\\nL 13.1518 85.8865\\nL 14.384 85.8865\\nL 14.384 94.9746\\nL 13.1518 94.9746\\nL 13.1518 90.7772\\nL 8.50501 90.7772\\nL 8.50501 94.9746\\nL 7.27273 94.9746\\nL 7.27273 85.8865\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 15.0259 90.4049\\nQ 15.0259 88.2227, 16.1041 87.0033\\nQ 17.1824 85.7839, 19.1977 85.7839\\nQ 21.213 85.7839, 22.2912 87.0033\\nQ 23.3694 88.2227, 23.3694 90.4049\\nQ 23.3694 92.6128, 22.2784 93.8707\\nQ 21.1873 95.1158, 19.1977 95.1158\\nQ 17.1952 95.1158, 16.1041 93.8707\\nQ 15.0259 92.6256, 15.0259 90.4049\\nM 19.1977 94.0889\\nQ 20.584 94.0889, 21.3285 93.1647\\nQ 22.0858 92.2277, 22.0858 90.4049\\nQ 22.0858 88.6207, 21.3285 87.7221\\nQ 20.584 86.8108, 19.1977 86.8108\\nQ 17.8113 86.8108, 17.054 87.7093\\nQ 16.3095 88.6078, 16.3095 90.4049\\nQ 16.3095 92.2405, 17.054 93.1647\\nQ 17.8113 94.0889, 19.1977 94.0889\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 122.981 24.8842\\nL 125.959 29.6978\\nQ 126.255 30.1727, 126.729 31.0327\\nQ 127.204 31.8928, 127.23 31.9441\\nL 127.23 24.8842\\nL 128.437 24.8842\\nL 128.437 33.9723\\nL 127.192 33.9723\\nL 123.995 28.7094\\nQ 123.623 28.0932, 123.225 27.3872\\nQ 122.84 26.6812, 122.725 26.463\\nL 122.725 33.9723\\nL 121.544 33.9723\\nL 121.544 24.8842\\nL 122.981 24.8842\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 121, "data-ID": 611, "data-Solubility": -2.16, "data-SMILES": "c1c(O)cc2cccnc2c1", "mols2grid-tooltip": "<strong>Name</strong>: 6-hydroxyquinoline<br><strong>SMILES</strong>: c1c(O)cc2cccnc2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.16</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.494,25.9439 L 134.484,51.6069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.484,51.6069 L 107.463,68.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.463,68.1082 L 106.688,99.7657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 107.463,68.1082 L 107.463,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-2' d='M 79.6824,84.1476 L 107.463,68.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 106.688,99.7657 L 128.902,112.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.066,38.8076 L 117.774,33.7808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 117.774,33.7808 L 126.481,28.754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.859,33.2513 L 114.566,28.2245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 114.566,28.2245 L 123.273,23.1977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 107.463,36.0295 L 95.6961,29.2359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.6961,29.2359 L 83.9296,22.4423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.4352,22.4423 L 63.6687,29.2359' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 63.6687,29.2359 L 51.9022,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.5061,33.2513 L 44.7988,28.2245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 44.7988,28.2245 L 36.0916,23.1977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 50.2983,38.8076 L 41.5911,33.7808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 41.5911,33.7808 L 32.8839,28.754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 51.9022,36.0295 L 51.9022,49.3967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 51.9022,49.3967 L 51.9022,62.7639' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 47.8153,70.4676 L 38.7456,75.7037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.7456,75.7037 L 29.6759,80.9397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 56.1494,70.5604 L 67.9159,77.354' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 67.9159,77.354 L 79.6824,84.1476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.4745,84.1476 L 76.4745,94.3615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.4745,94.3615 L 76.4745,104.575' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 82.8903,84.1476 L 82.8903,94.3615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 82.8903,94.3615 L 82.8903,104.575' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 125.519 23.2236\\nQ 125.519 21.0423, 126.597 19.8233\\nQ 127.674 18.6043, 129.689 18.6043\\nQ 131.703 18.6043, 132.781 19.8233\\nQ 133.859 21.0423, 133.859 23.2236\\nQ 133.859 25.4306, 132.769 26.6881\\nQ 131.678 27.9328, 129.689 27.9328\\nQ 127.687 27.9328, 126.597 26.6881\\nQ 125.519 25.4435, 125.519 23.2236\\nM 129.689 26.9063\\nQ 131.075 26.9063, 131.819 25.9824\\nQ 132.576 25.0457, 132.576 23.2236\\nQ 132.576 21.44, 131.819 20.5418\\nQ 131.075 19.6308, 129.689 19.6308\\nQ 128.303 19.6308, 127.546 20.529\\nQ 126.802 21.4272, 126.802 23.2236\\nQ 126.802 25.0585, 127.546 25.9824\\nQ 128.303 26.9063, 129.689 26.9063\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 77.6743 15.4477\\nL 80.6512 20.2595\\nQ 80.9463 20.7343, 81.4211 21.594\\nQ 81.8959 22.4537, 81.9215 22.5051\\nL 81.9215 15.4477\\nL 83.1277 15.4477\\nL 83.1277 24.5324\\nL 81.883 24.5324\\nL 78.688 19.2715\\nQ 78.3159 18.6556, 77.9181 17.9499\\nQ 77.5331 17.2441, 77.4177 17.026\\nL 77.4177 24.5324\\nL 76.2372 24.5324\\nL 76.2372 15.4477\\nL 77.6743 15.4477\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 76.1281 5.45455\\nL 77.3599 5.45455\\nL 77.3599 9.31683\\nL 82.0049 9.31683\\nL 82.0049 5.45455\\nL 83.2367 5.45455\\nL 83.2367 14.5393\\nL 82.0049 14.5393\\nL 82.0049 10.3433\\nL 77.3599 10.3433\\nL 77.3599 14.5393\\nL 76.1281 14.5393\\nL 76.1281 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 25.5057 23.2236\\nQ 25.5057 21.0423, 26.5835 19.8233\\nQ 27.6614 18.6043, 29.6759 18.6043\\nQ 31.6904 18.6043, 32.7683 19.8233\\nQ 33.8461 21.0423, 33.8461 23.2236\\nQ 33.8461 25.4306, 32.7555 26.6881\\nQ 31.6648 27.9328, 29.6759 27.9328\\nQ 27.6742 27.9328, 26.5835 26.6881\\nQ 25.5057 25.4435, 25.5057 23.2236\\nM 29.6759 26.9063\\nQ 31.0617 26.9063, 31.8059 25.9824\\nQ 32.563 25.0457, 32.563 23.2236\\nQ 32.563 21.44, 31.8059 20.5418\\nQ 31.0617 19.6308, 29.6759 19.6308\\nQ 28.2901 19.6308, 27.533 20.529\\nQ 26.7888 21.4272, 26.7888 23.2236\\nQ 26.7888 25.0585, 27.533 25.9824\\nQ 28.2901 26.9063, 29.6759 26.9063\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 49.8941 63.5659\\nL 52.871 68.3777\\nQ 53.1661 68.8525, 53.6409 69.7122\\nQ 54.1156 70.5719, 54.1413 70.6232\\nL 54.1413 63.5659\\nL 55.3475 63.5659\\nL 55.3475 72.6506\\nL 54.1028 72.6506\\nL 50.9078 67.3897\\nQ 50.5357 66.7738, 50.1379 66.068\\nQ 49.7529 65.3623, 49.6374 65.1442\\nL 49.6374 72.6506\\nL 48.4569 72.6506\\nL 48.4569 63.5659\\nL 49.8941 63.5659\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 75.5122 109.836\\nQ 75.5122 107.655, 76.59 106.436\\nQ 77.6679 105.217, 79.6824 105.217\\nQ 81.697 105.217, 82.7748 106.436\\nQ 83.8527 107.655, 83.8527 109.836\\nQ 83.8527 112.043, 82.762 113.301\\nQ 81.6713 114.545, 79.6824 114.545\\nQ 77.6807 114.545, 76.59 113.301\\nQ 75.5122 112.056, 75.5122 109.836\\nM 79.6824 113.519\\nQ 81.0682 113.519, 81.8125 112.595\\nQ 82.5695 111.658, 82.5695 109.836\\nQ 82.5695 108.053, 81.8125 107.155\\nQ 81.0682 106.243, 79.6824 106.243\\nQ 78.2966 106.243, 77.5396 107.142\\nQ 76.7953 108.04, 76.7953 109.836\\nQ 76.7953 111.671, 77.5396 112.595\\nQ 78.2966 113.519, 79.6824 113.519\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 122, "data-ID": 616, "data-Solubility": -2.23, "data-SMILES": "CCC1(CC)C(=O)NC(=O)N(C)C1=O", "mols2grid-tooltip": "<strong>Name</strong>: metharbital<br><strong>SMILES</strong>: CCC1(CC)C(=O)NC(=O)N(C)C1=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.23</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 73.9191,61.178 L 70.914,55.9755' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 70.914,55.9755 L 67.909,50.773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 70.5161,63.1436 L 67.5111,57.9411' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 67.5111,57.9411 L 64.506,52.7386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.2075,51.7558 L 70.1444,44.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.1444,44.939 L 74.0812,38.1221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-1 atom-12' d='M 66.2075,51.7558 L 46.5477,51.765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0873,34.7285 L 87.421,34.7235' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.421,34.7235 L 95.7548,34.7186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.7548,34.7186 L 106.199,17.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-3 atom-11' d='M 95.7548,34.7186 L 105.851,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.199,17.139 L 127.086,17.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.086,17.139 L 131.119,24.2853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 131.119,24.2853 L 135.153,31.4316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 127.086,17.139 L 114.031,22.7089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.085,38.0196 L 130.824,45.3338' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.824,45.3338 L 126.564,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 139.511,34.7186 L 146.119,34.7186' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 146.119,34.7186 L 152.727,34.7186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.564,52.6479 L 114.031,45.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-7' d='M 105.851,52.6479 L 126.564,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-8' d='M 114.031,22.7089 L 114.031,45.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 46.5477,51.765 L 36.7152,68.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-12 atom-19' d='M 46.5477,51.765 L 36.7493,34.7199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 36.7152,68.7891 L 17.0659,68.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 33.7757,72.7249 L 20.0212,72.7524' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-13 atom-18' d='M 36.7152,68.7891 L 46.5713,85.7897' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 17.0659,68.8284 L 7.27273,85.8631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 7.27273,85.8631 L 17.1301,102.861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 12.1509,86.4413 L 19.0511,98.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 17.1301,102.861 L 36.7794,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-17' d='M 46.5713,85.7897 L 36.7794,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-17' d='M 41.6954,86.3864 L 34.8411,98.3107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 36.7493,34.7199 L 39.7343,29.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 39.7343,29.5646 L 42.7192,24.4092' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 71.5154 65.3833\\nQ 71.5154 64.0471, 72.1757 63.3004\\nQ 72.8359 62.5538, 74.0698 62.5538\\nQ 75.3038 62.5538, 75.964 63.3004\\nQ 76.6243 64.0471, 76.6243 65.3833\\nQ 76.6243 66.7351, 75.9562 67.5054\\nQ 75.2881 68.2678, 74.0698 68.2678\\nQ 72.8437 68.2678, 72.1757 67.5054\\nQ 71.5154 66.743, 71.5154 65.3833\\nM 74.0698 67.639\\nQ 74.9187 67.639, 75.3746 67.0731\\nQ 75.8383 66.4993, 75.8383 65.3833\\nQ 75.8383 64.2908, 75.3746 63.7406\\nQ 74.9187 63.1825, 74.0698 63.1825\\nQ 73.221 63.1825, 72.7573 63.7327\\nQ 72.3014 64.2829, 72.3014 65.3833\\nQ 72.3014 66.5072, 72.7573 67.0731\\nQ 73.221 67.639, 74.0698 67.639\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 73.4856 34.7461\\nQ 73.4856 33.4099, 74.1458 32.6632\\nQ 74.806 31.9166, 76.04 31.9166\\nQ 77.274 31.9166, 77.9342 32.6632\\nQ 78.5944 33.4099, 78.5944 34.7461\\nQ 78.5944 36.0979, 77.9263 36.8682\\nQ 77.2583 37.6306, 76.04 37.6306\\nQ 74.8139 37.6306, 74.1458 36.8682\\nQ 73.4856 36.1058, 73.4856 34.7461\\nM 76.04 37.0018\\nQ 76.8889 37.0018, 77.3447 36.4359\\nQ 77.8084 35.8622, 77.8084 34.7461\\nQ 77.8084 33.6536, 77.3447 33.1034\\nQ 76.8889 32.5454, 76.04 32.5454\\nQ 75.1912 32.5454, 74.7274 33.0955\\nQ 74.2716 33.6457, 74.2716 34.7461\\nQ 74.2716 35.87, 74.7274 36.4359\\nQ 75.1912 37.0018, 76.04 37.0018\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 135.778 31.9362\\nL 137.601 34.8836\\nQ 137.782 35.1744, 138.073 35.701\\nQ 138.364 36.2276, 138.379 36.2591\\nL 138.379 31.9362\\nL 139.118 31.9362\\nL 139.118 37.5009\\nL 138.356 37.5009\\nL 136.399 34.2784\\nQ 136.171 33.9012, 135.927 33.4689\\nQ 135.691 33.0366, 135.621 32.903\\nL 135.621 37.5009\\nL 134.898 37.5009\\nL 134.898 31.9362\\nL 135.778 31.9362\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 42.0716 21.1317\\nQ 42.0716 19.7956, 42.7318 19.0489\\nQ 43.3921 18.3022, 44.626 18.3022\\nQ 45.86 18.3022, 46.5202 19.0489\\nQ 47.1804 19.7956, 47.1804 21.1317\\nQ 47.1804 22.4836, 46.5124 23.2539\\nQ 45.8443 24.0162, 44.626 24.0162\\nQ 43.3999 24.0162, 42.7318 23.2539\\nQ 42.0716 22.4915, 42.0716 21.1317\\nM 44.626 23.3875\\nQ 45.4749 23.3875, 45.9307 22.8216\\nQ 46.3945 22.2478, 46.3945 21.1317\\nQ 46.3945 20.0392, 45.9307 19.4891\\nQ 45.4749 18.931, 44.626 18.931\\nQ 43.7772 18.931, 43.3135 19.4812\\nQ 42.8576 20.0314, 42.8576 21.1317\\nQ 42.8576 22.2557, 43.3135 22.8216\\nQ 43.7772 23.3875, 44.626 23.3875\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 47.8485 18.3651\\nL 48.603 18.3651\\nL 48.603 20.7309\\nL 51.4483 20.7309\\nL 51.4483 18.3651\\nL 52.2028 18.3651\\nL 52.2028 23.9298\\nL 51.4483 23.9298\\nL 51.4483 21.3597\\nL 48.603 21.3597\\nL 48.603 23.9298\\nL 47.8485 23.9298\\nL 47.8485 18.3651\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 123, "data-ID": 621, "data-Solubility": -2.12, "data-SMILES": "O=C(OC(CC(N(C1C2)C)C2)C1)C(c(cccc3)c3)CO", "mols2grid-tooltip": "<strong>Name</strong>: atropine<br><strong>SMILES</strong>: O=C(OC(CC(N(C1C2)C)C2)C1)C(c(cccc3)c3)CO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.12</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 136.955,95.8132 L 136.957,91.2763' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.957,91.2763 L 136.958,86.7394' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.039,84.0191 L 144.21,81.6145' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 144.21,81.6145 L 148.381,79.2099' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 138.125,80.6996 L 142.296,78.295' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 142.296,78.295 L 146.468,75.8904' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 138.123,86.4685 L 142.29,88.877' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 142.29,88.877 L 146.457,91.2854' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 140.041,83.1513 L 144.207,85.5597' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 144.207,85.5597 L 148.374,87.9682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 134.741,82.3021 L 127.55,78.1506' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 127.55,78.1506 L 120.359,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 120.359,73.9991 L 120.359,54.8415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 116.527,71.1254 L 116.527,57.7151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-4' d='M 103.768,83.5779 L 120.359,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 120.359,54.8415 L 103.768,45.2627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.768,45.2627 L 103.808,26.0949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 103.768,45.2627 L 87.1777,54.8415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 103.195,50.0177 L 91.5821,56.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 103.808,26.0949 L 98.6148,23.0848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 98.6148,23.0848 L 93.4218,20.0746' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 104.763,27.7553 L 109.968,24.7597' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 109.968,24.7597 L 115.174,21.764' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 102.852,24.4345 L 108.057,21.4389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 108.057,21.4389 L 113.262,18.4432' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.1777,54.8415 L 80.1361,50.7956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 80.1361,50.7956 L 73.0946,46.7496' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-10 atom-18' d='M 87.1777,54.8415 L 87.1777,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 68.0211,46.7613 L 60.9962,50.8302' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 60.9962,50.8302 L 53.9712,54.899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 53.9712,54.899 L 37.3514,45.3496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 37.3514,45.3496 L 20.0917,53.2808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 33.1626,43.0577 L 21.0808,48.6096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-13' d='M 35.8977,29.7385 L 36.6246,37.544' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-13' d='M 36.6246,37.544 L 37.3514,45.3496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 20.0917,53.2808 L 7.27273,39.0442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 7.27273,39.0442 L 16.8515,22.4537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 12.0277,38.4714 L 18.7329,26.8581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 16.8515,22.4537 L 24.7361,24.1293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 24.7361,24.1293 L 32.6208,25.8049' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 87.1777,73.9991 L 103.768,83.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 91.5821,72.1177 L 103.195,78.8229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 103.768,83.5779 L 103.768,89.76' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 103.768,89.76 L 103.768,95.9422' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.755 96.1963\\nL 137.533 99.07\\nQ 137.709 99.3535, 137.993 99.8669\\nQ 138.276 100.38, 138.291 100.411\\nL 138.291 96.1963\\nL 139.012 96.1963\\nL 139.012 101.622\\nL 138.268 101.622\\nL 136.36 98.4799\\nQ 136.138 98.1121, 135.901 97.6906\\nQ 135.671 97.2692, 135.602 97.1389\\nL 135.602 101.622\\nL 134.897 101.622\\nL 134.897 96.1963\\nL 135.755 96.1963\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 139.663 96.1963\\nL 140.399 96.1963\\nL 140.399 98.5029\\nL 143.173 98.5029\\nL 143.173 96.1963\\nL 143.908 96.1963\\nL 143.908 101.622\\nL 143.173 101.622\\nL 143.173 99.1159\\nL 140.399 99.1159\\nL 140.399 101.622\\nL 139.663 101.622\\nL 139.663 96.1963\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 144.171 101.431\\nQ 144.303 101.093, 144.616 100.905\\nQ 144.93 100.713, 145.365 100.713\\nQ 145.906 100.713, 146.21 101.007\\nQ 146.513 101.3, 146.513 101.821\\nQ 146.513 102.352, 146.119 102.848\\nQ 145.729 103.343, 144.92 103.93\\nL 146.574 103.93\\nL 146.574 104.334\\nL 144.161 104.334\\nL 144.161 103.996\\nQ 144.829 103.52, 145.223 103.166\\nQ 145.623 102.812, 145.815 102.493\\nQ 146.007 102.175, 146.007 101.846\\nQ 146.007 101.502, 145.835 101.31\\nQ 145.663 101.118, 145.365 101.118\\nQ 145.077 101.118, 144.885 101.234\\nQ 144.692 101.35, 144.556 101.608\\nL 144.171 101.431\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 135.427 85.4451\\nQ 135.488 85.4681, 135.741 85.5754\\nQ 135.994 85.6826, 136.27 85.7516\\nQ 136.553 85.8129, 136.829 85.8129\\nQ 137.342 85.8129, 137.641 85.5677\\nQ 137.94 85.3148, 137.94 84.878\\nQ 137.94 84.5792, 137.787 84.3953\\nQ 137.641 84.2113, 137.411 84.1117\\nQ 137.182 84.0121, 136.798 83.8972\\nQ 136.316 83.7516, 136.024 83.6136\\nQ 135.741 83.4757, 135.534 83.1845\\nQ 135.335 82.8933, 135.335 82.4029\\nQ 135.335 81.7209, 135.795 81.2994\\nQ 136.262 80.8779, 137.182 80.8779\\nQ 137.81 80.8779, 138.523 81.1768\\nL 138.346 81.7668\\nQ 137.695 81.4986, 137.205 81.4986\\nQ 136.676 81.4986, 136.385 81.7209\\nQ 136.093 81.9354, 136.101 82.3109\\nQ 136.101 82.6021, 136.247 82.7784\\nQ 136.4 82.9546, 136.614 83.0542\\nQ 136.837 83.1538, 137.205 83.2688\\nQ 137.695 83.4221, 137.986 83.5753\\nQ 138.277 83.7286, 138.484 84.0428\\nQ 138.699 84.3493, 138.699 84.878\\nQ 138.699 85.629, 138.193 86.0351\\nQ 137.695 86.4336, 136.86 86.4336\\nQ 136.377 86.4336, 136.009 86.3263\\nQ 135.649 86.2267, 135.22 86.0505\\nL 135.427 85.4451\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 147.746 75.9442\\nQ 147.746 74.6415, 148.39 73.9135\\nQ 149.034 73.1855, 150.237 73.1855\\nQ 151.44 73.1855, 152.084 73.9135\\nQ 152.727 74.6415, 152.727 75.9442\\nQ 152.727 77.2623, 152.076 78.0132\\nQ 151.425 78.7565, 150.237 78.7565\\nQ 149.041 78.7565, 148.39 78.0132\\nQ 147.746 77.2699, 147.746 75.9442\\nM 150.237 78.1435\\nQ 151.064 78.1435, 151.509 77.5918\\nQ 151.961 77.0324, 151.961 75.9442\\nQ 151.961 74.8791, 151.509 74.3426\\nQ 151.064 73.7986, 150.237 73.7986\\nQ 149.409 73.7986, 148.957 74.335\\nQ 148.513 74.8714, 148.513 75.9442\\nQ 148.513 77.04, 148.957 77.5918\\nQ 149.409 78.1435, 150.237 78.1435\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 147.737 91.2677\\nQ 147.737 89.965, 148.381 89.237\\nQ 149.025 88.509, 150.228 88.509\\nQ 151.431 88.509, 152.075 89.237\\nQ 152.718 89.965, 152.718 91.2677\\nQ 152.718 92.5858, 152.067 93.3367\\nQ 151.416 94.0801, 150.228 94.0801\\nQ 149.032 94.0801, 148.381 93.3367\\nQ 147.737 92.5934, 147.737 91.2677\\nM 150.228 93.467\\nQ 151.055 93.467, 151.5 92.9153\\nQ 151.952 92.3559, 151.952 91.2677\\nQ 151.952 90.2026, 151.5 89.6661\\nQ 151.055 89.1221, 150.228 89.1221\\nQ 149.4 89.1221, 148.948 89.6585\\nQ 148.504 90.1949, 148.504 91.2677\\nQ 148.504 92.3635, 148.948 92.9153\\nQ 149.4 93.467, 150.228 93.467\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 83.4292 15.7268\\nL 84.1649 15.7268\\nL 84.1649 18.0334\\nL 86.9389 18.0334\\nL 86.9389 15.7268\\nL 87.6745 15.7268\\nL 87.6745 21.1523\\nL 86.9389 21.1523\\nL 86.9389 18.6465\\nL 84.1649 18.6465\\nL 84.1649 21.1523\\nL 83.4292 21.1523\\nL 83.4292 15.7268\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 88.0577 18.4242\\nQ 88.0577 17.1215, 88.7014 16.3935\\nQ 89.3451 15.6655, 90.5482 15.6655\\nQ 91.7513 15.6655, 92.395 16.3935\\nQ 93.0386 17.1215, 93.0386 18.4242\\nQ 93.0386 19.7423, 92.3873 20.4932\\nQ 91.7359 21.2366, 90.5482 21.2366\\nQ 89.3527 21.2366, 88.7014 20.4932\\nQ 88.0577 19.7499, 88.0577 18.4242\\nM 90.5482 20.6235\\nQ 91.3758 20.6235, 91.8202 20.0718\\nQ 92.2723 19.5124, 92.2723 18.4242\\nQ 92.2723 17.3591, 91.8202 16.8227\\nQ 91.3758 16.2786, 90.5482 16.2786\\nQ 89.7206 16.2786, 89.2684 16.815\\nQ 88.824 17.3514, 88.824 18.4242\\nQ 88.824 19.52, 89.2684 20.0718\\nQ 89.7206 20.6235, 90.5482 20.6235\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 114.601 18.4651\\nQ 114.601 17.1624, 115.245 16.4344\\nQ 115.889 15.7064, 117.092 15.7064\\nQ 118.295 15.7064, 118.938 16.4344\\nQ 119.582 17.1624, 119.582 18.4651\\nQ 119.582 19.7831, 118.931 20.5341\\nQ 118.279 21.2774, 117.092 21.2774\\nQ 115.896 21.2774, 115.245 20.5341\\nQ 114.601 19.7908, 114.601 18.4651\\nM 117.092 20.6644\\nQ 117.919 20.6644, 118.364 20.1126\\nQ 118.816 19.5532, 118.816 18.4651\\nQ 118.816 17.3999, 118.364 16.8635\\nQ 117.919 16.3194, 117.092 16.3194\\nQ 116.264 16.3194, 115.812 16.8559\\nQ 115.367 17.3923, 115.367 18.4651\\nQ 115.367 19.5609, 115.812 20.1126\\nQ 116.264 20.6644, 117.092 20.6644\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 69.3586 42.5794\\nL 71.1364 45.453\\nQ 71.3127 45.7365, 71.5962 46.25\\nQ 71.8797 46.7634, 71.8951 46.794\\nL 71.8951 42.5794\\nL 72.6154 42.5794\\nL 72.6154 48.0048\\nL 71.8721 48.0048\\nL 69.964 44.863\\nQ 69.7418 44.4951, 69.5042 44.0737\\nQ 69.2743 43.6522, 69.2053 43.5219\\nL 69.2053 48.0048\\nL 68.5003 48.0048\\nL 68.5003 42.5794\\nL 69.3586 42.5794\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 68.4352 36.6114\\nL 69.1709 36.6114\\nL 69.1709 38.918\\nL 71.9449 38.918\\nL 71.9449 36.6114\\nL 72.6805 36.6114\\nL 72.6805 42.0368\\nL 71.9449 42.0368\\nL 71.9449 39.531\\nL 69.1709 39.531\\nL 69.1709 42.0368\\nL 68.4352 42.0368\\nL 68.4352 36.6114\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 33.0997 26.4513\\nQ 33.0997 25.1485, 33.7434 24.4205\\nQ 34.3871 23.6926, 35.5902 23.6926\\nQ 36.7933 23.6926, 37.437 24.4205\\nQ 38.0807 25.1485, 38.0807 26.4513\\nQ 38.0807 27.7693, 37.4293 28.5203\\nQ 36.778 29.2636, 35.5902 29.2636\\nQ 34.3947 29.2636, 33.7434 28.5203\\nQ 33.0997 27.777, 33.0997 26.4513\\nM 35.5902 28.6505\\nQ 36.4178 28.6505, 36.8622 28.0988\\nQ 37.3144 27.5394, 37.3144 26.4513\\nQ 37.3144 25.3861, 36.8622 24.8497\\nQ 36.4178 24.3056, 35.5902 24.3056\\nQ 34.7626 24.3056, 34.3105 24.842\\nQ 33.866 25.3784, 33.866 26.4513\\nQ 33.866 27.5471, 34.3105 28.0988\\nQ 34.7626 28.6505, 35.5902 28.6505\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 101.676 99.0917\\nQ 101.676 97.743, 102.305 97.038\\nQ 102.941 96.3253, 104.144 96.3253\\nQ 105.262 96.3253, 105.86 97.1146\\nL 105.354 97.5284\\nQ 104.918 96.9537, 104.144 96.9537\\nQ 103.324 96.9537, 102.887 97.5054\\nQ 102.458 98.0495, 102.458 99.0917\\nQ 102.458 100.164, 102.902 100.716\\nQ 103.354 101.268, 104.228 101.268\\nQ 104.826 101.268, 105.523 100.908\\nL 105.738 101.483\\nQ 105.454 101.666, 105.025 101.774\\nQ 104.596 101.881, 104.121 101.881\\nQ 102.941 101.881, 102.305 101.161\\nQ 101.676 100.44, 101.676 99.0917\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 106.519 95.9958\\nL 107.224 95.9958\\nL 107.224 101.812\\nL 106.519 101.812\\nL 106.519 95.9958\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 124, "data-ID": 626, "data-Solubility": -3.66, "data-SMILES": "NS(=O)(=O)c2cc(C(O)=O)c(NCc1ccco1)cc2Cl", "mols2grid-tooltip": "<strong>Name</strong>: furosemide<br><strong>SMILES</strong>: NS(=O)(=O)c2cc(C(O)=O)c(NCc1ccco1)cc2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.39,46.2481 L 110.008,37.383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.008,37.383 L 91.3084,48.7987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.3084,48.7987 L 90.7699,70.695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-8' d='M 91.3084,48.7987 L 91.3084,26.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-2' d='M 72.0899,59.8948 L 91.3084,48.7987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7699,70.695 L 109.425,82.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.425,82.738 L 108.336,104.915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 108.336,104.915 L 123.252,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 108.336,104.915 L 92.5408,113.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 92.418,28.5284 L 98.4417,25.0508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 98.4417,25.0508 L 104.465,21.5733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 90.1989,24.6845 L 96.2226,21.2069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 96.2226,21.2069 L 102.246,17.7294' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 91.3084,26.6064 L 83.1683,21.9066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 83.1683,21.9066 L 75.0282,17.2067' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.1517,17.2067 L 61.0116,21.9066' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 61.0116,21.9066 L 52.8714,26.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 53.981,24.6845 L 47.9573,21.2069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 47.9573,21.2069 L 41.9336,17.7294' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 51.7619,28.5284 L 45.7382,25.0508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 45.7382,25.0508 L 39.7145,21.5733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 52.8714,26.6064 L 52.8714,35.8539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 52.8714,35.8539 L 52.8714,45.1015' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 55.8097,50.4951 L 63.9498,55.195' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 63.9498,55.195 L 72.0899,59.8948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 69.8707,59.8948 L 69.8707,66.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 69.8707,66.9608 L 69.8707,74.0268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 74.3092,59.8948 L 74.3092,66.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 74.3092,66.9608 L 74.3092,74.0268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 103.8 17.7473\\nQ 103.8 16.2382, 104.545 15.3949\\nQ 105.291 14.5516, 106.685 14.5516\\nQ 108.078 14.5516, 108.824 15.3949\\nQ 109.57 16.2382, 109.57 17.7473\\nQ 109.57 19.2741, 108.815 20.144\\nQ 108.061 21.0051, 106.685 21.0051\\nQ 105.3 21.0051, 104.545 20.144\\nQ 103.8 19.283, 103.8 17.7473\\nM 106.685 20.2949\\nQ 107.643 20.2949, 108.158 19.6558\\nQ 108.682 19.0078, 108.682 17.7473\\nQ 108.682 16.5134, 108.158 15.892\\nQ 107.643 15.2617, 106.685 15.2617\\nQ 105.726 15.2617, 105.202 15.8831\\nQ 104.687 16.5045, 104.687 17.7473\\nQ 104.687 19.0167, 105.202 19.6558\\nQ 105.726 20.2949, 106.685 20.2949\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 70.7007 12.3679\\nL 72.7601 15.6967\\nQ 72.9643 16.0252, 73.2928 16.6199\\nQ 73.6212 17.2147, 73.639 17.2502\\nL 73.639 12.3679\\nL 74.4734 12.3679\\nL 74.4734 18.6527\\nL 73.6123 18.6527\\nL 71.402 15.0132\\nQ 71.1446 14.5871, 70.8694 14.0989\\nQ 70.6031 13.6106, 70.5232 13.4597\\nL 70.5232 18.6527\\nL 69.7065 18.6527\\nL 69.7065 12.3679\\nL 70.7007 12.3679\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 69.631 5.45455\\nL 70.4832 5.45455\\nL 70.4832 8.12649\\nL 73.6967 8.12649\\nL 73.6967 5.45455\\nL 74.5488 5.45455\\nL 74.5488 11.7394\\nL 73.6967 11.7394\\nL 73.6967 8.83665\\nL 70.4832 8.83665\\nL 70.4832 11.7394\\nL 69.631 11.7394\\nL 69.631 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 34.6102 17.7473\\nQ 34.6102 16.2382, 35.3558 15.3949\\nQ 36.1015 14.5516, 37.4952 14.5516\\nQ 38.8888 14.5516, 39.6345 15.3949\\nQ 40.3802 16.2382, 40.3802 17.7473\\nQ 40.3802 19.2741, 39.6256 20.144\\nQ 38.8711 21.0051, 37.4952 21.0051\\nQ 36.1104 21.0051, 35.3558 20.144\\nQ 34.6102 19.283, 34.6102 17.7473\\nM 37.4952 20.2949\\nQ 38.4539 20.2949, 38.9687 19.6558\\nQ 39.4925 19.0078, 39.4925 17.7473\\nQ 39.4925 16.5134, 38.9687 15.892\\nQ 38.4539 15.2617, 37.4952 15.2617\\nQ 36.5365 15.2617, 36.0127 15.8831\\nQ 35.4979 16.5045, 35.4979 17.7473\\nQ 35.4979 19.0167, 36.0127 19.6558\\nQ 36.5365 20.2949, 37.4952 20.2949\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 44.8334 45.6563\\nL 45.6856 45.6563\\nL 45.6856 48.3282\\nL 48.899 48.3282\\nL 48.899 45.6563\\nL 49.7512 45.6563\\nL 49.7512 51.9411\\nL 48.899 51.9411\\nL 48.899 49.0384\\nL 45.6856 49.0384\\nL 45.6856 51.9411\\nL 44.8334 51.9411\\nL 44.8334 45.6563\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 51.4822 45.6563\\nL 53.5417 48.9851\\nQ 53.7458 49.3135, 54.0743 49.9083\\nQ 54.4027 50.503, 54.4205 50.5386\\nL 54.4205 45.6563\\nL 55.2549 45.6563\\nL 55.2549 51.9411\\nL 54.3938 51.9411\\nL 52.1835 48.3016\\nQ 51.9261 47.8755, 51.6509 47.3873\\nQ 51.3846 46.899, 51.3047 46.7481\\nL 51.3047 51.9411\\nL 50.488 51.9411\\nL 50.488 45.6563\\nL 51.4822 45.6563\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 69.2049 77.6664\\nQ 69.2049 76.1573, 69.9506 75.314\\nQ 70.6963 74.4707, 72.0899 74.4707\\nQ 73.4836 74.4707, 74.2293 75.314\\nQ 74.9749 76.1573, 74.9749 77.6664\\nQ 74.9749 79.1932, 74.2204 80.0631\\nQ 73.4659 80.9242, 72.0899 80.9242\\nQ 70.7051 80.9242, 69.9506 80.0631\\nQ 69.2049 79.2021, 69.2049 77.6664\\nM 72.0899 80.214\\nQ 73.0486 80.214, 73.5635 79.5749\\nQ 74.0872 78.9269, 74.0872 77.6664\\nQ 74.0872 76.4325, 73.5635 75.8111\\nQ 73.0486 75.1808, 72.0899 75.1808\\nQ 71.1312 75.1808, 70.6075 75.8022\\nQ 70.0926 76.4236, 70.0926 77.6664\\nQ 70.0926 78.9358, 70.6075 79.5749\\nQ 71.1312 80.214, 72.0899 80.214\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 125, "data-ID": 631, "data-Solubility": -2.57, "data-SMILES": "CCC1(CCC(C)C)C(=O)NC(=O)NC1=O", "mols2grid-tooltip": "<strong>Name</strong>: amobarbital<br><strong>SMILES</strong>: CCC1(CCC(C)C)C(=O)NC(=O)NC1=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 143.986,9.54949 L 139.519,12.0604' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 139.519,12.0604 L 135.052,14.5712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.052,14.5712 L 120.999,6.25279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 120.999,6.25279 L 114.961,9.64629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.961,9.64629 L 108.924,13.0398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.602,12.9797 L 98.6542,9.47043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.6542,9.47043 L 92.7062,5.96119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-3' d='M 106.61,30.5759 L 106.674,23.7748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-3' d='M 106.674,23.7748 L 106.738,16.9737' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.7062,5.96119 L 78.4957,13.988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.4957,13.988 L 78.4309,20.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.4309,20.7891 L 78.366,27.5902' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 76.179,31.5357 L 70.1581,34.9523' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.1581,34.9523 L 64.1373,38.3688' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-6 atom-25' d='M 80.5011,31.5842 L 86.4497,35.0935' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-6 atom-25' d='M 86.4497,35.0935 L 92.3982,38.6027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 64.1373,38.3688 L 64.0067,54.6988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.0067,54.6988 L 49.8039,62.7594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.8039,62.7594 L 49.7495,69.5642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.7495,69.5642 L 49.6951,76.369' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 47.5124,80.3362 L 41.5263,83.7932' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 41.5263,83.7932 L 35.5402,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-10' d='M 63.6074,87.2501 L 57.7187,83.8008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-10' d='M 57.7187,83.8008 L 51.83,80.3516' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 35.5402,87.2501 L 21.407,79.0883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 31.7878,88.8526 L 21.8945,83.1394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 35.5402,103.574 L 35.5402,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 21.407,79.0883 L 7.27273,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 7.27273,87.2501 L 7.27273,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 10.537,89.6986 L 10.537,101.125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 7.27273,103.574 L 21.407,111.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 21.407,111.735 L 35.5402,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 21.8945,107.684 L 31.7878,101.971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 35.5402,103.574 L 41.6618,107.109' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 41.6618,107.109 L 47.7834,110.644' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 51.559,110.631 L 57.5832,107.102' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 57.5832,107.102 L 63.6074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 63.6074,103.574 L 77.9397,111.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 67.3726,101.961 L 77.4052,107.674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-18' d='M 63.6074,87.2501 L 63.6074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 77.9397,111.735 L 92.074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 92.074,103.574 L 92.074,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 88.8097,101.125 L 88.8097,89.6986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.074,87.2501 L 96.6733,84.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 96.6733,84.595 L 101.273,81.9399' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-23' d='M 92.074,87.2501 L 77.9397,79.0883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 77.9397,79.0883 L 63.6074,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 77.4052,83.1492 L 67.3726,88.8624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 92.3982,38.6027 L 106.61,30.5759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 144.312 8.18633\\nQ 144.312 7.07648, 144.86 6.45627\\nQ 145.409 5.83606, 146.434 5.83606\\nQ 147.459 5.83606, 148.007 6.45627\\nQ 148.556 7.07648, 148.556 8.18633\\nQ 148.556 9.30923, 148.001 9.94903\\nQ 147.446 10.5823, 146.434 10.5823\\nQ 145.415 10.5823, 144.86 9.94903\\nQ 144.312 9.31576, 144.312 8.18633\\nM 146.434 10.06\\nQ 147.139 10.06, 147.518 9.58996\\nQ 147.903 9.11338, 147.903 8.18633\\nQ 147.903 7.27886, 147.518 6.82186\\nQ 147.139 6.35834, 146.434 6.35834\\nQ 145.729 6.35834, 145.344 6.81534\\nQ 144.965 7.27233, 144.965 8.18633\\nQ 144.965 9.11991, 145.344 9.58996\\nQ 145.729 10.06, 146.434 10.06\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 149.11 5.88828\\nL 149.737 5.88828\\nL 149.737 7.85337\\nL 152.101 7.85337\\nL 152.101 5.88828\\nL 152.727 5.88828\\nL 152.727 10.5105\\nL 152.101 10.5105\\nL 152.101 8.37565\\nL 149.737 8.37565\\nL 149.737 10.5105\\nL 149.11 10.5105\\nL 149.11 5.88828\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 105.741 11.9435\\nL 107.256 14.3917\\nQ 107.406 14.6332, 107.648 15.0707\\nQ 107.889 15.5081, 107.902 15.5342\\nL 107.902 11.9435\\nL 108.516 11.9435\\nL 108.516 16.5657\\nL 107.883 16.5657\\nL 106.257 13.889\\nQ 106.068 13.5756, 105.865 13.2166\\nQ 105.67 12.8575, 105.611 12.7465\\nL 105.611 16.5657\\nL 105.01 16.5657\\nL 105.01 11.9435\\nL 105.741 11.9435\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 77.3184 27.9982\\nL 78.833 30.4464\\nQ 78.9832 30.688, 79.2247 31.1254\\nQ 79.4663 31.5628, 79.4793 31.5889\\nL 79.4793 27.9982\\nL 80.093 27.9982\\nL 80.093 32.6204\\nL 79.4598 32.6204\\nL 77.8342 29.9437\\nQ 77.6448 29.6304, 77.4424 29.2713\\nQ 77.2466 28.9122, 77.1878 28.8012\\nL 77.1878 32.6204\\nL 76.5872 32.6204\\nL 76.5872 27.9982\\nL 77.3184 27.9982\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 48.6516 76.7772\\nL 50.1663 79.2254\\nQ 50.3164 79.467, 50.558 79.9044\\nQ 50.7995 80.3418, 50.8126 80.3679\\nL 50.8126 76.7772\\nL 51.4263 76.7772\\nL 51.4263 81.3994\\nL 50.793 81.3994\\nL 49.1674 78.7227\\nQ 48.9781 78.4094, 48.7757 78.0503\\nQ 48.5798 77.6912, 48.5211 77.5802\\nL 48.5211 81.3994\\nL 47.9204 81.3994\\nL 47.9204 76.7772\\nL 48.6516 76.7772\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 48.3676 113.322\\nQ 48.4199 113.341, 48.6353 113.433\\nQ 48.8508 113.524, 49.0858 113.583\\nQ 49.3273 113.635, 49.5624 113.635\\nQ 49.9998 113.635, 50.2544 113.426\\nQ 50.509 113.211, 50.509 112.839\\nQ 50.509 112.584, 50.3784 112.427\\nQ 50.2544 112.271, 50.0585 112.186\\nQ 49.8627 112.101, 49.5362 112.003\\nQ 49.125 111.879, 48.8769 111.761\\nQ 48.6353 111.644, 48.459 111.396\\nQ 48.2893 111.148, 48.2893 110.73\\nQ 48.2893 110.149, 48.681 109.79\\nQ 49.0793 109.431, 49.8627 109.431\\nQ 50.398 109.431, 51.0052 109.685\\nL 50.855 110.188\\nQ 50.3001 109.96, 49.8823 109.96\\nQ 49.4318 109.96, 49.1837 110.149\\nQ 48.9356 110.332, 48.9422 110.652\\nQ 48.9422 110.9, 49.0662 111.05\\nQ 49.1968 111.2, 49.3796 111.285\\nQ 49.5689 111.37, 49.8823 111.468\\nQ 50.3001 111.598, 50.5482 111.729\\nQ 50.7963 111.859, 50.9725 112.127\\nQ 51.1553 112.388, 51.1553 112.839\\nQ 51.1553 113.478, 50.7244 113.824\\nQ 50.3001 114.164, 49.5885 114.164\\nQ 49.1772 114.164, 48.8638 114.073\\nQ 48.557 113.988, 48.1914 113.838\\nL 48.3676 113.322\\n' fill='#CCCC00'/>\\n<path class='atom-22' d='M 101.599 80.8826\\nQ 101.599 79.7336, 102.134 79.1329\\nQ 102.676 78.5258, 103.701 78.5258\\nQ 104.654 78.5258, 105.164 79.1982\\nL 104.733 79.5508\\nQ 104.361 79.0611, 103.701 79.0611\\nQ 103.003 79.0611, 102.631 79.5312\\nQ 102.265 79.9947, 102.265 80.8826\\nQ 102.265 81.7966, 102.644 82.2666\\nQ 103.029 82.7367, 103.773 82.7367\\nQ 104.282 82.7367, 104.876 82.4299\\nL 105.059 82.9195\\nQ 104.818 83.0762, 104.452 83.1676\\nQ 104.086 83.259, 103.682 83.259\\nQ 102.676 83.259, 102.134 82.6453\\nQ 101.599 82.0316, 101.599 80.8826\\n' fill='#00CC00'/>\\n<path class='atom-22' d='M 105.725 78.2451\\nL 106.326 78.2451\\nL 106.326 83.2002\\nL 105.725 83.2002\\nL 105.725 78.2451\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 126, "data-ID": 636, "data-Solubility": -4.16, "data-SMILES": "OCCN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4", "mols2grid-tooltip": "<strong>Name</strong>: perphenazine<br><strong>SMILES</strong>: OCCN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.16</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 95.4882,97.9974 L 113.943,96.0895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.064,97.4488 L 116.132,103.073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.132,103.073 L 120.201,108.697' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.822,94.7301 L 119.89,100.354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.89,100.354 L 123.959,105.978' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 113.943,96.0895 L 117.813,87.429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 117.813,87.429 L 121.684,78.7686' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.617,71.0415 L 115.226,63.5889' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.226,63.5889 L 109.835,56.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.835,56.1363 L 112.79,47.0397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.79,47.0397 L 115.746,37.9431' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.31,51.974 L 108.379,45.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.379,45.6064 L 110.448,39.2388' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-4' d='M 89.3284,56.1363 L 99.5815,56.1363' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-4' d='M 99.5815,56.1363 L 109.835,56.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 113.93,31.8483 L 101.214,22.6093' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.1681,22.6783 L 87.3223,28.3788' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.3223,28.3788 L 79.4766,34.0794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.5408,28.1409 L 90.0488,32.1312' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.0488,32.1312 L 84.5567,36.1216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.4766,34.0794 L 69.8037,30.9363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.8037,30.9363 L 60.1309,27.7933' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 79.4766,34.0794 L 82.4335,43.1806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 82.4335,43.1806 L 85.3905,52.2818' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.9168,22.6986 L 57.7848,17.3909' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 57.7848,17.3909 L 56.6528,12.0832' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 54.3805,23.6661 L 53.2485,18.3584' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.2485,18.3584 L 52.1165,13.0507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 53.3239,27.513 L 49.4123,31.0372' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 49.4123,31.0372 L 45.5007,34.5614' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 56.4286,30.959 L 52.5171,34.4832' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 52.5171,34.4832 L 48.6055,38.0074' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 54.8763,26.0875 L 48.7802,24.1104' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 48.7802,24.1104 L 42.6841,22.1334' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 121.803 111.141\\nQ 121.803 109.564, 122.582 108.683\\nQ 123.362 107.801, 124.818 107.801\\nQ 126.274 107.801, 127.054 108.683\\nQ 127.833 109.564, 127.833 111.141\\nQ 127.833 112.736, 127.044 113.646\\nQ 126.256 114.545, 124.818 114.545\\nQ 123.371 114.545, 122.582 113.646\\nQ 121.803 112.746, 121.803 111.141\\nM 124.818 113.803\\nQ 125.82 113.803, 126.358 113.135\\nQ 126.905 112.458, 126.905 111.141\\nQ 126.905 109.851, 126.358 109.202\\nQ 125.82 108.543, 124.818 108.543\\nQ 123.816 108.543, 123.269 109.193\\nQ 122.731 109.842, 122.731 111.141\\nQ 122.731 112.467, 123.269 113.135\\nQ 123.816 113.803, 124.818 113.803\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 121.959 71.6206\\nL 124.111 75.0994\\nQ 124.325 75.4426, 124.668 76.0642\\nQ 125.011 76.6857, 125.03 76.7228\\nL 125.03 71.6206\\nL 125.902 71.6206\\nL 125.902 78.1885\\nL 125.002 78.1885\\nL 122.692 74.3851\\nQ 122.423 73.9398, 122.135 73.4296\\nQ 121.857 72.9194, 121.774 72.7616\\nL 121.774 78.1885\\nL 120.92 78.1885\\nL 120.92 71.6206\\nL 121.959 71.6206\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 126.69 71.6206\\nL 127.581 71.6206\\nL 127.581 74.4129\\nL 130.939 74.4129\\nL 130.939 71.6206\\nL 131.83 71.6206\\nL 131.83 78.1885\\nL 130.939 78.1885\\nL 130.939 75.155\\nL 127.581 75.155\\nL 127.581 78.1885\\nL 126.69 78.1885\\nL 126.69 71.6206\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 115.549 30.7954\\nL 117.701 34.2742\\nQ 117.915 34.6174, 118.258 35.2389\\nQ 118.601 35.8605, 118.62 35.8976\\nL 118.62 30.7954\\nL 119.492 30.7954\\nL 119.492 37.3633\\nL 118.592 37.3633\\nL 116.282 33.5599\\nQ 116.013 33.1146, 115.725 32.6044\\nQ 115.447 32.0941, 115.363 31.9364\\nL 115.363 37.3633\\nL 114.51 37.3633\\nL 114.51 30.7954\\nL 115.549 30.7954\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 96.7869 17.1633\\nL 98.9391 20.6421\\nQ 99.1525 20.9853, 99.4957 21.6068\\nQ 99.8389 22.2284, 99.8575 22.2655\\nL 99.8575 17.1633\\nL 100.729 17.1633\\nL 100.729 23.7312\\nL 99.8297 23.7312\\nL 97.5198 19.9277\\nQ 97.2507 19.4825, 96.9632 18.9722\\nQ 96.6849 18.462, 96.6014 18.3043\\nL 96.6014 23.7312\\nL 95.7479 23.7312\\nL 95.7479 17.1633\\nL 96.7869 17.1633\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 55.5906 29.1751\\nQ 55.6648 29.2029, 55.971 29.3328\\nQ 56.2771 29.4626, 56.6111 29.5461\\nQ 56.9543 29.6204, 57.2883 29.6204\\nQ 57.9098 29.6204, 58.2716 29.3235\\nQ 58.6334 29.0174, 58.6334 28.4886\\nQ 58.6334 28.1268, 58.4478 27.9042\\nQ 58.2716 27.6815, 57.9933 27.5609\\nQ 57.715 27.4403, 57.2511 27.3012\\nQ 56.6667 27.1249, 56.3142 26.9579\\nQ 55.971 26.791, 55.7205 26.4384\\nQ 55.4793 26.0859, 55.4793 25.4922\\nQ 55.4793 24.6666, 56.0359 24.1564\\nQ 56.6018 23.6462, 57.715 23.6462\\nQ 58.4757 23.6462, 59.3384 24.0079\\nL 59.125 24.7223\\nQ 58.3365 24.3976, 57.7428 24.3976\\nQ 57.1027 24.3976, 56.7502 24.6666\\nQ 56.3977 24.9263, 56.407 25.3809\\nQ 56.407 25.7334, 56.5832 25.9468\\nQ 56.7688 26.1601, 57.0285 26.2807\\nQ 57.2975 26.4013, 57.7428 26.5405\\nQ 58.3365 26.726, 58.689 26.9116\\nQ 59.0416 27.0971, 59.292 27.4774\\nQ 59.5518 27.8485, 59.5518 28.4886\\nQ 59.5518 29.3977, 58.9395 29.8894\\nQ 58.3365 30.3718, 57.3254 30.3718\\nQ 56.7409 30.3718, 56.2956 30.2419\\nQ 55.8596 30.1213, 55.3401 29.9079\\nL 55.5906 29.1751\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 50.5611 8.79416\\nQ 50.5611 7.21712, 51.3403 6.33583\\nQ 52.1196 5.45455, 53.576 5.45455\\nQ 55.0325 5.45455, 55.8117 6.33583\\nQ 56.591 7.21712, 56.591 8.79416\\nQ 56.591 10.3898, 55.8024 11.2989\\nQ 55.0139 12.1987, 53.576 12.1987\\nQ 52.1289 12.1987, 51.3403 11.2989\\nQ 50.5611 10.399, 50.5611 8.79416\\nM 53.576 11.4566\\nQ 54.5779 11.4566, 55.116 10.7886\\nQ 55.6633 10.1114, 55.6633 8.79416\\nQ 55.6633 7.5047, 55.116 6.85533\\nQ 54.5779 6.19668, 53.576 6.19668\\nQ 52.5741 6.19668, 52.0268 6.84605\\nQ 51.4888 7.49542, 51.4888 8.79416\\nQ 51.4888 10.1207, 52.0268 10.7886\\nQ 52.5741 11.4566, 53.576 11.4566\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 40.6459 39.3593\\nQ 40.6459 37.7823, 41.4251 36.901\\nQ 42.2043 36.0197, 43.6608 36.0197\\nQ 45.1172 36.0197, 45.8965 36.901\\nQ 46.6757 37.7823, 46.6757 39.3593\\nQ 46.6757 40.9549, 45.8872 41.864\\nQ 45.0987 42.7639, 43.6608 42.7639\\nQ 42.2136 42.7639, 41.4251 41.864\\nQ 40.6459 40.9642, 40.6459 39.3593\\nM 43.6608 42.0218\\nQ 44.6627 42.0218, 45.2007 41.3538\\nQ 45.748 40.6766, 45.748 39.3593\\nQ 45.748 38.0699, 45.2007 37.4205\\nQ 44.6627 36.7619, 43.6608 36.7619\\nQ 42.6589 36.7619, 42.1116 37.4112\\nQ 41.5735 38.0606, 41.5735 39.3593\\nQ 41.5735 40.6859, 42.1116 41.3538\\nQ 42.6589 42.0218, 43.6608 42.0218\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 28.1704 17.9132\\nL 29.0609 17.9132\\nL 29.0609 20.7054\\nL 32.4191 20.7054\\nL 32.4191 17.9132\\nL 33.3097 17.9132\\nL 33.3097 24.4811\\nL 32.4191 24.4811\\nL 32.4191 21.4476\\nL 29.0609 21.4476\\nL 29.0609 24.4811\\nL 28.1704 24.4811\\nL 28.1704 17.9132\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 33.628 24.2506\\nQ 33.7872 23.8404, 34.1668 23.6139\\nQ 34.5464 23.3812, 35.073 23.3812\\nQ 35.7281 23.3812, 36.0954 23.7363\\nQ 36.4628 24.0914, 36.4628 24.7221\\nQ 36.4628 25.3649, 35.9852 25.965\\nQ 35.5138 26.565, 34.5342 27.2752\\nL 36.5363 27.2752\\nL 36.5363 27.765\\nL 33.6158 27.765\\nL 33.6158 27.3548\\nQ 34.424 26.7793, 34.9015 26.3507\\nQ 35.3852 25.9221, 35.6179 25.5364\\nQ 35.8505 25.1507, 35.8505 24.7527\\nQ 35.8505 24.3363, 35.6424 24.1037\\nQ 35.4342 23.871, 35.073 23.871\\nQ 34.724 23.871, 34.4913 24.0118\\nQ 34.2587 24.1527, 34.0933 24.4649\\nL 33.628 24.2506\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 38.3452 17.9132\\nL 40.4974 21.3919\\nQ 40.7108 21.7352, 41.054 22.3567\\nQ 41.3973 22.9782, 41.4158 23.0153\\nL 41.4158 17.9132\\nL 42.2878 17.9132\\nL 42.2878 24.4811\\nL 41.388 24.4811\\nL 39.0781 20.6776\\nQ 38.8091 20.2323, 38.5215 19.7221\\nQ 38.2432 19.2119, 38.1597 19.0542\\nL 38.1597 24.4811\\nL 37.3062 24.4811\\nL 37.3062 17.9132\\nL 38.3452 17.9132\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 84.7875 58.3905\\nQ 84.8617 58.4183, 85.1678 58.5482\\nQ 85.474 58.6781, 85.8079 58.7616\\nQ 86.1512 58.8358, 86.4851 58.8358\\nQ 87.1067 58.8358, 87.4685 58.5389\\nQ 87.8302 58.2328, 87.8302 57.704\\nQ 87.8302 57.3422, 87.6447 57.1196\\nQ 87.4685 56.8969, 87.1902 56.7763\\nQ 86.9119 56.6557, 86.448 56.5166\\nQ 85.8636 56.3403, 85.5111 56.1734\\nQ 85.1678 56.0064, 84.9174 55.6539\\nQ 84.6762 55.3014, 84.6762 54.7076\\nQ 84.6762 53.882, 85.2328 53.3718\\nQ 85.7986 52.8616, 86.9119 52.8616\\nQ 87.6725 52.8616, 88.5353 53.2234\\nL 88.3219 53.9377\\nQ 87.5334 53.613, 86.9397 53.613\\nQ 86.2996 53.613, 85.9471 53.882\\nQ 85.5946 54.1418, 85.6038 54.5963\\nQ 85.6038 54.9488, 85.7801 55.1622\\nQ 85.9656 55.3756, 86.2254 55.4962\\nQ 86.4944 55.6168, 86.9397 55.7559\\nQ 87.5334 55.9414, 87.8859 56.127\\nQ 88.2384 56.3125, 88.4889 56.6929\\nQ 88.7486 57.0639, 88.7486 57.704\\nQ 88.7486 58.6131, 88.1364 59.1048\\nQ 87.5334 59.5872, 86.5222 59.5872\\nQ 85.9378 59.5872, 85.4925 59.4573\\nQ 85.0565 59.3367, 84.537 59.1234\\nL 84.7875 58.3905\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 127, "data-ID": 641, "data-Solubility": -2.36, "data-SMILES": "CC(=O)Nc1nnc(S(=O)(=O)N)s1", "mols2grid-tooltip": "<strong>Name</strong>: acetazoleamide<br><strong>SMILES</strong>: CC(=O)Nc1nnc(S(=O)(=O)N)s1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.36</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 145.919,66.3443 L 136.858,61.1134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.858,61.1134 L 127.797,55.8825' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.715,48.1863 L 123.715,34.8322' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.715,34.8322 L 123.715,21.4782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 95.9617,69.549 L 107.717,62.7621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 107.717,62.7621 L 119.472,55.9752' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.715,21.4782 L 95.9617,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9617,5.45455 L 68.2088,21.4782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.004,21.4782 L 71.4135,53.5254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.4135,21.4782 L 65.004,53.5254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.2088,53.5254 L 40.4729,69.6152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 68.2088,53.5254 L 95.9617,69.549' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 42.0705,66.8371 L 33.3611,61.829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 33.3611,61.829 L 24.6517,56.8208' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 38.8754,72.3934 L 30.1661,67.3853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.1661,67.3853 L 21.4567,62.3772' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.4729,69.6152 L 40.4916,82.952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.4916,82.952 L 40.5103,96.2888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 35.7107,104.468 L 27.0259,109.507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.0259,109.507 L 18.3411,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 121.708 48.9875\\nL 124.682 53.7946\\nQ 124.977 54.2689, 125.452 55.1278\\nQ 125.926 55.9866, 125.951 56.0379\\nL 125.951 48.9875\\nL 127.156 48.9875\\nL 127.156 58.0633\\nL 125.913 58.0633\\nL 122.721 52.8075\\nQ 122.349 52.1922, 121.952 51.4872\\nQ 121.567 50.7821, 121.452 50.5642\\nL 121.452 58.0633\\nL 120.273 58.0633\\nL 120.273 48.9875\\nL 121.708 48.9875\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 14.081 56.8604\\nQ 14.081 54.6812, 15.1578 53.4634\\nQ 16.2346 52.2456, 18.2471 52.2456\\nQ 20.2597 52.2456, 21.3365 53.4634\\nQ 22.4133 54.6812, 22.4133 56.8604\\nQ 22.4133 59.0653, 21.3237 60.3215\\nQ 20.2341 61.565, 18.2471 61.565\\nQ 16.2474 61.565, 15.1578 60.3215\\nQ 14.081 59.0781, 14.081 56.8604\\nM 18.2471 60.5395\\nQ 19.6316 60.5395, 20.3751 59.6165\\nQ 21.1314 58.6807, 21.1314 56.8604\\nQ 21.1314 55.0786, 20.3751 54.1813\\nQ 19.6316 53.2711, 18.2471 53.2711\\nQ 16.8627 53.2711, 16.1064 54.1685\\nQ 15.3629 55.0658, 15.3629 56.8604\\nQ 15.3629 58.6935, 16.1064 59.6165\\nQ 16.8627 60.5395, 18.2471 60.5395\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 36.3517 101.705\\nQ 36.3517 99.526, 37.4285 98.3082\\nQ 38.5052 97.0904, 40.5178 97.0904\\nQ 42.5304 97.0904, 43.6072 98.3082\\nQ 44.684 99.526, 44.684 101.705\\nQ 44.684 103.91, 43.5943 105.166\\nQ 42.5047 106.41, 40.5178 106.41\\nQ 38.5181 106.41, 37.4285 105.166\\nQ 36.3517 103.923, 36.3517 101.705\\nM 40.5178 105.384\\nQ 41.9023 105.384, 42.6457 104.461\\nQ 43.4021 103.525, 43.4021 101.705\\nQ 43.4021 99.9234, 42.6457 99.026\\nQ 41.9023 98.1159, 40.5178 98.1159\\nQ 39.1334 98.1159, 38.3771 99.0132\\nQ 37.6336 99.9106, 37.6336 101.705\\nQ 37.6336 103.538, 38.3771 104.461\\nQ 39.1334 105.384, 40.5178 105.384\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 128, "data-ID": 646, "data-Solubility": 0.81, "data-SMILES": "CN1CCC=C(C(=O)OC)C1", "mols2grid-tooltip": "<strong>Name</strong>: arecoline<br><strong>SMILES</strong>: CN1CCC=C(C(=O)OC)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.81</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105.678,95.4459 L 89.665,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 105.678,95.4459 L 130.224,99.7701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-0 atom-3' d='M 105.678,95.4459 L 95.8751,66.3023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.8751,66.3023 L 122.126,50.2766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-3 atom-6' d='M 95.8751,66.3023 L 95.8751,35.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 68.8956,81.8793 L 95.8751,66.3023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 122.126,50.2766 L 143.72,62.7216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.4327,37.8462 L 105.889,32.9643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.889,32.9643 L 114.345,28.0824' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.3175,32.4501 L 102.774,27.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 102.774,27.5682 L 111.23,22.6863' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 95.8751,35.1482 L 84.4478,28.5504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 84.4478,28.5504 L 73.0204,21.9526' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.7708,21.9526 L 53.3435,28.5504' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.3435,28.5504 L 41.9162,35.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 43.4738,32.4501 L 35.0175,27.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 35.0175,27.5682 L 26.5613,22.6863' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 40.3585,37.8462 L 31.9023,32.9643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 31.9023,32.9643 L 23.446,28.0824' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 41.9162,35.1482 L 41.9162,48.1301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 41.9162,48.1301 L 41.9162,61.112' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 46.041,68.6838 L 57.4683,75.2816' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 57.4683,75.2816 L 68.8956,81.8793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 65.7802,81.8793 L 65.7802,91.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 65.7802,91.7988 L 65.7802,101.718' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.011,81.8793 L 72.011,91.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.011,91.7988 L 72.011,101.718' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 113.411 22.7114\\nQ 113.411 20.593, 114.457 19.4091\\nQ 115.504 18.2252, 117.461 18.2252\\nQ 119.417 18.2252, 120.464 19.4091\\nQ 121.511 20.593, 121.511 22.7114\\nQ 121.511 24.8548, 120.452 26.0761\\nQ 119.392 27.2849, 117.461 27.2849\\nQ 115.517 27.2849, 114.457 26.0761\\nQ 113.411 24.8673, 113.411 22.7114\\nM 117.461 26.2879\\nQ 118.807 26.2879, 119.529 25.3907\\nQ 120.265 24.481, 120.265 22.7114\\nQ 120.265 20.9793, 119.529 20.1069\\nQ 118.807 19.2222, 117.461 19.2222\\nQ 116.115 19.2222, 115.38 20.0945\\nQ 114.657 20.9668, 114.657 22.7114\\nQ 114.657 24.4934, 115.38 25.3907\\nQ 116.115 26.2879, 117.461 26.2879\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 66.9454 15.1597\\nL 69.8365 19.8328\\nQ 70.1231 20.2939, 70.5842 21.1288\\nQ 71.0453 21.9637, 71.0702 22.0136\\nL 71.0702 15.1597\\nL 72.2416 15.1597\\nL 72.2416 23.9825\\nL 71.0328 23.9825\\nL 67.9299 18.8732\\nQ 67.5685 18.2751, 67.1822 17.5897\\nQ 66.8083 16.9043, 66.6962 16.6925\\nL 66.6962 23.9825\\nL 65.5497 23.9825\\nL 65.5497 15.1597\\nL 66.9454 15.1597\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 65.4438 5.45455\\nL 66.6401 5.45455\\nL 66.6401 9.2055\\nL 71.1512 9.2055\\nL 71.1512 5.45455\\nL 72.3475 5.45455\\nL 72.3475 14.2774\\nL 71.1512 14.2774\\nL 71.1512 10.2024\\nL 66.6401 10.2024\\nL 66.6401 14.2774\\nL 65.4438 14.2774\\nL 65.4438 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 16.2805 22.7114\\nQ 16.2805 20.593, 17.3273 19.4091\\nQ 18.374 18.2252, 20.3305 18.2252\\nQ 22.287 18.2252, 23.3338 19.4091\\nQ 24.3806 20.593, 24.3806 22.7114\\nQ 24.3806 24.8548, 23.3213 26.0761\\nQ 22.2621 27.2849, 20.3305 27.2849\\nQ 18.3865 27.2849, 17.3273 26.0761\\nQ 16.2805 24.8673, 16.2805 22.7114\\nM 20.3305 26.2879\\nQ 21.6764 26.2879, 22.3992 25.3907\\nQ 23.1344 24.481, 23.1344 22.7114\\nQ 23.1344 20.9793, 22.3992 20.1069\\nQ 21.6764 19.2222, 20.3305 19.2222\\nQ 18.9847 19.2222, 18.2494 20.0945\\nQ 17.5267 20.9668, 17.5267 22.7114\\nQ 17.5267 24.4934, 18.2494 25.3907\\nQ 18.9847 26.2879, 20.3305 26.2879\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 30.6322 61.8908\\nL 31.8285 61.8908\\nL 31.8285 65.6418\\nL 36.3396 65.6418\\nL 36.3396 61.8908\\nL 37.5359 61.8908\\nL 37.5359 70.7137\\nL 36.3396 70.7137\\nL 36.3396 66.6387\\nL 31.8285 66.6387\\nL 31.8285 70.7137\\nL 30.6322 70.7137\\nL 30.6322 61.8908\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 39.9659 61.8908\\nL 42.857 66.564\\nQ 43.1436 67.025, 43.6047 67.86\\nQ 44.0658 68.6949, 44.0907 68.7448\\nL 44.0907 61.8908\\nL 45.2621 61.8908\\nL 45.2621 70.7137\\nL 44.0533 70.7137\\nL 40.9504 65.6044\\nQ 40.589 65.0063, 40.2027 64.3209\\nQ 39.8288 63.6355, 39.7167 63.4236\\nL 39.7167 70.7137\\nL 38.5702 70.7137\\nL 38.5702 61.8908\\nL 39.9659 61.8908\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 64.8456 106.828\\nQ 64.8456 104.709, 65.8924 103.525\\nQ 66.9392 102.341, 68.8956 102.341\\nQ 70.8521 102.341, 71.8989 103.525\\nQ 72.9457 104.709, 72.9457 106.828\\nQ 72.9457 108.971, 71.8864 110.192\\nQ 70.8272 111.401, 68.8956 111.401\\nQ 66.9516 111.401, 65.8924 110.192\\nQ 64.8456 108.983, 64.8456 106.828\\nM 68.8956 110.404\\nQ 70.2415 110.404, 70.9643 109.507\\nQ 71.6995 108.597, 71.6995 106.828\\nQ 71.6995 105.095, 70.9643 104.223\\nQ 70.2415 103.338, 68.8956 103.338\\nQ 67.5498 103.338, 66.8145 104.211\\nQ 66.0918 105.083, 66.0918 106.828\\nQ 66.0918 108.61, 66.8145 109.507\\nQ 67.5498 110.404, 68.8956 110.404\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 129, "data-ID": 651, "data-Solubility": -2.21, "data-SMILES": "C(C)(C)C1(CC)C(=O)NC(=O)NC1(=O)", "mols2grid-tooltip": "<strong>Name</strong>: probarbital<br><strong>SMILES</strong>: C(C)(C)C1(CC)C(=O)NC(=O)NC1(=O)<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.21</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 150.417,98.1724 L 150.425,92.6026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 150.425,92.6026 L 150.433,87.0328' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 147.707,82.4967 L 141.449,78.8667' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 141.449,78.8667 L 135.191,75.2368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 135.191,75.2368 L 135.191,57.622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.668,72.5946 L 131.668,60.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-2' d='M 122.269,82.6976 L 128.73,78.9672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-2' d='M 128.73,78.9672 L 135.191,75.2368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 135.191,57.622 L 119.937,48.8146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 119.937,48.8146 L 104.682,57.622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 119.41,53.1867 L 108.732,59.3518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.682,57.622 L 98.2079,53.9019' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 98.2079,53.9019 L 91.7334,50.1818' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-5 atom-17' d='M 104.682,57.622 L 104.682,64.9621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-5 atom-17' d='M 104.682,64.9621 L 104.682,72.3022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.0685,50.1926 L 81.5956,53.3624' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.5956,53.3624 L 76.1227,56.5323' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.3938,60.6513 L 72.4011,64.8103' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.4011,64.8103 L 72.4084,68.9694' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.9168,60.6451 L 75.924,64.8042' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.924,64.8042 L 75.9313,68.9632' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 75.2235,60.3245 L 79.0623,62.5328' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 79.0623,62.5328 L 82.901,64.7412' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 76.9802,57.2708 L 80.819,59.4791' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 80.819,59.4791 L 84.6578,61.6875' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 72.1101,56.5027 L 65.4894,52.6986' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 65.4894,52.6986 L 58.8687,48.8945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 58.8687,48.8945 L 43.6319,57.7336' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 54.8154,47.173 L 44.1496,53.3604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-10' d='M 58.8323,31.2797 L 58.8687,48.8945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.6319,57.7336 L 28.3587,48.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 28.3587,48.9579 L 28.3223,31.3431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 31.8762,46.3084 L 31.8507,33.978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 28.3223,31.3431 L 23.335,28.4772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 23.335,28.4772 L 18.3476,25.6114' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 28.3223,31.3431 L 43.5591,22.504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 43.5591,22.504 L 58.8323,31.2797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 44.0949,26.875 L 54.7862,33.018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 107.015,76.5833 L 117.672,82.7365' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 110.375,74.4553 L 117.835,78.7626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 148.147 84.0947\\nQ 148.147 82.8969, 148.739 82.2275\\nQ 149.331 81.5581, 150.437 81.5581\\nQ 151.544 81.5581, 152.135 82.2275\\nQ 152.727 82.8969, 152.727 84.0947\\nQ 152.727 85.3066, 152.128 85.9971\\nQ 151.529 86.6805, 150.437 86.6805\\nQ 149.338 86.6805, 148.739 85.9971\\nQ 148.147 85.3136, 148.147 84.0947\\nM 150.437 86.1168\\nQ 151.198 86.1168, 151.607 85.6095\\nQ 152.023 85.0952, 152.023 84.0947\\nQ 152.023 83.1153, 151.607 82.6221\\nQ 151.198 82.1218, 150.437 82.1218\\nQ 149.676 82.1218, 149.261 82.615\\nQ 148.852 83.1082, 148.852 84.0947\\nQ 148.852 85.1022, 149.261 85.6095\\nQ 149.676 86.1168, 150.437 86.1168\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 88.2983 46.3474\\nL 89.9329 48.9896\\nQ 90.095 49.2503, 90.3557 49.7224\\nQ 90.6164 50.1944, 90.6305 50.2226\\nL 90.6305 46.3474\\nL 91.2928 46.3474\\nL 91.2928 51.3359\\nL 90.6093 51.3359\\nL 88.8549 48.4471\\nQ 88.6506 48.1088, 88.4321 47.7213\\nQ 88.2208 47.3338, 88.1574 47.214\\nL 88.1574 51.3359\\nL 87.5091 51.3359\\nL 87.5091 46.3474\\nL 88.2983 46.3474\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 87.4492 40.86\\nL 88.1257 40.86\\nL 88.1257 42.9808\\nL 90.6763 42.9808\\nL 90.6763 40.86\\nL 91.3527 40.86\\nL 91.3527 45.8485\\nL 90.6763 45.8485\\nL 90.6763 43.5445\\nL 88.1257 43.5445\\nL 88.1257 45.8485\\nL 87.4492 45.8485\\nL 87.4492 40.86\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 72.7409 59.387\\nQ 72.7973 59.4081, 73.0298 59.5068\\nQ 73.2623 59.6054, 73.516 59.6688\\nQ 73.7767 59.7252, 74.0303 59.7252\\nQ 74.5024 59.7252, 74.7772 59.4997\\nQ 75.052 59.2672, 75.052 58.8656\\nQ 75.052 58.5908, 74.911 58.4217\\nQ 74.7772 58.2526, 74.5658 58.161\\nQ 74.3544 58.0694, 74.0021 57.9637\\nQ 73.5582 57.8299, 73.2905 57.703\\nQ 73.0298 57.5762, 72.8395 57.3085\\nQ 72.6564 57.0407, 72.6564 56.5898\\nQ 72.6564 55.9627, 73.0791 55.5752\\nQ 73.5089 55.1876, 74.3544 55.1876\\nQ 74.9322 55.1876, 75.5875 55.4624\\nL 75.4254 56.005\\nQ 74.8265 55.7584, 74.3756 55.7584\\nQ 73.8894 55.7584, 73.6216 55.9627\\nQ 73.3539 56.16, 73.3609 56.5052\\nQ 73.3609 56.773, 73.4948 56.935\\nQ 73.6357 57.0971, 73.833 57.1887\\nQ 74.0373 57.2803, 74.3756 57.386\\nQ 74.8265 57.5269, 75.0942 57.6678\\nQ 75.362 57.8087, 75.5522 58.0976\\nQ 75.7495 58.3794, 75.7495 58.8656\\nQ 75.7495 59.5561, 75.2845 59.9295\\nQ 74.8265 60.2959, 74.0585 60.2959\\nQ 73.6146 60.2959, 73.2764 60.1973\\nQ 72.9452 60.1057, 72.5507 59.9436\\nL 72.7409 59.387\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 71.8848 71.7808\\nQ 71.8848 70.583, 72.4767 69.9136\\nQ 73.0685 69.2442, 74.1747 69.2442\\nQ 75.281 69.2442, 75.8728 69.9136\\nQ 76.4647 70.583, 76.4647 71.7808\\nQ 76.4647 72.9927, 75.8658 73.6832\\nQ 75.2669 74.3666, 74.1747 74.3666\\nQ 73.0756 74.3666, 72.4767 73.6832\\nQ 71.8848 72.9997, 71.8848 71.7808\\nM 74.1747 73.8029\\nQ 74.9357 73.8029, 75.3444 73.2956\\nQ 75.7601 72.7813, 75.7601 71.7808\\nQ 75.7601 70.8014, 75.3444 70.3082\\nQ 74.9357 69.8079, 74.1747 69.8079\\nQ 73.4138 69.8079, 72.9981 70.3011\\nQ 72.5894 70.7943, 72.5894 71.7808\\nQ 72.5894 72.7883, 72.9981 73.2956\\nQ 73.4138 73.8029, 74.1747 73.8029\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.0754 64.7161\\nQ 84.0754 63.5183, 84.6673 62.8489\\nQ 85.2591 62.1795, 86.3653 62.1795\\nQ 87.4716 62.1795, 88.0634 62.8489\\nQ 88.6553 63.5183, 88.6553 64.7161\\nQ 88.6553 65.928, 88.0564 66.6185\\nQ 87.4575 67.3019, 86.3653 67.3019\\nQ 85.2662 67.3019, 84.6673 66.6185\\nQ 84.0754 65.935, 84.0754 64.7161\\nM 86.3653 66.7382\\nQ 87.1263 66.7382, 87.535 66.2309\\nQ 87.9507 65.7166, 87.9507 64.7161\\nQ 87.9507 63.7367, 87.535 63.2435\\nQ 87.1263 62.7432, 86.3653 62.7432\\nQ 85.6044 62.7432, 85.1887 63.2364\\nQ 84.78 63.7296, 84.78 64.7161\\nQ 84.78 65.7236, 85.1887 66.2309\\nQ 85.6044 66.7382, 86.3653 66.7382\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 7.27273 21.8276\\nL 7.94913 21.8276\\nL 7.94913 23.9484\\nL 10.4998 23.9484\\nL 10.4998 21.8276\\nL 11.1762 21.8276\\nL 11.1762 26.8161\\nL 10.4998 26.8161\\nL 10.4998 24.5121\\nL 7.94913 24.5121\\nL 7.94913 26.8161\\nL 7.27273 26.8161\\nL 7.27273 21.8276\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 11.418 26.6411\\nQ 11.5389 26.3295, 11.8272 26.1574\\nQ 12.1155 25.9807, 12.5154 25.9807\\nQ 13.013 25.9807, 13.2921 26.2505\\nQ 13.5711 26.5202, 13.5711 26.9992\\nQ 13.5711 27.4874, 13.2083 27.9432\\nQ 12.8503 28.3989, 12.1062 28.9383\\nL 13.6269 28.9383\\nL 13.6269 29.3104\\nL 11.4087 29.3104\\nL 11.4087 28.9988\\nQ 12.0225 28.5617, 12.3852 28.2361\\nQ 12.7526 27.9106, 12.9293 27.6176\\nQ 13.106 27.3247, 13.106 27.0224\\nQ 13.106 26.7062, 12.9479 26.5295\\nQ 12.7898 26.3528, 12.5154 26.3528\\nQ 12.2504 26.3528, 12.0737 26.4597\\nQ 11.897 26.5667, 11.7714 26.8038\\nL 11.418 26.6411\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 15.0008 21.8276\\nL 16.6355 24.4698\\nQ 16.7975 24.7305, 17.0582 25.2026\\nQ 17.3189 25.6747, 17.333 25.7028\\nL 17.333 21.8276\\nL 17.9953 21.8276\\nL 17.9953 26.8161\\nL 17.3119 26.8161\\nL 15.5575 23.9273\\nQ 15.3531 23.5891, 15.1347 23.2015\\nQ 14.9233 22.814, 14.8599 22.6942\\nL 14.8599 26.8161\\nL 14.2117 26.8161\\nL 14.2117 21.8276\\nL 15.0008 21.8276\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 103.58 72.7425\\nL 105.214 75.3847\\nQ 105.376 75.6454, 105.637 76.1175\\nQ 105.898 76.5896, 105.912 76.6178\\nL 105.912 72.7425\\nL 106.574 72.7425\\nL 106.574 77.731\\nL 105.891 77.731\\nL 104.136 74.8422\\nQ 103.932 74.504, 103.714 74.1165\\nQ 103.502 73.729, 103.439 73.6092\\nL 103.439 77.731\\nL 102.791 77.731\\nL 102.791 72.7425\\nL 103.58 72.7425\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 118.834 81.5499\\nL 120.469 84.1921\\nQ 120.631 84.4528, 120.891 84.9249\\nQ 121.152 85.397, 121.166 85.4252\\nL 121.166 81.5499\\nL 121.829 81.5499\\nL 121.829 86.5384\\nL 121.145 86.5384\\nL 119.391 83.6496\\nQ 119.186 83.3114, 118.968 82.9239\\nQ 118.757 82.5364, 118.693 82.4166\\nL 118.693 86.5384\\nL 118.045 86.5384\\nL 118.045 81.5499\\nL 118.834 81.5499\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 130, "data-ID": 656, "data-Solubility": -3.28, "data-SMILES": "COc2ccc(NS(=O)(=O)c1ccc(N)cc1)nn2", "mols2grid-tooltip": "<strong>Name</strong>: sulfamethoxypyridazine<br><strong>SMILES</strong>: COc2ccc(NS(=O)(=O)c1ccc(N)cc1)nn2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.28</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.703,56.6116 L 112.538,60.7455' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.538,60.7455 L 105.372,64.8794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-0 atom-12' d='M 124.872,56.6116 L 132.037,60.7455' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-0 atom-12' d='M 132.037,60.7455 L 139.203,64.8794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-0 atom-14' d='M 122.294,51.8687 L 122.311,43.7306' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-0 atom-14' d='M 122.311,43.7306 L 122.328,35.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.421,64.8794 L 103.421,71.1133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.421,71.1133 L 103.421,77.3473' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.324,64.8794 L 107.324,71.1133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.324,71.1133 L 107.324,77.3473' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.372,64.8794 L 98.0455,60.6521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 98.0455,60.6521 L 90.7187,56.4248' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.1979,56.4247 L 73.7382,63.613' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.2826,63.5753 L 61.9552,59.348' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.9552,59.348 L 54.6277,55.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.6277,55.1206 L 47.4623,59.2545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.4623,59.2545 L 40.2968,63.3884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 56.5795,55.1206 L 56.5795,48.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 56.5795,48.9608 L 56.5795,42.8011' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 52.676,55.1206 L 52.676,48.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 52.676,48.9608 L 52.676,42.8011' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 35.128,63.3884 L 27.9626,59.2545' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 27.9626,59.2545 L 20.7971,55.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 37.7057,68.1313 L 37.6889,76.2694' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 37.6889,76.2694 L 37.6721,84.4075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 20.7971,55.1206 L 7.27273,62.9237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 37.6721,84.4075 L 24.1386,92.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 139.203,64.8794 L 152.727,57.0763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 122.328,35.5925 L 135.861,27.8037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.066 52.3569\\nL 122.877 55.2845\\nQ 123.057 55.5734, 123.345 56.0965\\nQ 123.634 56.6195, 123.65 56.6508\\nL 123.65 52.3569\\nL 124.384 52.3569\\nL 124.384 57.8843\\nL 123.626 57.8843\\nL 121.683 54.6834\\nQ 121.456 54.3087, 121.214 53.8793\\nQ 120.98 53.4499, 120.91 53.3172\\nL 120.91 57.8843\\nL 120.191 57.8843\\nL 120.191 52.3569\\nL 121.066 52.3569\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 103.811 82.3906\\nQ 103.873 82.4141, 104.131 82.5234\\nQ 104.389 82.6327, 104.67 82.7029\\nQ 104.959 82.7654, 105.24 82.7654\\nQ 105.763 82.7654, 106.067 82.5155\\nQ 106.372 82.2579, 106.372 81.8129\\nQ 106.372 81.5084, 106.215 81.3211\\nQ 106.067 81.1337, 105.833 81.0322\\nQ 105.599 80.9307, 105.208 80.8136\\nQ 104.716 80.6653, 104.42 80.5247\\nQ 104.131 80.3842, 103.92 80.0876\\nQ 103.717 79.7909, 103.717 79.2912\\nQ 103.717 78.5964, 104.186 78.167\\nQ 104.662 77.7376, 105.599 77.7376\\nQ 106.239 77.7376, 106.965 78.0421\\nL 106.785 78.6432\\nQ 106.122 78.37, 105.622 78.37\\nQ 105.083 78.37, 104.787 78.5964\\nQ 104.49 78.815, 104.498 79.1975\\nQ 104.498 79.4942, 104.646 79.6738\\nQ 104.802 79.8533, 105.021 79.9548\\nQ 105.247 80.0563, 105.622 80.1734\\nQ 106.122 80.3296, 106.418 80.4857\\nQ 106.715 80.6419, 106.926 80.9619\\nQ 107.144 81.2742, 107.144 81.8129\\nQ 107.144 82.578, 106.629 82.9918\\nQ 106.122 83.3977, 105.271 83.3977\\nQ 104.779 83.3977, 104.404 83.2884\\nQ 104.037 83.187, 103.6 83.0074\\nL 103.811 82.3906\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 86.8969 57.0177\\nQ 86.9593 57.0411, 87.217 57.1504\\nQ 87.4746 57.2597, 87.7557 57.33\\nQ 88.0445 57.3924, 88.3256 57.3924\\nQ 88.8486 57.3924, 89.1531 57.1426\\nQ 89.4576 56.885, 89.4576 56.44\\nQ 89.4576 56.1355, 89.3015 55.9481\\nQ 89.1531 55.7608, 88.9189 55.6593\\nQ 88.6847 55.5578, 88.2943 55.4407\\nQ 87.8025 55.2923, 87.5058 55.1518\\nQ 87.217 55.0113, 87.0062 54.7146\\nQ 86.8032 54.418, 86.8032 53.9183\\nQ 86.8032 53.2235, 87.2716 52.7941\\nQ 87.7479 52.3647, 88.6847 52.3647\\nQ 89.3249 52.3647, 90.0509 52.6692\\nL 89.8714 53.2703\\nQ 89.2078 52.9971, 88.7081 52.9971\\nQ 88.1694 52.9971, 87.8728 53.2235\\nQ 87.5761 53.4421, 87.5839 53.8246\\nQ 87.5839 54.1213, 87.7322 54.3008\\nQ 87.8884 54.4804, 88.107 54.5819\\nQ 88.3334 54.6834, 88.7081 54.8005\\nQ 89.2078 54.9566, 89.5044 55.1128\\nQ 89.8011 55.2689, 90.0119 55.589\\nQ 90.2305 55.9013, 90.2305 56.44\\nQ 90.2305 57.2051, 89.7152 57.6188\\nQ 89.2078 58.0248, 88.3568 58.0248\\nQ 87.865 58.0248, 87.4902 57.9155\\nQ 87.1233 57.814, 86.6861 57.6345\\nL 86.8969 57.0177\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 69.9816 66.7765\\nQ 70.0441 66.7999, 70.3017 66.9092\\nQ 70.5593 67.0185, 70.8404 67.0888\\nQ 71.1292 67.1513, 71.4103 67.1513\\nQ 71.9334 67.1513, 72.2378 66.9014\\nQ 72.5423 66.6438, 72.5423 66.1988\\nQ 72.5423 65.8943, 72.3862 65.707\\nQ 72.2378 65.5196, 72.0036 65.4181\\nQ 71.7694 65.3166, 71.3791 65.1995\\nQ 70.8872 65.0512, 70.5905 64.9106\\nQ 70.3017 64.7701, 70.0909 64.4734\\nQ 69.8879 64.1768, 69.8879 63.6771\\nQ 69.8879 62.9823, 70.3563 62.5529\\nQ 70.8326 62.1235, 71.7694 62.1235\\nQ 72.4096 62.1235, 73.1356 62.428\\nL 72.9561 63.0291\\nQ 72.2925 62.7559, 71.7928 62.7559\\nQ 71.2541 62.7559, 70.9575 62.9823\\nQ 70.6608 63.2009, 70.6686 63.5834\\nQ 70.6686 63.8801, 70.817 64.0597\\nQ 70.9731 64.2392, 71.1917 64.3407\\nQ 71.4181 64.4422, 71.7928 64.5593\\nQ 72.2925 64.7155, 72.5892 64.8716\\nQ 72.8858 65.0277, 73.0966 65.3478\\nQ 73.3152 65.6601, 73.3152 66.1988\\nQ 73.3152 66.9639, 72.7999 67.3777\\nQ 72.2925 67.7836, 71.4415 67.7836\\nQ 70.9497 67.7836, 70.5749 67.6743\\nQ 70.208 67.5728, 69.7708 67.3933\\nL 69.9816 66.7765\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 36.4906 62.1157\\nL 38.3019 65.0434\\nQ 38.4814 65.3322, 38.7703 65.8553\\nQ 39.0592 66.3784, 39.0748 66.4096\\nL 39.0748 62.1157\\nL 39.8086 62.1157\\nL 39.8086 67.6431\\nL 39.0513 67.6431\\nL 37.1074 64.4422\\nQ 36.881 64.0675, 36.639 63.6381\\nQ 36.4048 63.2087, 36.3345 63.076\\nL 36.3345 67.6431\\nL 35.6162 67.6431\\nL 35.6162 62.1157\\nL 36.4906 62.1157\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 53.0663 41.4036\\nQ 53.1288 41.427, 53.3864 41.5363\\nQ 53.644 41.6456, 53.9251 41.7159\\nQ 54.2139 41.7783, 54.495 41.7783\\nQ 55.0181 41.7783, 55.3225 41.5285\\nQ 55.627 41.2709, 55.627 40.8259\\nQ 55.627 40.5214, 55.4709 40.334\\nQ 55.3225 40.1467, 55.0883 40.0452\\nQ 54.8541 39.9437, 54.4638 39.8266\\nQ 53.9719 39.6782, 53.6753 39.5377\\nQ 53.3864 39.3972, 53.1756 39.1005\\nQ 52.9726 38.8038, 52.9726 38.3042\\nQ 52.9726 37.6094, 53.441 37.18\\nQ 53.9173 36.7506, 54.8541 36.7506\\nQ 55.4943 36.7506, 56.2204 37.0551\\nL 56.0408 37.6562\\nQ 55.3772 37.383, 54.8775 37.383\\nQ 54.3389 37.383, 54.0422 37.6094\\nQ 53.7455 37.828, 53.7533 38.2105\\nQ 53.7533 38.5072, 53.9017 38.6867\\nQ 54.0578 38.8663, 54.2764 38.9678\\nQ 54.5028 39.0693, 54.8775 39.1864\\nQ 55.3772 39.3425, 55.6739 39.4987\\nQ 55.9705 39.6548, 56.1813 39.9749\\nQ 56.3999 40.2872, 56.3999 40.8259\\nQ 56.3999 41.591, 55.8847 42.0047\\nQ 55.3772 42.4107, 54.5262 42.4107\\nQ 54.0344 42.4107, 53.6596 42.3014\\nQ 53.2927 42.1999, 52.8555 42.0204\\nL 53.0663 41.4036\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 131, "data-ID": 662, "data-Solubility": -4.86, "data-SMILES": "N(C(=S)SSC(N(CC)CC)=S)(CC)CC", "mols2grid-tooltip": "<strong>Name</strong>: disulfiram<br><strong>SMILES</strong>: N(C(=S)SSC(N(CC)CC)=S)(CC)CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.86</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.4065,105.828 L 89.4288,99.8949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 89.4288,99.8949 L 88.4511,93.9616' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 90.8826,88.3337 L 96.7821,83.4902' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7821,83.4902 L 102.682,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.009,80.4328 L 121.041,83.5257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.355,76.8607 L 119.695,87.0977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-2' d='M 99.8619,59.423 L 102.682,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.368,85.3117 L 136.004,73.5201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.316,75.3004 L 141.005,77.4999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 141.005,77.4999 L 146.695,79.6994' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 136.692,71.7399 L 142.382,73.9394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 142.382,73.9394 L 148.071,76.1389' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 136.004,73.5201 L 132.414,54.5521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 132.414,54.5521 L 114.729,47.6314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 114.729,47.6314 L 112.465,32.5316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 114.729,47.6314 L 99.8619,59.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 99.8619,59.423 L 95.3995,65.5079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 95.3995,65.5079 L 90.9372,71.5928' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-9' d='M 88.5831,44.556 L 99.8619,59.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6358,73.8202 L 78.2661,71.3632' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.2661,71.3632 L 70.8964,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.8964,68.9063 L 53.7225,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 66.4372,67.047 L 54.4154,73.8653' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-11' d='M 70.8964,50.1953 L 70.8964,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.7225,78.6467 L 53.6825,84.8059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.6825,84.8059 L 53.6425,90.9651' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 53.7225,78.6467 L 37.0614,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 37.0614,68.9063 L 30.2089,72.7433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 30.2089,72.7433 L 23.3565,76.5803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-17' d='M 37.0614,68.9063 L 37.0614,50.1953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-17' d='M 40.8787,66.0997 L 40.8787,53.002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 17.5348,76.5351 L 12.4038,73.4848' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 12.4038,73.4848 L 7.27273,70.4345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 37.0614,50.1953 L 53.7225,40.7107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 53.7225,40.7107 L 53.6046,32.8104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 53.6046,32.8104 L 53.4867,24.91' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 53.7225,40.7107 L 70.8964,50.1953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 54.4532,45.4749 L 66.4749,52.1142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 50.5746,20.017 L 45.3398,17.0944' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 45.3398,17.0944 L 40.1051,14.1718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 70.8964,50.1953 L 88.5831,44.556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 90.4027,45.1321 L 92.2007,39.4532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 92.2007,39.4532 L 93.9987,33.7744' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 86.7635,43.9799 L 88.5615,38.301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 88.5615,38.301 L 90.3595,32.6222' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 85.4428 90.778\\nQ 85.4428 89.4801, 86.0841 88.7549\\nQ 86.7254 88.0296, 87.924 88.0296\\nQ 89.1226 88.0296, 89.7639 88.7549\\nQ 90.4052 89.4801, 90.4052 90.778\\nQ 90.4052 92.0912, 89.7563 92.8393\\nQ 89.1074 93.5799, 87.924 93.5799\\nQ 86.733 93.5799, 86.0841 92.8393\\nQ 85.4428 92.0988, 85.4428 90.778\\nM 87.924 92.9691\\nQ 88.7485 92.9691, 89.1914 92.4194\\nQ 89.6418 91.8621, 89.6418 90.778\\nQ 89.6418 89.7168, 89.1914 89.1824\\nQ 88.7485 88.6403, 87.924 88.6403\\nQ 87.0995 88.6403, 86.649 89.1748\\nQ 86.2062 89.7092, 86.2062 90.778\\nQ 86.2062 91.8698, 86.649 92.4194\\nQ 87.0995 92.9691, 87.924 92.9691\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 147.765 79.0412\\nQ 147.765 77.7433, 148.406 77.018\\nQ 149.047 76.2927, 150.246 76.2927\\nQ 151.445 76.2927, 152.086 77.018\\nQ 152.727 77.7433, 152.727 79.0412\\nQ 152.727 80.3543, 152.078 81.1025\\nQ 151.429 81.8431, 150.246 81.8431\\nQ 149.055 81.8431, 148.406 81.1025\\nQ 147.765 80.362, 147.765 79.0412\\nM 150.246 81.2323\\nQ 151.071 81.2323, 151.513 80.6826\\nQ 151.964 80.1253, 151.964 79.0412\\nQ 151.964 77.98, 151.513 77.4456\\nQ 151.071 76.9035, 150.246 76.9035\\nQ 149.422 76.9035, 148.971 77.4379\\nQ 148.528 77.9723, 148.528 79.0412\\nQ 148.528 80.1329, 148.971 80.6826\\nQ 149.422 81.2323, 150.246 81.2323\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 86.1019 74.818\\nQ 86.1019 73.5201, 86.7432 72.7949\\nQ 87.3845 72.0696, 88.5831 72.0696\\nQ 89.7818 72.0696, 90.4231 72.7949\\nQ 91.0644 73.5201, 91.0644 74.818\\nQ 91.0644 76.1311, 90.4154 76.8793\\nQ 89.7665 77.6199, 88.5831 77.6199\\nQ 87.3921 77.6199, 86.7432 76.8793\\nQ 86.1019 76.1388, 86.1019 74.818\\nM 88.5831 77.0091\\nQ 89.4077 77.0091, 89.8505 76.4594\\nQ 90.3009 75.9021, 90.3009 74.818\\nQ 90.3009 73.7568, 89.8505 73.2224\\nQ 89.4077 72.6803, 88.5831 72.6803\\nQ 87.7586 72.6803, 87.3082 73.2148\\nQ 86.8654 73.7492, 86.8654 74.818\\nQ 86.8654 75.9097, 87.3082 76.4594\\nQ 87.7586 77.0091, 88.5831 77.0091\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 51.5391 94.1029\\nQ 51.5391 92.7592, 52.1651 92.0568\\nQ 52.7988 91.3468, 53.9974 91.3468\\nQ 55.112 91.3468, 55.7075 92.1331\\nL 55.2036 92.5454\\nQ 54.7685 91.9728, 53.9974 91.9728\\nQ 53.1805 91.9728, 52.7453 92.5225\\nQ 52.3178 93.0646, 52.3178 94.1029\\nQ 52.3178 95.1717, 52.7606 95.7214\\nQ 53.211 96.2711, 54.0814 96.2711\\nQ 54.6769 96.2711, 55.3716 95.9122\\nL 55.5854 96.4848\\nQ 55.3029 96.6681, 54.8754 96.7749\\nQ 54.4478 96.8818, 53.9745 96.8818\\nQ 52.7988 96.8818, 52.1651 96.1642\\nQ 51.5391 95.4465, 51.5391 94.1029\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 56.3641 91.0185\\nL 57.0665 91.0185\\nL 57.0665 96.8131\\nL 56.3641 96.8131\\nL 56.3641 91.0185\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 17.9165 78.2523\\nQ 17.9165 76.9544, 18.5579 76.2291\\nQ 19.1992 75.5038, 20.3978 75.5038\\nQ 21.5964 75.5038, 22.2377 76.2291\\nQ 22.879 76.9544, 22.879 78.2523\\nQ 22.879 79.5654, 22.2301 80.3136\\nQ 21.5811 81.0542, 20.3978 81.0542\\nQ 19.2068 81.0542, 18.5579 80.3136\\nQ 17.9165 79.5731, 17.9165 78.2523\\nM 20.3978 80.4434\\nQ 21.2223 80.4434, 21.6651 79.8937\\nQ 22.1155 79.3364, 22.1155 78.2523\\nQ 22.1155 77.1911, 21.6651 76.6567\\nQ 21.2223 76.1146, 20.3978 76.1146\\nQ 19.5732 76.1146, 19.1228 76.649\\nQ 18.68 77.1834, 18.68 78.2523\\nQ 18.68 79.344, 19.1228 79.8937\\nQ 19.5732 80.4434, 20.3978 80.4434\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 50.9563 21.6307\\nQ 50.9563 20.3328, 51.5976 19.6076\\nQ 52.2389 18.8823, 53.4375 18.8823\\nQ 54.6361 18.8823, 55.2774 19.6076\\nQ 55.9187 20.3328, 55.9187 21.6307\\nQ 55.9187 22.9438, 55.2698 23.692\\nQ 54.6209 24.4326, 53.4375 24.4326\\nQ 52.2465 24.4326, 51.5976 23.692\\nQ 50.9563 22.9515, 50.9563 21.6307\\nM 53.4375 23.8218\\nQ 54.2621 23.8218, 54.7049 23.2721\\nQ 55.1553 22.7148, 55.1553 21.6307\\nQ 55.1553 20.5695, 54.7049 20.0351\\nQ 54.2621 19.493, 53.4375 19.493\\nQ 52.613 19.493, 52.1626 20.0275\\nQ 51.7198 20.5619, 51.7198 21.6307\\nQ 51.7198 22.7224, 52.1626 23.2721\\nQ 52.613 23.8218, 53.4375 23.8218\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 90.7106 30.0147\\nQ 90.7106 28.7168, 91.3519 27.9916\\nQ 91.9932 27.2663, 93.1919 27.2663\\nQ 94.3905 27.2663, 95.0318 27.9916\\nQ 95.6731 28.7168, 95.6731 30.0147\\nQ 95.6731 31.3278, 95.0241 32.076\\nQ 94.3752 32.8166, 93.1919 32.8166\\nQ 92.0009 32.8166, 91.3519 32.076\\nQ 90.7106 31.3355, 90.7106 30.0147\\nM 93.1919 32.2058\\nQ 94.0164 32.2058, 94.4592 31.6561\\nQ 94.9096 31.0988, 94.9096 30.0147\\nQ 94.9096 28.9535, 94.4592 28.4191\\nQ 94.0164 27.877, 93.1919 27.877\\nQ 92.3673 27.877, 91.9169 28.4115\\nQ 91.4741 28.9459, 91.4741 30.0147\\nQ 91.4741 31.1064, 91.9169 31.6561\\nQ 92.3673 32.2058, 93.1919 32.2058\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 132, "data-ID": 667, "data-Solubility": -4.61, "data-SMILES": "COC1=CC(=O)CC(C)C13Oc2c(Cl)c(OC)cc(OC)c2C3=O", "mols2grid-tooltip": "<strong>Name</strong>: griseofulvin<br><strong>SMILES</strong>: COC1=CC(=O)CC(C)C13Oc2c(Cl)c(OC)cc(OC)c2C3=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.61</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 98.968,40.4416 L 98.968,26.112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.1021,38.2922 L 96.1021,28.2615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 86.5586,47.6064 L 98.968,40.4416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.968,26.112 L 86.5586,18.9473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.5586,18.9473 L 86.5586,14.4207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.5586,14.4207 L 86.5586,9.8942' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.5586,18.9473 L 74.1492,26.112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.1302,22.5039 L 77.4436,27.5193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.1492,26.112 L 74.1492,40.4416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.1492,40.4416 L 86.5586,47.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.4436,39.0344 L 86.1302,44.0497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.5586,47.6064 L 86.5586,53.5368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.5586,53.5368 L 86.5586,59.4671' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.4911,64.1359 L 90.537,65.8933' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 90.537,65.8933 L 93.5829,67.6507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.9233,61.6536 L 91.9693,63.411' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 91.9693,63.411 L 95.0152,65.1684' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 85.1269,64.4629 L 85.1286,67.7496' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 85.1286,67.7496 L 85.1302,71.0363' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.9929,64.4614 L 87.9945,67.7482' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.9945,67.7482 L 87.9961,71.0349' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 84.8382,62.9384 L 80.4522,65.4745' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 80.4522,65.4745 L 76.0661,68.0107' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 74.1464,71.6032 L 74.1464,77.5306' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 74.1464,77.5306 L 74.1464,83.458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 74.1464,83.458 L 69.3418,86.8771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 69.3418,86.8771 L 64.5371,90.2963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 74.3667,86.8187 L 71.0035,89.2121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 71.0035,89.2121 L 67.6402,91.6056' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 84.039,90.4364 L 79.0927,86.9472' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 79.0927,86.9472 L 74.1464,83.458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 63.3832,94.1778 L 66.2366,102.897' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 68.9967,105.31 L 75.1769,105.298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 75.1769,105.298 L 81.357,105.286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 70.845,102.441 L 75.1711,102.432' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 75.1711,102.432 L 79.4972,102.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.357,105.286 L 88.1139,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 81.357,105.286 L 83.1388,99.7619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 83.1388,99.7619 L 84.9206,94.238' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.6196 5.35961\\nL 87.0116 7.60961\\nQ 87.1496 7.83161, 87.3716 8.23361\\nQ 87.5936 8.63561, 87.6056 8.65961\\nL 87.6056 5.35961\\nL 88.1696 5.35961\\nL 88.1696 9.60761\\nL 87.5876 9.60761\\nL 86.0936 7.14761\\nQ 85.9196 6.85961, 85.7336 6.52961\\nQ 85.5536 6.19961, 85.4996 6.09761\\nL 85.4996 9.60761\\nL 84.9476 9.60761\\nL 84.9476 5.35961\\nL 85.6196 5.35961\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.6796 5.35961\\nL 89.2556 5.35961\\nL 89.2556 7.16561\\nL 91.4276 7.16561\\nL 91.4276 5.35961\\nL 92.0036 5.35961\\nL 92.0036 9.60761\\nL 91.4276 9.60761\\nL 91.4276 7.64561\\nL 89.2556 7.64561\\nL 89.2556 9.60761\\nL 88.6796 9.60761\\nL 88.6796 5.35961\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 92.2096 9.45857\\nQ 92.3125 9.19325, 92.558 9.04673\\nQ 92.8036 8.89625, 93.1441 8.89625\\nQ 93.5678 8.89625, 93.8054 9.12593\\nQ 94.043 9.35561, 94.043 9.76349\\nQ 94.043 10.1793, 93.7342 10.5674\\nQ 93.4292 10.9555, 92.7956 11.4148\\nL 94.0906 11.4148\\nL 94.0906 11.7316\\nL 92.2016 11.7316\\nL 92.2016 11.4663\\nQ 92.7244 11.0941, 93.0332 10.8169\\nQ 93.3461 10.5397, 93.4966 10.2902\\nQ 93.647 10.0407, 93.647 9.78329\\nQ 93.647 9.51401, 93.5124 9.36353\\nQ 93.3778 9.21305, 93.1441 9.21305\\nQ 92.9184 9.21305, 92.7679 9.30413\\nQ 92.6174 9.39521, 92.5105 9.59717\\nL 92.2096 9.45857\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 85.3586 63.4016\\nQ 85.4066 63.4196, 85.6046 63.5036\\nQ 85.8026 63.5876, 86.0186 63.6416\\nQ 86.2406 63.6896, 86.4566 63.6896\\nQ 86.8586 63.6896, 87.0926 63.4976\\nQ 87.3266 63.2996, 87.3266 62.9576\\nQ 87.3266 62.7236, 87.2066 62.5796\\nQ 87.0926 62.4356, 86.9126 62.3576\\nQ 86.7326 62.2796, 86.4326 62.1896\\nQ 86.0546 62.0756, 85.8266 61.9676\\nQ 85.6046 61.8596, 85.4426 61.6316\\nQ 85.2866 61.4036, 85.2866 61.0196\\nQ 85.2866 60.4856, 85.6466 60.1556\\nQ 86.0126 59.8256, 86.7326 59.8256\\nQ 87.2246 59.8256, 87.7826 60.0596\\nL 87.6446 60.5216\\nQ 87.1346 60.3116, 86.7506 60.3116\\nQ 86.3366 60.3116, 86.1086 60.4856\\nQ 85.8806 60.6536, 85.8866 60.9476\\nQ 85.8866 61.1756, 86.0006 61.3136\\nQ 86.1206 61.4516, 86.2886 61.5296\\nQ 86.4626 61.6076, 86.7506 61.6976\\nQ 87.1346 61.8176, 87.3626 61.9376\\nQ 87.5906 62.0576, 87.7526 62.3036\\nQ 87.9206 62.5436, 87.9206 62.9576\\nQ 87.9206 63.5456, 87.5246 63.8636\\nQ 87.1346 64.1756, 86.4806 64.1756\\nQ 86.1026 64.1756, 85.8146 64.0916\\nQ 85.5326 64.0136, 85.1966 63.8756\\nL 85.3586 63.4016\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 94.5381 67.6845\\nQ 94.5381 66.6645, 95.0421 66.0945\\nQ 95.5461 65.5245, 96.4881 65.5245\\nQ 97.4301 65.5245, 97.9341 66.0945\\nQ 98.4381 66.6645, 98.4381 67.6845\\nQ 98.4381 68.7165, 97.9281 69.3045\\nQ 97.4181 69.8865, 96.4881 69.8865\\nQ 95.5521 69.8865, 95.0421 69.3045\\nQ 94.5381 68.7225, 94.5381 67.6845\\nM 96.4881 69.4065\\nQ 97.1361 69.4065, 97.4841 68.9745\\nQ 97.8381 68.5365, 97.8381 67.6845\\nQ 97.8381 66.8505, 97.4841 66.4305\\nQ 97.1361 66.0045, 96.4881 66.0045\\nQ 95.8401 66.0045, 95.4861 66.4245\\nQ 95.1381 66.8445, 95.1381 67.6845\\nQ 95.1381 68.5425, 95.4861 68.9745\\nQ 95.8401 69.4065, 96.4881 69.4065\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.6144 73.4192\\nQ 84.6144 72.3992, 85.1184 71.8292\\nQ 85.6224 71.2592, 86.5644 71.2592\\nQ 87.5064 71.2592, 88.0104 71.8292\\nQ 88.5144 72.3992, 88.5144 73.4192\\nQ 88.5144 74.4512, 88.0044 75.0392\\nQ 87.4944 75.6212, 86.5644 75.6212\\nQ 85.6284 75.6212, 85.1184 75.0392\\nQ 84.6144 74.4572, 84.6144 73.4192\\nM 86.5644 75.1412\\nQ 87.2124 75.1412, 87.5604 74.7092\\nQ 87.9144 74.2712, 87.9144 73.4192\\nQ 87.9144 72.5852, 87.5604 72.1652\\nQ 87.2124 71.7392, 86.5644 71.7392\\nQ 85.9164 71.7392, 85.5624 72.1592\\nQ 85.2144 72.5792, 85.2144 73.4192\\nQ 85.2144 74.2772, 85.5624 74.7092\\nQ 85.9164 75.1412, 86.5644 75.1412\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.7134 66.9968\\nL 69.2894 66.9968\\nL 69.2894 68.8028\\nL 71.4614 68.8028\\nL 71.4614 66.9968\\nL 72.0374 66.9968\\nL 72.0374 71.2448\\nL 71.4614 71.2448\\nL 71.4614 69.2828\\nL 69.2894 69.2828\\nL 69.2894 71.2448\\nL 68.7134 71.2448\\nL 68.7134 66.9968\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 73.2074 66.9968\\nL 74.5994 69.2468\\nQ 74.7374 69.4688, 74.9594 69.8708\\nQ 75.1814 70.2728, 75.1934 70.2968\\nL 75.1934 66.9968\\nL 75.7574 66.9968\\nL 75.7574 71.2448\\nL 75.1754 71.2448\\nL 73.6814 68.7848\\nQ 73.5074 68.4968, 73.3214 68.1668\\nQ 73.1414 67.8368, 73.0874 67.7348\\nL 73.0874 71.2448\\nL 72.5354 71.2448\\nL 72.5354 66.9968\\nL 73.2074 66.9968\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 61.632 89.5715\\nL 63.024 91.8215\\nQ 63.162 92.0435, 63.384 92.4455\\nQ 63.606 92.8475, 63.618 92.8715\\nL 63.618 89.5715\\nL 64.182 89.5715\\nL 64.182 93.8195\\nL 63.6 93.8195\\nL 62.106 91.3595\\nQ 61.932 91.0715, 61.746 90.7415\\nQ 61.566 90.4115, 61.512 90.3095\\nL 61.512 93.8195\\nL 60.96 93.8195\\nL 60.96 89.5715\\nL 61.632 89.5715\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.0885 103.19\\nL 67.4805 105.44\\nQ 67.6185 105.662, 67.8405 106.064\\nQ 68.0625 106.466, 68.0745 106.49\\nL 68.0745 103.19\\nL 68.6385 103.19\\nL 68.6385 107.438\\nL 68.0565 107.438\\nL 66.5625 104.978\\nQ 66.3885 104.69, 66.2025 104.36\\nQ 66.0225 104.03, 65.9685 103.928\\nL 65.9685 107.438\\nL 65.4165 107.438\\nL 65.4165 103.19\\nL 66.0885 103.19\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 84.5562 93.1058\\nQ 84.6042 93.1238, 84.8022 93.2078\\nQ 85.0002 93.2918, 85.2162 93.3458\\nQ 85.4382 93.3938, 85.6542 93.3938\\nQ 86.0562 93.3938, 86.2902 93.2018\\nQ 86.5242 93.0038, 86.5242 92.6618\\nQ 86.5242 92.4278, 86.4042 92.2838\\nQ 86.2902 92.1398, 86.1102 92.0618\\nQ 85.9302 91.9838, 85.6302 91.8938\\nQ 85.2522 91.7798, 85.0242 91.6718\\nQ 84.8022 91.5638, 84.6402 91.3358\\nQ 84.4842 91.1078, 84.4842 90.7238\\nQ 84.4842 90.1898, 84.8442 89.8598\\nQ 85.2102 89.5298, 85.9302 89.5298\\nQ 86.4222 89.5298, 86.9802 89.7638\\nL 86.8422 90.2258\\nQ 86.3322 90.0158, 85.9482 90.0158\\nQ 85.5342 90.0158, 85.3062 90.1898\\nQ 85.0782 90.3578, 85.0842 90.6518\\nQ 85.0842 90.8798, 85.1982 91.0178\\nQ 85.3182 91.1558, 85.4862 91.2338\\nQ 85.6602 91.3118, 85.9482 91.4018\\nQ 86.3322 91.5218, 86.5602 91.6418\\nQ 86.7882 91.7618, 86.9502 92.0078\\nQ 87.1182 92.2478, 87.1182 92.6618\\nQ 87.1182 93.2498, 86.7222 93.5678\\nQ 86.3322 93.8798, 85.6782 93.8798\\nQ 85.3002 93.8798, 85.0122 93.7958\\nQ 84.7302 93.7178, 84.3942 93.5798\\nL 84.5562 93.1058\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 133, "data-ID": 672, "data-Solubility": -2.41, "data-SMILES": "c1cc(N)ccc1S(=O)(=O)Nc2nnc(C)s2", "mols2grid-tooltip": "<strong>Name</strong>: sulfamethiazole<br><strong>SMILES</strong>: c1cc(N)ccc1S(=O)(=O)Nc2nnc(C)s2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.41</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 89.1353,105.341 L 92.1909,100.151' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1909,100.151 L 95.2465,94.9607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 85.7354,103.339 L 88.7909,98.1493' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.7909,98.1493 L 91.8465,92.9591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.5465,93.9599 L 90.0488,87.1765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 90.0488,87.1765 L 86.5511,80.3931' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-1 atom-28' d='M 93.5465,93.9599 L 112.09,94.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 82.2186,76.3181 L 73.4161,73.6316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 73.4161,73.6316 L 64.6137,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-2 atom-27' d='M 86.6407,73.8651 L 90.2251,67.2761' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-2 atom-27' d='M 90.2251,67.2761 L 93.8095,60.6872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.6137,70.9452 L 64.6137,50.1661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.6683,67.8283 L 60.6683,53.283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-3 atom-26' d='M 64.6137,70.9452 L 45.8073,81.8607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.6137,50.1661 L 85.5242,45.9577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-4 atom-19' d='M 64.6137,50.1661 L 45.8073,38.9875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 85.5242,45.9577 L 94.9931,29.1241' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-5 atom-18' d='M 85.5242,45.9577 L 67.3754,41.2233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-5' d='M 93.8095,60.6872 L 85.5242,45.9577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.9931,29.1241 L 90.2386,23.4393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.2386,23.4393 L 85.4841,17.7546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-6 atom-17' d='M 94.9931,29.1241 L 113.405,29.6501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 80.3094,15.723 L 72.9876,18.7412' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.9876,18.7412 L 65.6658,21.7593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 86.0105,14.2538 L 104.245,11.8912' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 104.245,11.8912 L 122.479,9.52865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-8' d='M 67.3754,41.2233 L 65.6658,21.7593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 122.479,9.52865 L 139.839,43.985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 139.839,43.985 L 122.874,46.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-16' d='M 138.62,45.5362 L 153.946,52.5603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-16' d='M 141.058,42.4339 L 151.509,55.6627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.874,46.3523 L 112.879,61.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-11' d='M 113.405,29.6501 L 122.874,46.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 112.879,61.7393 L 121.69,77.5208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-27 atom-12' d='M 93.8095,60.6872 L 112.879,61.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 121.69,77.5208 L 128.866,79.0972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 128.866,79.0972 L 136.041,80.6736' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-28 atom-13' d='M 112.09,94.6175 L 121.69,77.5208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 142.047,78.9484 L 147.322,74.7495' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 147.322,74.7495 L 152.596,70.5506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-15' d='M 152.727,54.1115 L 152.596,70.5506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 45.8073,38.9875 L 26.8695,50.1661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 44.9722,44.0619 L 31.7157,51.887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 26.8695,50.1661 L 19.9381,45.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 19.9381,45.9665 L 13.0068,41.7669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-20 atom-23' d='M 26.8695,50.1661 L 26.8695,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 10.0121,36.694 L 10.1377,30.4149' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 10.1377,30.4149 L 10.2633,24.1358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.8695,70.9452 L 19.8827,75.0646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 19.8827,75.0646 L 12.896,79.184' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-23' d='M 45.8073,81.8607 L 26.8695,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-23' d='M 44.9369,76.8052 L 31.6804,69.1643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 9.8645,84.2937 L 9.91597,90.5314' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 9.91597,90.5314 L 9.96743,96.769' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 82.9755 107.575\\nQ 82.9755 106.234, 83.6383 105.484\\nQ 84.3011 104.735, 85.54 104.735\\nQ 86.7788 104.735, 87.4417 105.484\\nQ 88.1045 106.234, 88.1045 107.575\\nQ 88.1045 108.933, 87.4338 109.706\\nQ 86.763 110.471, 85.54 110.471\\nQ 84.309 110.471, 83.6383 109.706\\nQ 82.9755 108.941, 82.9755 107.575\\nM 85.54 109.84\\nQ 86.3922 109.84, 86.8498 109.272\\nQ 87.3154 108.696, 87.3154 107.575\\nQ 87.3154 106.479, 86.8498 105.926\\nQ 86.3922 105.366, 85.54 105.366\\nQ 84.6878 105.366, 84.2222 105.918\\nQ 83.7646 106.471, 83.7646 107.575\\nQ 83.7646 108.704, 84.2222 109.272\\nQ 84.6878 109.84, 85.54 109.84\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 83.6317 74.3329\\nL 85.4624 77.292\\nQ 85.6439 77.5839, 85.9358 78.1126\\nQ 86.2278 78.6413, 86.2436 78.6729\\nL 86.2436 74.3329\\nL 86.9853 74.3329\\nL 86.9853 79.9196\\nL 86.2199 79.9196\\nL 84.2551 76.6844\\nQ 84.0263 76.3056, 83.7817 75.8716\\nQ 83.5449 75.4376, 83.4739 75.3035\\nL 83.4739 79.9196\\nL 82.748 79.9196\\nL 82.748 74.3329\\nL 83.6317 74.3329\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 81.659 11.8643\\nL 83.4897 14.8234\\nQ 83.6712 15.1153, 83.9631 15.644\\nQ 84.2551 16.1727, 84.2709 16.2042\\nL 84.2709 11.8643\\nL 85.0126 11.8643\\nL 85.0126 17.451\\nL 84.2472 17.451\\nL 82.2824 14.2158\\nQ 82.0536 13.837, 81.809 13.403\\nQ 81.5722 12.969, 81.5012 12.8349\\nL 81.5012 17.451\\nL 80.7753 17.451\\nL 80.7753 11.8643\\nL 81.659 11.8643\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 136.485 81.3505\\nQ 136.485 80.009, 137.148 79.2594\\nQ 137.811 78.5098, 139.05 78.5098\\nQ 140.289 78.5098, 140.952 79.2594\\nQ 141.614 80.009, 141.614 81.3505\\nQ 141.614 82.7077, 140.944 83.481\\nQ 140.273 84.2464, 139.05 84.2464\\nQ 137.819 84.2464, 137.148 83.481\\nQ 136.485 82.7156, 136.485 81.3505\\nM 139.05 83.6151\\nQ 139.902 83.6151, 140.36 83.047\\nQ 140.825 82.4709, 140.825 81.3505\\nQ 140.825 80.2536, 140.36 79.7013\\nQ 139.902 79.141, 139.05 79.141\\nQ 138.198 79.141, 137.732 79.6934\\nQ 137.275 80.2457, 137.275 81.3505\\nQ 137.275 82.4788, 137.732 83.047\\nQ 138.198 83.6151, 139.05 83.6151\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 7.3832 39.9292\\nQ 7.3832 38.5877, 8.04602 37.8381\\nQ 8.70885 37.0885, 9.9477 37.0885\\nQ 11.1866 37.0885, 11.8494 37.8381\\nQ 12.5122 38.5877, 12.5122 39.9292\\nQ 12.5122 41.2864, 11.8415 42.0597\\nQ 11.1708 42.8251, 9.9477 42.8251\\nQ 8.71674 42.8251, 8.04602 42.0597\\nQ 7.3832 41.2943, 7.3832 39.9292\\nM 9.9477 42.1938\\nQ 10.7999 42.1938, 11.2576 41.6257\\nQ 11.7231 41.0497, 11.7231 39.9292\\nQ 11.7231 38.8323, 11.2576 38.28\\nQ 10.7999 37.7197, 9.9477 37.7197\\nQ 9.0955 37.7197, 8.62994 38.2721\\nQ 8.17228 38.8245, 8.17228 39.9292\\nQ 8.17228 41.0575, 8.62994 41.6257\\nQ 9.0955 42.1938, 9.9477 42.1938\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 7.27273 81.0033\\nQ 7.27273 79.6618, 7.93555 78.9122\\nQ 8.59838 78.1626, 9.83723 78.1626\\nQ 11.0761 78.1626, 11.7389 78.9122\\nQ 12.4017 79.6618, 12.4017 81.0033\\nQ 12.4017 82.3605, 11.731 83.1338\\nQ 11.0603 83.8992, 9.83723 83.8992\\nQ 8.60627 83.8992, 7.93555 83.1338\\nQ 7.27273 82.3684, 7.27273 81.0033\\nM 9.83723 83.2679\\nQ 10.6894 83.2679, 11.1471 82.6998\\nQ 11.6127 82.1238, 11.6127 81.0033\\nQ 11.6127 79.9064, 11.1471 79.3541\\nQ 10.6894 78.7938, 9.83723 78.7938\\nQ 8.98502 78.7938, 8.51947 79.3462\\nQ 8.0618 79.8986, 8.0618 81.0033\\nQ 8.0618 82.1316, 8.51947 82.6998\\nQ 8.98502 83.2679, 9.83723 83.2679\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 134, "data-ID": 677, "data-Solubility": -2.09, "data-SMILES": "O=C(N(c(c(C1(C(N(C2)CC(C3C4C5OC6)=C6)C3)C2)cc(OC)c7OC)c7)C14)C5", "mols2grid-tooltip": "<strong>Name</strong>: brucine<br><strong>SMILES</strong>: O=C(N(c(c(C1(C(N(C2)CC(C3C4C5OC6)=C6)C3)C2)cc(OC)c7OC)c7)C14)C5<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.629,109.002 L 114.236,106.466' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.236,106.466 L 109.843,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.843,103.93 L 109.843,88.3927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.735,101.6 L 106.735,90.7233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 96.3875,111.699 L 109.843,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.843,88.3927 L 96.3875,80.624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.3875,80.624 L 82.932,88.3927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9229,84.4804 L 86.5041,89.9186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.932,88.3927 L 82.932,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 82.932,88.3927 L 77.0998,85.0257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 77.0998,85.0257 L 71.2677,81.6587' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 82.932,103.93 L 96.3875,111.699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.5041,102.404 L 95.9229,107.843' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 66.9694,80.2691 L 63.5894,82.2219' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 63.5894,82.2219 L 60.2095,84.1748' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.524,82.9598 L 65.144,84.9126' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 65.144,84.9126 L 61.7641,86.8654' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 68.5229,78.281 L 65.1404,76.3303' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 65.1404,76.3303 L 61.7579,74.3795' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 66.9704,80.9729 L 63.5879,79.0222' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 63.5879,79.0222 L 60.2054,77.0714' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 69.4665,78.0373 L 69.463,72.8178' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 69.463,72.8178 L 69.4595,67.5982' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.4005,63.8862 L 61.6978,60.5937' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 61.6978,60.5937 L 55.9951,57.3011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 55.9951,57.3011 L 42.0103,63.7627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 52.594,55.4494 L 42.8046,59.9725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-11' d='M 54.7816,44.5498 L 55.3884,50.9255' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-11' d='M 55.3884,50.9255 L 55.9951,57.3011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 42.0103,63.7627 L 31.5898,52.2369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 31.5898,52.2369 L 34.7165,46.7957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 34.7165,46.7957 L 37.8432,41.3545' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 35.2222,52.1528 L 37.4109,48.3439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 37.4109,48.3439 L 39.5995,44.5351' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 41.3878,39.1987 L 52.531,41.5429' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 56.593,40.1266 L 61.3603,35.8674' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 61.3603,35.8674 L 66.1276,31.6083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 66.1276,31.6083 L 81.1711,35.2762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 69.1203,29.1394 L 79.6506,31.707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-16' d='M 61.7036,16.6933 L 66.1276,31.6083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 81.1711,35.2762 L 91.8992,24.0364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 91.8992,24.0364 L 87.53,9.12658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 88.2617,22.6738 L 85.2033,12.2369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 87.53,9.12658 L 72.4317,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 72.4317,5.45455 L 61.7036,16.6933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 73.0703,9.28604 L 65.5606,17.1532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.636 107.945\\nL 121.078 110.276\\nQ 121.221 110.506, 121.45 110.922\\nQ 121.68 111.339, 121.693 111.363\\nL 121.693 107.945\\nL 122.277 107.945\\nL 122.277 112.345\\nL 121.674 112.345\\nL 120.127 109.797\\nQ 119.946 109.499, 119.754 109.157\\nQ 119.567 108.815, 119.511 108.71\\nL 119.511 112.345\\nL 118.94 112.345\\nL 118.94 107.945\\nL 119.636 107.945\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 122.805 107.945\\nL 123.402 107.945\\nL 123.402 109.816\\nL 125.652 109.816\\nL 125.652 107.945\\nL 126.248 107.945\\nL 126.248 112.345\\nL 125.652 112.345\\nL 125.652 110.313\\nL 123.402 110.313\\nL 123.402 112.345\\nL 122.805 112.345\\nL 122.805 107.945\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 126.462 112.191\\nQ 126.568 111.916, 126.823 111.764\\nQ 127.077 111.608, 127.43 111.608\\nQ 127.869 111.608, 128.115 111.846\\nQ 128.361 112.084, 128.361 112.507\\nQ 128.361 112.938, 128.041 113.339\\nQ 127.725 113.741, 127.069 114.217\\nL 128.41 114.217\\nL 128.41 114.545\\nL 126.454 114.545\\nL 126.454 114.271\\nQ 126.995 113.885, 127.315 113.598\\nQ 127.639 113.311, 127.795 113.052\\nQ 127.951 112.794, 127.951 112.527\\nQ 127.951 112.248, 127.811 112.093\\nQ 127.672 111.937, 127.43 111.937\\nQ 127.196 111.937, 127.04 112.031\\nQ 126.884 112.125, 126.774 112.335\\nL 126.462 112.191\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 68.2252 82.1301\\nQ 68.2749 82.1487, 68.48 82.2357\\nQ 68.6851 82.3227, 68.9089 82.3787\\nQ 69.1388 82.4284, 69.3625 82.4284\\nQ 69.779 82.4284, 70.0213 82.2295\\nQ 70.2637 82.0244, 70.2637 81.6702\\nQ 70.2637 81.4278, 70.1394 81.2786\\nQ 70.0213 81.1295, 69.8349 81.0487\\nQ 69.6484 80.9679, 69.3377 80.8746\\nQ 68.9461 80.7566, 68.71 80.6447\\nQ 68.48 80.5328, 68.3122 80.2966\\nQ 68.1506 80.0605, 68.1506 79.6627\\nQ 68.1506 79.1096, 68.5235 78.7678\\nQ 68.9026 78.4259, 69.6484 78.4259\\nQ 70.1581 78.4259, 70.7361 78.6683\\nL 70.5931 79.1469\\nQ 70.0648 78.9293, 69.6671 78.9293\\nQ 69.2382 78.9293, 69.0021 79.1096\\nQ 68.7659 79.2836, 68.7721 79.5881\\nQ 68.7721 79.8243, 68.8902 79.9673\\nQ 69.0145 80.1102, 69.1885 80.191\\nQ 69.3688 80.2718, 69.6671 80.365\\nQ 70.0648 80.4893, 70.301 80.6136\\nQ 70.5372 80.7379, 70.705 80.9927\\nQ 70.879 81.2413, 70.879 81.6702\\nQ 70.879 82.2792, 70.4688 82.6086\\nQ 70.0648 82.9318, 69.3874 82.9318\\nQ 68.9959 82.9318, 68.6975 82.8448\\nQ 68.4054 82.764, 68.0574 82.6211\\nL 68.2252 82.1301\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 56.686 86.8504\\nQ 56.686 85.7938, 57.2081 85.2034\\nQ 57.7301 84.613, 58.7059 84.613\\nQ 59.6816 84.613, 60.2037 85.2034\\nQ 60.7258 85.7938, 60.7258 86.8504\\nQ 60.7258 87.9193, 60.1975 88.5284\\nQ 59.6692 89.1313, 58.7059 89.1313\\nQ 57.7363 89.1313, 57.2081 88.5284\\nQ 56.686 87.9256, 56.686 86.8504\\nM 58.7059 88.6341\\nQ 59.3771 88.6341, 59.7376 88.1866\\nQ 60.1043 87.7329, 60.1043 86.8504\\nQ 60.1043 85.9865, 59.7376 85.5514\\nQ 59.3771 85.1102, 58.7059 85.1102\\nQ 58.0347 85.1102, 57.668 85.5452\\nQ 57.3075 85.9803, 57.3075 86.8504\\nQ 57.3075 87.7391, 57.668 88.1866\\nQ 58.0347 88.6341, 58.7059 88.6341\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 56.6808 74.4224\\nQ 56.6808 73.3659, 57.2029 72.7755\\nQ 57.725 72.185, 58.7007 72.185\\nQ 59.6765 72.185, 60.1985 72.7755\\nQ 60.7206 73.3659, 60.7206 74.4224\\nQ 60.7206 75.4914, 60.1923 76.1005\\nQ 59.664 76.7033, 58.7007 76.7033\\nQ 57.7312 76.7033, 57.2029 76.1005\\nQ 56.6808 75.4976, 56.6808 74.4224\\nM 58.7007 76.2061\\nQ 59.3719 76.2061, 59.7324 75.7587\\nQ 60.0991 75.305, 60.0991 74.4224\\nQ 60.0991 73.5585, 59.7324 73.1235\\nQ 59.3719 72.6822, 58.7007 72.6822\\nQ 58.0295 72.6822, 57.6628 73.1173\\nQ 57.3023 73.5523, 57.3023 74.4224\\nQ 57.3023 75.3112, 57.6628 75.7587\\nQ 58.0295 76.2061, 58.7007 76.2061\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.4852 62.8739\\nL 69.9271 65.2045\\nQ 70.07 65.4345, 70.3 65.8509\\nQ 70.5299 66.2673, 70.5424 66.2922\\nL 70.5424 62.8739\\nL 71.1266 62.8739\\nL 71.1266 67.2741\\nL 70.5237 67.2741\\nL 68.9762 64.726\\nQ 68.7959 64.4277, 68.6033 64.0858\\nQ 68.4168 63.744, 68.3609 63.6384\\nL 68.3609 67.2741\\nL 67.7891 67.2741\\nL 67.7891 62.8739\\nL 68.4852 62.8739\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 71.6548 62.8739\\nL 72.2515 62.8739\\nL 72.2515 64.7446\\nL 74.5013 64.7446\\nL 74.5013 62.8739\\nL 75.098 62.8739\\nL 75.098 67.2741\\nL 74.5013 67.2741\\nL 74.5013 65.2418\\nL 72.2515 65.2418\\nL 72.2515 67.2741\\nL 71.6548 67.2741\\nL 71.6548 62.8739\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 38.358 36.5658\\nL 39.7998 38.8964\\nQ 39.9428 39.1264, 40.1727 39.5428\\nQ 40.4027 39.9592, 40.4151 39.9841\\nL 40.4151 36.5658\\nL 40.9993 36.5658\\nL 40.9993 40.966\\nL 40.3965 40.966\\nL 38.849 38.4179\\nQ 38.6687 38.1196, 38.4761 37.7777\\nQ 38.2896 37.4359, 38.2337 37.3303\\nL 38.2337 40.966\\nL 37.6619 40.966\\nL 37.6619 36.5658\\nL 38.358 36.5658\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 53.563 39.7645\\nL 55.0049 42.0951\\nQ 55.1478 42.325, 55.3778 42.7415\\nQ 55.6077 43.1579, 55.6201 43.1827\\nL 55.6201 39.7645\\nL 56.2043 39.7645\\nL 56.2043 44.1647\\nL 55.6015 44.1647\\nL 54.054 41.6165\\nQ 53.8737 41.3182, 53.6811 40.9764\\nQ 53.4946 40.6346, 53.4387 40.5289\\nL 53.4387 44.1647\\nL 52.8669 44.1647\\nL 52.8669 39.7645\\nL 53.563 39.7645\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 135, "data-ID": 682, "data-Solubility": -2.32, "data-SMILES": "Nc1ccc(cc1)S(=O)(=O)Nc2ccnn2c3ccccc3", "mols2grid-tooltip": "<strong>Name</strong>: sulfaphenazole<br><strong>SMILES</strong>: Nc1ccc(cc1)S(=O)(=O)Nc2ccnn2c3ccccc3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.32</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 137.461,114.545 L 130.937,99.9715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.937,99.9715 L 111.405,95.8627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.829,95.4489 L 115.157,92.5727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-1' d='M 138.901,86.1121 L 134.919,93.0418' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-1' d='M 134.919,93.0418 L 130.937,99.9715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.405,95.8627 L 109.53,76.162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.53,76.162 L 102.204,71.9325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 102.204,71.9325 L 94.8782,67.703' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 109.53,76.162 L 117.193,72.6214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 117.193,72.6214 L 124.856,69.0808' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 113.504,78.7235 L 118.868,76.2451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 118.868,76.2451 L 124.232,73.7666' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.2334,62.8518 L 92.2294,56.2228' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.2294,56.2228 L 92.2254,49.5938' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.4333,46.6583 L 99.775,44.1498' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 99.775,44.1498 L 104.117,41.6413' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.4363,43.2019 L 97.778,40.6934' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.778,40.6934 L 102.12,38.1849' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 93.4377,49.2121 L 97.7827,51.718' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.7827,51.718 L 102.128,54.2238' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.4319,45.7542 L 99.777,48.2601' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.777,48.2601 L 104.122,50.7659' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 89.9119,44.8733 L 82.4201,40.5482' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 82.4201,40.5482 L 74.9284,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 74.9284,36.2231 L 74.9284,16.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 70.9366,33.2292 L 70.9366,19.2581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 57.6441,46.2025 L 74.9284,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 74.9284,16.2642 L 57.6441,6.28483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 57.6441,6.28483 L 40.3597,16.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 57.0473,11.2387 L 44.9483,18.2243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 40.3597,16.2642 L 34.7167,13.0065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.7167,13.0065 L 29.0737,9.74869' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 40.3597,16.2642 L 40.3597,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 40.3597,36.2231 L 57.6441,46.2025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 44.9483,34.263 L 57.0473,41.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 130.137,70.7846 L 134.036,75.0966' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 134.036,75.0966 L 137.934,79.4086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 85.0063 63.3511\\nL 85.7727 63.3511\\nL 85.7727 65.7541\\nL 88.6627 65.7541\\nL 88.6627 63.3511\\nL 89.4292 63.3511\\nL 89.4292 69.0034\\nL 88.6627 69.0034\\nL 88.6627 66.3928\\nL 85.7727 66.3928\\nL 85.7727 69.0034\\nL 85.0063 69.0034\\nL 85.0063 63.3511\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 90.9859 63.3511\\nL 92.8381 66.3449\\nQ 93.0217 66.6403, 93.3171 67.1752\\nQ 93.6125 67.7101, 93.6285 67.742\\nL 93.6285 63.3511\\nL 94.3789 63.3511\\nL 94.3789 69.0034\\nL 93.6045 69.0034\\nL 91.6166 65.7302\\nQ 91.3851 65.347, 91.1376 64.9079\\nQ 90.8981 64.4688, 90.8263 64.3331\\nL 90.8263 69.0034\\nL 90.0918 69.0034\\nL 90.0918 63.3511\\nL 90.9859 63.3511\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 90.6267 48.1478\\nQ 90.6906 48.1717, 90.954 48.2835\\nQ 91.2175 48.3953, 91.5049 48.4671\\nQ 91.8003 48.531, 92.0877 48.531\\nQ 92.6226 48.531, 92.9339 48.2755\\nQ 93.2453 48.0121, 93.2453 47.557\\nQ 93.2453 47.2456, 93.0856 47.054\\nQ 92.9339 46.8624, 92.6944 46.7587\\nQ 92.4549 46.6549, 92.0557 46.5351\\nQ 91.5528 46.3834, 91.2494 46.2397\\nQ 90.954 46.096, 90.7385 45.7926\\nQ 90.5309 45.4893, 90.5309 44.9783\\nQ 90.5309 44.2678, 91.0099 43.8287\\nQ 91.4969 43.3896, 92.4549 43.3896\\nQ 93.1096 43.3896, 93.852 43.701\\nL 93.6684 44.3157\\nQ 92.9898 44.0363, 92.4789 44.0363\\nQ 91.928 44.0363, 91.6246 44.2678\\nQ 91.3213 44.4913, 91.3292 44.8825\\nQ 91.3292 45.1859, 91.4809 45.3695\\nQ 91.6406 45.5531, 91.8641 45.6569\\nQ 92.0957 45.7607, 92.4789 45.8805\\nQ 92.9898 46.0401, 93.2932 46.1998\\nQ 93.5966 46.3595, 93.8121 46.6868\\nQ 94.0357 47.0061, 94.0357 47.557\\nQ 94.0357 48.3394, 93.5087 48.7625\\nQ 92.9898 49.1777, 92.1196 49.1777\\nQ 91.6166 49.1777, 91.2334 49.0659\\nQ 90.8582 48.9621, 90.4111 48.7785\\nL 90.6267 48.1478\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 103.454 38.2362\\nQ 103.454 36.879, 104.124 36.1206\\nQ 104.795 35.3622, 106.048 35.3622\\nQ 107.302 35.3622, 107.972 36.1206\\nQ 108.643 36.879, 108.643 38.2362\\nQ 108.643 39.6094, 107.964 40.3918\\nQ 107.286 41.1662, 106.048 41.1662\\nQ 104.803 41.1662, 104.124 40.3918\\nQ 103.454 39.6174, 103.454 38.2362\\nM 106.048 40.5275\\nQ 106.91 40.5275, 107.373 39.9527\\nQ 107.844 39.3699, 107.844 38.2362\\nQ 107.844 37.1265, 107.373 36.5677\\nQ 106.91 36.0009, 106.048 36.0009\\nQ 105.186 36.0009, 104.715 36.5597\\nQ 104.252 37.1185, 104.252 38.2362\\nQ 104.252 39.3779, 104.715 39.9527\\nQ 105.186 40.5275, 106.048 40.5275\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 103.46 54.2006\\nQ 103.46 52.8434, 104.131 52.085\\nQ 104.801 51.3266, 106.055 51.3266\\nQ 107.308 51.3266, 107.979 52.085\\nQ 108.649 52.8434, 108.649 54.2006\\nQ 108.649 55.5738, 107.971 56.3562\\nQ 107.292 57.1306, 106.055 57.1306\\nQ 104.809 57.1306, 104.131 56.3562\\nQ 103.46 55.5818, 103.46 54.2006\\nM 106.055 56.4919\\nQ 106.917 56.4919, 107.38 55.9171\\nQ 107.851 55.3343, 107.851 54.2006\\nQ 107.851 53.0909, 107.38 52.5321\\nQ 106.917 51.9652, 106.055 51.9652\\nQ 105.193 51.9652, 104.722 52.5241\\nQ 104.259 53.0829, 104.259 54.2006\\nQ 104.259 55.3423, 104.722 55.9171\\nQ 105.193 56.4919, 106.055 56.4919\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 16.525 5.45455\\nL 17.2914 5.45455\\nL 17.2914 7.85759\\nL 20.1815 7.85759\\nL 20.1815 5.45455\\nL 20.9479 5.45455\\nL 20.9479 11.1069\\nL 20.1815 11.1069\\nL 20.1815 8.49627\\nL 17.2914 8.49627\\nL 17.2914 11.1069\\nL 16.525 11.1069\\nL 16.525 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 21.2219 10.9086\\nQ 21.3589 10.5555, 21.6856 10.3606\\nQ 22.0123 10.1604, 22.4654 10.1604\\nQ 23.0292 10.1604, 23.3454 10.466\\nQ 23.6615 10.7716, 23.6615 11.3143\\nQ 23.6615 11.8676, 23.2505 12.3839\\nQ 22.8448 12.9003, 22.0017 13.5115\\nL 23.7247 13.5115\\nL 23.7247 13.9331\\nL 21.2114 13.9331\\nL 21.2114 13.58\\nQ 21.9069 13.0847, 22.3179 12.7159\\nQ 22.7341 12.347, 22.9344 12.0151\\nQ 23.1346 11.6831, 23.1346 11.3406\\nQ 23.1346 10.9823, 22.9554 10.7821\\nQ 22.7763 10.5819, 22.4654 10.5819\\nQ 22.1651 10.5819, 21.9648 10.7031\\nQ 21.7646 10.8243, 21.6223 11.093\\nL 21.2219 10.9086\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 25.2815 5.45455\\nL 27.1337 8.44837\\nQ 27.3173 8.74376, 27.6127 9.27866\\nQ 27.9081 9.81355, 27.9241 9.84549\\nL 27.9241 5.45455\\nL 28.6745 5.45455\\nL 28.6745 11.1069\\nL 27.9001 11.1069\\nL 25.9122 7.83364\\nQ 25.6807 7.45043, 25.4332 7.01133\\nQ 25.1937 6.57224, 25.1218 6.43652\\nL 25.1218 11.1069\\nL 24.3874 11.1069\\nL 24.3874 5.45455\\nL 25.2815 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 126.245 65.0356\\nL 128.097 68.0294\\nQ 128.281 68.3248, 128.576 68.8597\\nQ 128.872 69.3946, 128.888 69.4265\\nL 128.888 65.0356\\nL 129.638 65.0356\\nL 129.638 70.6879\\nL 128.864 70.6879\\nL 126.876 67.4147\\nQ 126.644 67.0315, 126.397 66.5924\\nQ 126.157 66.1533, 126.086 66.0176\\nL 126.086 70.6879\\nL 125.351 70.6879\\nL 125.351 65.0356\\nL 126.245 65.0356\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 138.286 82.6832\\nQ 138.286 81.326, 138.956 80.5676\\nQ 139.627 79.8091, 140.88 79.8091\\nQ 142.134 79.8091, 142.804 80.5676\\nQ 143.475 81.326, 143.475 82.6832\\nQ 143.475 84.0564, 142.796 84.8387\\nQ 142.118 85.6132, 140.88 85.6132\\nQ 139.635 85.6132, 138.956 84.8387\\nQ 138.286 84.0643, 138.286 82.6832\\nM 140.88 84.9745\\nQ 141.743 84.9745, 142.206 84.3997\\nQ 142.677 83.8169, 142.677 82.6832\\nQ 142.677 81.5735, 142.206 81.0146\\nQ 141.743 80.4478, 140.88 80.4478\\nQ 140.018 80.4478, 139.547 81.0067\\nQ 139.084 81.5655, 139.084 82.6832\\nQ 139.084 83.8248, 139.547 84.3997\\nQ 140.018 84.9745, 140.88 84.9745\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 136, "data-ID": 687, "data-Solubility": -2.62, "data-SMILES": "Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1", "mols2grid-tooltip": "<strong>Name</strong>: sulfamethoxazole<br><strong>SMILES</strong>: Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.62</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 98.6244,40.5655 L 98.6244,26.1852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.7484,38.4085 L 95.7484,28.3422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 86.1711,47.7556 L 98.6244,40.5655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.6244,26.1852 L 86.1711,18.995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.1711,18.995 L 86.1711,14.4487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.1711,14.4487 L 86.1711,9.9024' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.1711,18.995 L 73.7177,26.1852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 85.7411,22.5643 L 77.0238,27.5974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.7177,26.1852 L 73.7177,40.5655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.7177,40.5655 L 86.1711,47.7556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.0238,39.1533 L 85.7411,44.1864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.1711,47.7556 L 86.1711,53.7108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.1711,53.7108 L 86.1711,59.6659' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.102,64.341 L 90.1645,66.1079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 90.1645,66.1079 L 93.227,67.8749' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.5393,61.8498 L 91.6018,63.6168' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 91.6018,63.6168 L 94.6643,65.3837' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 84.7343,64.6639 L 84.736,67.97' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 84.736,67.97 L 84.7376,71.276' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.6104,64.6625 L 87.612,67.9685' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.612,67.9685 L 87.6137,71.2745' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 84.4494,63.1392 L 80.0426,65.6873' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 80.0426,65.6873 L 75.6358,68.2355' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.7148,71.8299 L 73.7148,77.7821' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.7148,77.7821 L 73.7148,83.7342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 73.7148,83.7342 L 68.4806,86.7707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 68.4806,86.7707 L 63.2464,89.8071' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 73.5878,87.1329 L 69.9238,89.2584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 69.9238,89.2584 L 66.2599,91.3839' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-11' d='M 86.1835,90.8994 L 73.7148,83.7342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 61.281,93.4338 L 61.2933,99.3822' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 61.2933,99.3822 L 61.3056,105.331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 61.3056,105.331 L 51.3544,111.103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 61.3056,105.331 L 66.5547,108.347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 66.5547,108.347 L 71.8038,111.363' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 64.3133,103.742 L 67.9877,105.853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 67.9877,105.853 L 71.662,107.965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 75.7448,111.353 L 80.979,108.316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 80.979,108.316 L 86.2133,105.28' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 86.2133,105.28 L 91.3033,108.191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 91.3033,108.191 L 96.3933,111.102' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 86.2133,105.28 L 86.1835,90.8994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 83.3327,103.129 L 83.3119,93.0624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 100.941,111.121 L 104.793,108.878' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 104.793,108.878 L 108.646,106.636' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.2321 5.3668\\nL 86.6241 7.6168\\nQ 86.7621 7.8388, 86.9841 8.2408\\nQ 87.2061 8.6428, 87.2181 8.6668\\nL 87.2181 5.3668\\nL 87.7821 5.3668\\nL 87.7821 9.6148\\nL 87.2001 9.6148\\nL 85.7061 7.1548\\nQ 85.5321 6.8668, 85.3461 6.5368\\nQ 85.1661 6.2068, 85.1121 6.1048\\nL 85.1121 9.6148\\nL 84.5601 9.6148\\nL 84.5601 5.3668\\nL 85.2321 5.3668\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.2921 5.3668\\nL 88.8681 5.3668\\nL 88.8681 7.1728\\nL 91.0401 7.1728\\nL 91.0401 5.3668\\nL 91.6161 5.3668\\nL 91.6161 9.6148\\nL 91.0401 9.6148\\nL 91.0401 7.6528\\nL 88.8681 7.6528\\nL 88.8681 9.6148\\nL 88.2921 9.6148\\nL 88.2921 5.3668\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 91.822 9.46576\\nQ 91.9249 9.20044, 92.1705 9.05392\\nQ 92.416 8.90344, 92.7565 8.90344\\nQ 93.1803 8.90344, 93.4179 9.13312\\nQ 93.6555 9.3628, 93.6555 9.77068\\nQ 93.6555 10.1865, 93.3466 10.5746\\nQ 93.0417 10.9626, 92.4081 11.422\\nL 93.703 11.422\\nL 93.703 11.7388\\nL 91.8141 11.7388\\nL 91.8141 11.4735\\nQ 92.3368 11.1012, 92.6457 10.824\\nQ 92.9585 10.5468, 93.109 10.2974\\nQ 93.2595 10.0479, 93.2595 9.79048\\nQ 93.2595 9.5212, 93.1248 9.37072\\nQ 92.9902 9.22024, 92.7565 9.22024\\nQ 92.5308 9.22024, 92.3803 9.31132\\nQ 92.2299 9.4024, 92.1229 9.60436\\nL 91.822 9.46576\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 84.9711 63.6016\\nQ 85.0191 63.6196, 85.2171 63.7036\\nQ 85.4151 63.7876, 85.6311 63.8416\\nQ 85.8531 63.8896, 86.0691 63.8896\\nQ 86.4711 63.8896, 86.7051 63.6976\\nQ 86.9391 63.4996, 86.9391 63.1576\\nQ 86.9391 62.9236, 86.8191 62.7796\\nQ 86.7051 62.6356, 86.5251 62.5576\\nQ 86.3451 62.4796, 86.0451 62.3896\\nQ 85.6671 62.2756, 85.4391 62.1676\\nQ 85.2171 62.0596, 85.0551 61.8316\\nQ 84.8991 61.6036, 84.8991 61.2196\\nQ 84.8991 60.6856, 85.2591 60.3556\\nQ 85.6251 60.0256, 86.3451 60.0256\\nQ 86.8371 60.0256, 87.3951 60.2596\\nL 87.2571 60.7216\\nQ 86.7471 60.5116, 86.3631 60.5116\\nQ 85.9491 60.5116, 85.7211 60.6856\\nQ 85.4931 60.8536, 85.4991 61.1476\\nQ 85.4991 61.3756, 85.6131 61.5136\\nQ 85.7331 61.6516, 85.9011 61.7296\\nQ 86.0751 61.8076, 86.3631 61.8976\\nQ 86.7471 62.0176, 86.9751 62.1376\\nQ 87.2031 62.2576, 87.3651 62.5036\\nQ 87.5331 62.7436, 87.5331 63.1576\\nQ 87.5331 63.7456, 87.1371 64.0636\\nQ 86.7471 64.3756, 86.0931 64.3756\\nQ 85.7151 64.3756, 85.4271 64.2916\\nQ 85.1451 64.2136, 84.8091 64.0756\\nL 84.9711 63.6016\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 94.1857 67.9049\\nQ 94.1857 66.8849, 94.6897 66.3149\\nQ 95.1937 65.7449, 96.1357 65.7449\\nQ 97.0777 65.7449, 97.5817 66.3149\\nQ 98.0857 66.8849, 98.0857 67.9049\\nQ 98.0857 68.9369, 97.5757 69.5249\\nQ 97.0657 70.1069, 96.1357 70.1069\\nQ 95.1997 70.1069, 94.6897 69.5249\\nQ 94.1857 68.9429, 94.1857 67.9049\\nM 96.1357 69.6269\\nQ 96.7837 69.6269, 97.1317 69.1949\\nQ 97.4857 68.7569, 97.4857 67.9049\\nQ 97.4857 67.0709, 97.1317 66.6509\\nQ 96.7837 66.2249, 96.1357 66.2249\\nQ 95.4877 66.2249, 95.1337 66.6449\\nQ 94.7857 67.0649, 94.7857 67.9049\\nQ 94.7857 68.7629, 95.1337 69.1949\\nQ 95.4877 69.6269, 96.1357 69.6269\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.2268 73.6599\\nQ 84.2268 72.6399, 84.7308 72.0699\\nQ 85.2348 71.4999, 86.1768 71.4999\\nQ 87.1188 71.4999, 87.6228 72.0699\\nQ 88.1268 72.6399, 88.1268 73.6599\\nQ 88.1268 74.6919, 87.6168 75.2799\\nQ 87.1068 75.8619, 86.1768 75.8619\\nQ 85.2408 75.8619, 84.7308 75.2799\\nQ 84.2268 74.6979, 84.2268 73.6599\\nM 86.1768 75.3819\\nQ 86.8248 75.3819, 87.1728 74.9499\\nQ 87.5268 74.5119, 87.5268 73.6599\\nQ 87.5268 72.8259, 87.1728 72.4059\\nQ 86.8248 71.9799, 86.1768 71.9799\\nQ 85.5288 71.9799, 85.1748 72.3999\\nQ 84.8268 72.8199, 84.8268 73.6599\\nQ 84.8268 74.5179, 85.1748 74.9499\\nQ 85.5288 75.3819, 86.1768 75.3819\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.2818 67.2222\\nL 68.8578 67.2222\\nL 68.8578 69.0282\\nL 71.0298 69.0282\\nL 71.0298 67.2222\\nL 71.6058 67.2222\\nL 71.6058 71.4702\\nL 71.0298 71.4702\\nL 71.0298 69.5082\\nL 68.8578 69.5082\\nL 68.8578 71.4702\\nL 68.2818 71.4702\\nL 68.2818 67.2222\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 72.7758 67.2222\\nL 74.1678 69.4722\\nQ 74.3058 69.6942, 74.5278 70.0962\\nQ 74.7498 70.4982, 74.7618 70.5222\\nL 74.7618 67.2222\\nL 75.3258 67.2222\\nL 75.3258 71.4702\\nL 74.7438 71.4702\\nL 73.2498 69.0102\\nQ 73.0758 68.7222, 72.8898 68.3922\\nQ 72.7098 68.0622, 72.6558 67.9602\\nL 72.6558 71.4702\\nL 72.1038 71.4702\\nL 72.1038 67.2222\\nL 72.7758 67.2222\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 60.3369 88.8263\\nL 61.7289 91.0763\\nQ 61.8669 91.2983, 62.0889 91.7003\\nQ 62.3109 92.1023, 62.3229 92.1263\\nL 62.3229 88.8263\\nL 62.8869 88.8263\\nL 62.8869 93.0743\\nL 62.3049 93.0743\\nL 60.8109 90.6143\\nQ 60.6369 90.3263, 60.4509 89.9963\\nQ 60.2709 89.6663, 60.2169 89.5643\\nL 60.2169 93.0743\\nL 59.6649 93.0743\\nL 59.6649 88.8263\\nL 60.3369 88.8263\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 72.8353 110.372\\nL 74.2273 112.622\\nQ 74.3653 112.844, 74.5873 113.246\\nQ 74.8093 113.648, 74.8213 113.672\\nL 74.8213 110.372\\nL 75.3853 110.372\\nL 75.3853 114.62\\nL 74.8033 114.62\\nL 73.3093 112.16\\nQ 73.1353 111.872, 72.9493 111.542\\nQ 72.7693 111.212, 72.7153 111.11\\nL 72.7153 114.62\\nL 72.1633 114.62\\nL 72.1633 110.372\\nL 72.8353 110.372\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 96.753 112.435\\nQ 96.753 111.415, 97.257 110.845\\nQ 97.761 110.275, 98.703 110.275\\nQ 99.645 110.275, 100.149 110.845\\nQ 100.653 111.415, 100.653 112.435\\nQ 100.653 113.467, 100.143 114.055\\nQ 99.633 114.637, 98.703 114.637\\nQ 97.767 114.637, 97.257 114.055\\nQ 96.753 113.473, 96.753 112.435\\nM 98.703 114.157\\nQ 99.351 114.157, 99.699 113.725\\nQ 100.053 113.287, 100.053 112.435\\nQ 100.053 111.601, 99.699 111.181\\nQ 99.351 110.755, 98.703 110.755\\nQ 98.055 110.755, 97.701 111.175\\nQ 97.353 111.595, 97.353 112.435\\nQ 97.353 113.293, 97.701 113.725\\nQ 98.055 114.157, 98.703 114.157\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 137, "data-ID": 692, "data-Solubility": -2.54, "data-SMILES": "c1cc(N)ccc1S(=O)(=O)Nc2nc(C)nc(OC)c2", "mols2grid-tooltip": "<strong>Name</strong>: sulfamethomidine<br><strong>SMILES</strong>: c1cc(N)ccc1S(=O)(=O)Nc2nc(C)nc(OC)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.54</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.3977,30.6286 L 80.3977,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0412,28.1112 L 77.0412,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 65.8639,39.0199 L 80.3977,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.3977,13.8459 L 65.8639,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.8639,5.45455 L 51.3301,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.3622,9.62008 L 55.1885,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.3301,13.8459 L 51.3301,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.3301,30.6286 L 65.8639,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.1885,28.9805 L 65.3622,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 65.8639,39.0199 L 65.8784,46.0177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 65.8784,46.0177 L 65.8928,53.0154' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 68.1209,57.0905 L 74.2867,60.6389' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.2867,60.6389 L 80.4526,64.1873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 81.2942,65.6393 L 85.8434,63.0023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 85.8434,63.0023 L 90.3927,60.3653' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 79.6109,62.7353 L 84.1602,60.0983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 84.1602,60.0983 L 88.7094,57.4613' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 80.4526,64.1873 L 80.4873,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 79.648,79.5256 L 66.7927,90.8248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.3265,82.4323 L 65.1142,87.918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-9' d='M 93.0776,88.2492 L 86.7824,84.6141' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-9' d='M 86.7824,84.6141 L 80.4873,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 65.9534,89.3714 L 54.3253,82.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 65.9534,89.3714 L 65.9534,96.3513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 65.9534,96.3513 L 65.9534,103.331' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 68.5548,107.656 L 74.5216,111.101' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 74.5216,111.101 L 80.4884,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.4884,114.545 L 95.0222,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 95.0222,106.154 L 95.0217,99.2212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 95.0217,99.2212 L 95.0213,92.2882' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 96.6351,86.6264 L 96.541,82.6403' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 96.541,82.6403 L 96.447,78.6542' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 93.2795,86.7056 L 93.1854,82.7195' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 93.1854,82.7195 L 93.0914,78.7333' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 96.0076,91.9373 L 99.5799,94.1129' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 99.5799,94.1129 L 103.152,96.2886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 97.7536,89.0706 L 101.326,91.2462' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 101.326,91.2462 L 104.898,93.4218' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 59.8199 53.4352\\nL 60.4644 53.4352\\nL 60.4644 55.4558\\nL 62.8945 55.4558\\nL 62.8945 53.4352\\nL 63.539 53.4352\\nL 63.539 58.188\\nL 62.8945 58.188\\nL 62.8945 55.9929\\nL 60.4644 55.9929\\nL 60.4644 58.188\\nL 59.8199 58.188\\nL 59.8199 53.4352\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 64.848 53.4352\\nL 66.4055 55.9526\\nQ 66.5599 56.201, 66.8082 56.6507\\nQ 67.0566 57.1005, 67.07 57.1274\\nL 67.07 53.4352\\nL 67.7011 53.4352\\nL 67.7011 58.188\\nL 67.0499 58.188\\nL 65.3784 55.4357\\nQ 65.1837 55.1134, 64.9756 54.7442\\nQ 64.7742 54.375, 64.7138 54.2609\\nL 64.7138 58.188\\nL 64.0962 58.188\\nL 64.0962 53.4352\\nL 64.848 53.4352\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 89.8867 57.4675\\nQ 89.8867 56.3263, 90.4506 55.6885\\nQ 91.0145 55.0508, 92.0684 55.0508\\nQ 93.1224 55.0508, 93.6863 55.6885\\nQ 94.2502 56.3263, 94.2502 57.4675\\nQ 94.2502 58.6221, 93.6796 59.28\\nQ 93.109 59.9312, 92.0684 59.9312\\nQ 91.0212 59.9312, 90.4506 59.28\\nQ 89.8867 58.6289, 89.8867 57.4675\\nM 92.0684 59.3941\\nQ 92.7935 59.3941, 93.1828 58.9108\\nQ 93.5789 58.4207, 93.5789 57.4675\\nQ 93.5789 56.5344, 93.1828 56.0645\\nQ 92.7935 55.5878, 92.0684 55.5878\\nQ 91.3434 55.5878, 90.9474 56.0577\\nQ 90.558 56.5277, 90.558 57.4675\\nQ 90.558 58.4275, 90.9474 58.9108\\nQ 91.3434 59.3941, 92.0684 59.3941\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 63.7717 106.168\\nQ 63.7717 105.026, 64.3356 104.389\\nQ 64.8995 103.751, 65.9534 103.751\\nQ 67.0074 103.751, 67.5713 104.389\\nQ 68.1352 105.026, 68.1352 106.168\\nQ 68.1352 107.322, 67.5646 107.98\\nQ 66.994 108.631, 65.9534 108.631\\nQ 64.9062 108.631, 64.3356 107.98\\nQ 63.7717 107.329, 63.7717 106.168\\nM 65.9534 108.094\\nQ 66.6785 108.094, 67.0678 107.611\\nQ 67.4639 107.121, 67.4639 106.168\\nQ 67.4639 105.234, 67.0678 104.764\\nQ 66.6785 104.288, 65.9534 104.288\\nQ 65.2284 104.288, 64.8324 104.758\\nQ 64.443 105.228, 64.443 106.168\\nQ 64.443 107.128, 64.8324 107.611\\nQ 65.2284 108.094, 65.9534 108.094\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 93.6785 91.0027\\nQ 93.7322 91.0228, 93.9537 91.1168\\nQ 94.1752 91.2108, 94.4169 91.2712\\nQ 94.6653 91.3249, 94.907 91.3249\\nQ 95.3567 91.3249, 95.6185 91.1101\\nQ 95.8804 90.8886, 95.8804 90.5059\\nQ 95.8804 90.2441, 95.7461 90.083\\nQ 95.6185 89.9219, 95.4171 89.8346\\nQ 95.2158 89.7473, 94.8801 89.6466\\nQ 94.4572 89.5191, 94.2021 89.3983\\nQ 93.9537 89.2774, 93.7724 89.0223\\nQ 93.5979 88.7672, 93.5979 88.3376\\nQ 93.5979 87.7401, 94.0007 87.3709\\nQ 94.4102 87.0017, 95.2158 87.0017\\nQ 95.7662 87.0017, 96.3905 87.2635\\nL 96.2361 87.7804\\nQ 95.6655 87.5454, 95.2359 87.5454\\nQ 94.7727 87.5454, 94.5176 87.7401\\nQ 94.2625 87.9281, 94.2692 88.257\\nQ 94.2692 88.5121, 94.3968 88.6665\\nQ 94.531 88.8209, 94.719 88.9082\\nQ 94.9137 88.9955, 95.2359 89.0962\\nQ 95.6655 89.2304, 95.9206 89.3647\\nQ 96.1757 89.499, 96.357 89.7742\\nQ 96.5449 90.0427, 96.5449 90.5059\\nQ 96.5449 91.1638, 96.1019 91.5196\\nQ 95.6655 91.8687, 94.9338 91.8687\\nQ 94.5109 91.8687, 94.1887 91.7747\\nQ 93.8731 91.6874, 93.4972 91.533\\nL 93.6785 91.0027\\n' fill='#CCCC00'/>\\n<path class='atom-16' d='M 92.5227 75.962\\nQ 92.5227 74.8208, 93.0866 74.1831\\nQ 93.6505 73.5453, 94.7044 73.5453\\nQ 95.7584 73.5453, 96.3223 74.1831\\nQ 96.8862 74.8208, 96.8862 75.962\\nQ 96.8862 77.1167, 96.3156 77.7746\\nQ 95.745 78.4257, 94.7044 78.4257\\nQ 93.6572 78.4257, 93.0866 77.7746\\nQ 92.5227 77.1234, 92.5227 75.962\\nM 94.7044 77.8887\\nQ 95.4295 77.8887, 95.8188 77.4053\\nQ 96.2149 76.9153, 96.2149 75.962\\nQ 96.2149 75.0289, 95.8188 74.559\\nQ 95.4295 74.0824, 94.7044 74.0824\\nQ 93.9794 74.0824, 93.5834 74.5523\\nQ 93.194 75.0222, 93.194 75.962\\nQ 93.194 76.922, 93.5834 77.4053\\nQ 93.9794 77.8887, 94.7044 77.8887\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 104.306 96.3687\\nQ 104.306 95.2274, 104.87 94.5897\\nQ 105.434 93.952, 106.488 93.952\\nQ 107.542 93.952, 108.106 94.5897\\nQ 108.67 95.2274, 108.67 96.3687\\nQ 108.67 97.5233, 108.099 98.1812\\nQ 107.529 98.8324, 106.488 98.8324\\nQ 105.441 98.8324, 104.87 98.1812\\nQ 104.306 97.53, 104.306 96.3687\\nM 106.488 98.2953\\nQ 107.213 98.2953, 107.603 97.812\\nQ 107.999 97.3219, 107.999 96.3687\\nQ 107.999 95.4356, 107.603 94.9656\\nQ 107.213 94.489, 106.488 94.489\\nQ 105.763 94.489, 105.367 94.9589\\nQ 104.978 95.4288, 104.978 96.3687\\nQ 104.978 97.3286, 105.367 97.812\\nQ 105.763 98.2953, 106.488 98.2953\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 138, "data-ID": 697, "data-Solubility": -2.43, "data-SMILES": "c1ccccc1NC(=O)C2=C(C)OCCS2(=O)=O", "mols2grid-tooltip": "<strong>Name</strong>: oxycarboxin<br><strong>SMILES</strong>: c1ccccc1NC(=O)C2=C(C)OCCS2(=O)=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.43</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 128.062,40.407 L 122.136,43.8147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.136,43.8147 L 116.211,47.2224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 130.236,44.1877 L 124.311,47.5954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.311,47.5954 L 118.385,51.0031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.298,49.1127 L 98.4236,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-1 atom-13' d='M 117.298,49.1127 L 117.266,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.4236,38.1644 L 98.4236,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.0623,34.8934 L 94.0623,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-12' d='M 98.4236,38.1644 L 79.5392,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.4236,16.3578 L 79.5392,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.5392,5.45455 L 60.6547,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.8872,10.867 L 65.6681,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.6547,16.3578 L 60.6547,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 60.6547,38.1644 L 41.7818,49.1127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 79.5392,49.0676 L 60.6547,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 78.8872,43.6552 L 65.6681,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 41.7818,49.1127 L 41.8124,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 41.7818,49.1127 L 26.6583,40.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.7181,69.0447 L 34.8085,72.4731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 34.8085,72.4731 L 28.8989,75.9016' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 42.9067,72.8171 L 36.9971,76.2456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 36.9971,76.2456 L 31.0875,79.674' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 41.8124,70.9309 L 47.7387,74.3387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 47.7387,74.3387 L 53.6649,77.7464' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 117.266,70.9309 L 136.113,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 117.899,76.3457 L 131.092,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-13 atom-18' d='M 117.266,70.9309 L 98.3437,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 136.113,81.901 L 136.038,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 136.038,103.708 L 117.115,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 131.032,101.549 L 117.786,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 117.115,114.545 L 98.2681,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-17' d='M 98.3437,81.7702 L 98.2681,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-17' d='M 102.694,85.0563 L 102.641,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.585 40.4337\\nQ 129.585 38.9509, 130.318 38.1222\\nQ 131.051 37.2936, 132.42 37.2936\\nQ 133.789 37.2936, 134.522 38.1222\\nQ 135.255 38.9509, 135.255 40.4337\\nQ 135.255 41.934, 134.513 42.7888\\nQ 133.772 43.6349, 132.42 43.6349\\nQ 131.059 43.6349, 130.318 42.7888\\nQ 129.585 41.9427, 129.585 40.4337\\nM 132.42 42.9371\\nQ 133.362 42.9371, 133.868 42.3091\\nQ 134.383 41.6723, 134.383 40.4337\\nQ 134.383 39.2213, 133.868 38.6107\\nQ 133.362 37.9914, 132.42 37.9914\\nQ 131.478 37.9914, 130.963 38.602\\nQ 130.457 39.2125, 130.457 40.4337\\nQ 130.457 41.681, 130.963 42.3091\\nQ 131.478 42.9371, 132.42 42.9371\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 23.8874 79.7029\\nQ 23.8874 78.2201, 24.6201 77.3915\\nQ 25.3528 76.5628, 26.7222 76.5628\\nQ 28.0917 76.5628, 28.8244 77.3915\\nQ 29.5571 78.2201, 29.5571 79.7029\\nQ 29.5571 81.2032, 28.8157 82.0581\\nQ 28.0742 82.9041, 26.7222 82.9041\\nQ 25.3615 82.9041, 24.6201 82.0581\\nQ 23.8874 81.212, 23.8874 79.7029\\nM 26.7222 82.2063\\nQ 27.6643 82.2063, 28.1702 81.5783\\nQ 28.6848 80.9416, 28.6848 79.7029\\nQ 28.6848 78.4905, 28.1702 77.8799\\nQ 27.6643 77.2606, 26.7222 77.2606\\nQ 25.7802 77.2606, 25.2656 77.8712\\nQ 24.7596 78.4818, 24.7596 79.7029\\nQ 24.7596 80.9503, 25.2656 81.5783\\nQ 25.7802 82.2063, 26.7222 82.2063\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 54.1011 79.6448\\nQ 54.1011 78.1619, 54.8338 77.3333\\nQ 55.5665 76.5047, 56.9359 76.5047\\nQ 58.3054 76.5047, 59.0381 77.3333\\nQ 59.7708 78.1619, 59.7708 79.6448\\nQ 59.7708 81.1451, 59.0294 81.9999\\nQ 58.2879 82.846, 56.9359 82.846\\nQ 55.5752 82.846, 54.8338 81.9999\\nQ 54.1011 81.1538, 54.1011 79.6448\\nM 56.9359 82.1482\\nQ 57.878 82.1482, 58.3839 81.5202\\nQ 58.8985 80.8834, 58.8985 79.6448\\nQ 58.8985 78.4324, 58.3839 77.8218\\nQ 57.878 77.2025, 56.9359 77.2025\\nQ 55.9939 77.2025, 55.4793 77.813\\nQ 54.9733 78.4236, 54.9733 79.6448\\nQ 54.9733 80.8921, 55.4793 81.5202\\nQ 55.9939 82.1482, 56.9359 82.1482\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 60.5122 76.5744\\nL 61.3496 76.5744\\nL 61.3496 79.1999\\nL 64.5072 79.1999\\nL 64.5072 76.5744\\nL 65.3445 76.5744\\nL 65.3445 82.75\\nL 64.5072 82.75\\nL 64.5072 79.8978\\nL 61.3496 79.8978\\nL 61.3496 82.75\\nL 60.5122 82.75\\nL 60.5122 76.5744\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 139, "data-ID": 702, "data-Solubility": -3.7, "data-SMILES": "O=C(c(cccc1C(C(=O)O)C)c1)c(cccc2)c2", "mols2grid-tooltip": "<strong>Name</strong>: ketoprofen<br><strong>SMILES</strong>: O=C(c(cccc1C(C(=O)O)C)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.7</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.274,65.8326 L 125.695,66.4211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.695,66.4211 L 120.116,67.0097' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.749,70.0162 L 113.969,76.2555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.969,76.2555 L 111.19,82.4949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.19,82.4949 L 103.988,83.2621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.988,83.2621 L 96.7872,84.0293' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 109.841,83.4792 L 115.099,87.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 115.099,87.8515 L 120.356,92.2237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 112.538,81.5106 L 115.099,87.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 115.099,87.8515 L 117.659,94.1924' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 92.546,81.4828 L 88.6369,76.1256' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.6369,76.1256 L 84.7277,70.7685' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 84.7277,70.7685 L 68.1144,72.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.1144,72.5396 L 64.1571,67.1165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.1571,67.1165 L 60.1998,61.6934' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.3321,59.2494 L 48.993,60.0318' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 48.993,60.0318 L 41.6538,60.8143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 41.6538,60.8143 L 31.822,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 31.822,47.3413 L 33.9499,40.7918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 33.9499,40.7918 L 36.0779,34.2423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-8' d='M 15.1241,47.3413 L 31.822,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-8' d='M 17.6288,44.0017 L 29.3173,44.0017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 34.7709,29.8541 L 29.122,25.7498' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 29.122,25.7498 L 23.4731,21.6454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 23.4731,21.6454 L 17.8241,25.7498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 17.8241,25.7498 L 12.1752,29.8541' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 23.7414,25.5785 L 19.7872,28.4515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 19.7872,28.4515 L 15.8329,31.3246' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 10.8683,34.2423 L 12.9962,40.7918' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 12.9962,40.7918 L 15.1241,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 15.1241,47.3413 L 7.27273,58.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 123.249,95.7546 L 130.45,94.9874' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 130.45,94.9874 L 137.65,94.2202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 137.65,94.2202 L 143.228,93.6256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 143.228,93.6256 L 148.807,93.031' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 139.678,97.3626 L 144.419,96.8571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 144.419,96.8571 L 149.161,96.3517' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 138.97,90.721 L 143.711,90.2156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 143.711,90.2156 L 148.453,89.7102' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 111.941 64.8697\\nL 112.582 64.8697\\nL 112.582 66.8801\\nL 115 66.8801\\nL 115 64.8697\\nL 115.641 64.8697\\nL 115.641 69.5985\\nL 115 69.5985\\nL 115 67.4144\\nL 112.582 67.4144\\nL 112.582 69.5985\\nL 111.941 69.5985\\nL 111.941 64.8697\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 116.944 64.8697\\nL 118.493 67.3744\\nQ 118.647 67.6215, 118.894 68.069\\nQ 119.141 68.5165, 119.154 68.5432\\nL 119.154 64.8697\\nL 119.782 64.8697\\nL 119.782 69.5985\\nL 119.134 69.5985\\nL 117.471 66.8601\\nQ 117.278 66.5395, 117.071 66.1721\\nQ 116.87 65.8048, 116.81 65.6912\\nL 116.81 69.5985\\nL 116.196 69.5985\\nL 116.196 64.8697\\nL 116.944 64.8697\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.5282 81.9004\\nL 89.1694 81.9004\\nL 89.1694 83.9109\\nL 91.5872 83.9109\\nL 91.5872 81.9004\\nL 92.2284 81.9004\\nL 92.2284 86.6293\\nL 91.5872 86.6293\\nL 91.5872 84.4452\\nL 89.1694 84.4452\\nL 89.1694 86.6293\\nL 88.5282 86.6293\\nL 88.5282 81.9004\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 93.5309 81.9004\\nL 95.0805 84.4051\\nQ 95.2341 84.6523, 95.4812 85.0998\\nQ 95.7283 85.5473, 95.7417 85.574\\nL 95.7417 81.9004\\nL 96.3695 81.9004\\nL 96.3695 86.6293\\nL 95.7217 86.6293\\nL 94.0585 83.8908\\nQ 93.8648 83.5702, 93.6578 83.2029\\nQ 93.4574 82.8355, 93.3973 82.722\\nL 93.3973 86.6293\\nL 92.7828 86.6293\\nL 92.7828 81.9004\\nL 93.5309 81.9004\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 56.9301 60.6662\\nQ 56.9836 60.6863, 57.204 60.7798\\nQ 57.4244 60.8733, 57.6649 60.9334\\nQ 57.912 60.9868, 58.1524 60.9868\\nQ 58.5999 60.9868, 58.8604 60.7731\\nQ 59.1209 60.5527, 59.1209 60.172\\nQ 59.1209 59.9115, 58.9873 59.7512\\nQ 58.8604 59.5909, 58.66 59.5041\\nQ 58.4597 59.4172, 58.1257 59.3171\\nQ 57.7049 59.1902, 57.4511 59.0699\\nQ 57.204 58.9497, 57.0236 58.6959\\nQ 56.85 58.4421, 56.85 58.0146\\nQ 56.85 57.4202, 57.2507 57.0528\\nQ 57.6582 56.6855, 58.4597 56.6855\\nQ 59.0074 56.6855, 59.6285 56.9459\\nL 59.4749 57.4602\\nQ 58.9072 57.2265, 58.4797 57.2265\\nQ 58.0188 57.2265, 57.765 57.4202\\nQ 57.5112 57.6072, 57.5179 57.9345\\nQ 57.5179 58.1883, 57.6448 58.3419\\nQ 57.7784 58.4955, 57.9654 58.5823\\nQ 58.1591 58.6692, 58.4797 58.7694\\nQ 58.9072 58.9029, 59.161 59.0365\\nQ 59.4148 59.1701, 59.5951 59.444\\nQ 59.7821 59.7111, 59.7821 60.172\\nQ 59.7821 60.8265, 59.3413 61.1805\\nQ 58.9072 61.5279, 58.1791 61.5279\\nQ 57.7584 61.5279, 57.4378 61.4344\\nQ 57.1238 61.3475, 56.7498 61.1939\\nL 56.9301 60.6662\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 35.9364 29.096\\nL 37.486 31.6007\\nQ 37.6396 31.8478, 37.8867 32.2954\\nQ 38.1338 32.7429, 38.1472 32.7696\\nL 38.1472 29.096\\nL 38.775 29.096\\nL 38.775 33.8249\\nL 38.1272 33.8249\\nL 36.464 31.0864\\nQ 36.2704 30.7658, 36.0633 30.3985\\nQ 35.8629 30.0311, 35.8028 29.9176\\nL 35.8028 33.8249\\nL 35.1883 33.8249\\nL 35.1883 29.096\\nL 35.9364 29.096\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 39.3428 29.096\\nL 39.984 29.096\\nL 39.984 31.1065\\nL 42.4018 31.1065\\nL 42.4018 29.096\\nL 43.043 29.096\\nL 43.043 33.8249\\nL 42.4018 33.8249\\nL 42.4018 31.6408\\nL 39.984 31.6408\\nL 39.984 33.8249\\nL 39.3428 33.8249\\nL 39.3428 29.096\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 8.91914 29.096\\nL 10.4687 31.6007\\nQ 10.6223 31.8478, 10.8695 32.2954\\nQ 11.1166 32.7429, 11.1299 32.7696\\nL 11.1299 29.096\\nL 11.7578 29.096\\nL 11.7578 33.8249\\nL 11.1099 33.8249\\nL 9.4468 31.0864\\nQ 9.2531 30.7658, 9.04605 30.3985\\nQ 8.84567 30.0311, 8.78556 29.9176\\nL 8.78556 33.8249\\nL 8.17108 33.8249\\nL 8.17108 29.096\\nL 8.91914 29.096\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 119.993 93.6257\\nL 121.542 96.1304\\nQ 121.696 96.3776, 121.943 96.8251\\nQ 122.19 97.2726, 122.203 97.2993\\nL 122.203 93.6257\\nL 122.831 93.6257\\nL 122.831 98.3546\\nL 122.183 98.3546\\nL 120.52 95.6161\\nQ 120.327 95.2955, 120.12 94.9282\\nQ 119.919 94.5608, 119.859 94.4473\\nL 119.859 98.3546\\nL 119.245 98.3546\\nL 119.245 93.6257\\nL 119.993 93.6257\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 149.889 90.4398\\nL 151.438 92.9445\\nQ 151.592 93.1916, 151.839 93.6391\\nQ 152.086 94.0866, 152.099 94.1133\\nL 152.099 90.4398\\nL 152.727 90.4398\\nL 152.727 95.1686\\nL 152.079 95.1686\\nL 150.416 92.4302\\nQ 150.223 92.1096, 150.016 91.7422\\nQ 149.815 91.3749, 149.755 91.2613\\nL 149.755 95.1686\\nL 149.141 95.1686\\nL 149.141 90.4398\\nL 149.889 90.4398\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 140, "data-ID": 707, "data-Solubility": -1.35, "data-SMILES": "CNC(NCCSCc1ncnc1C)=NC#N", "mols2grid-tooltip": "<strong>Name</strong>: cimetidine<br><strong>SMILES</strong>: CNC(NCCSCc1ncnc1C)=NC#N<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.35</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.4035,36.0631 L 32.6165,40.7809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.6165,40.7809 L 40.8294,45.4988' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.525,52.4518 L 44.525,64.492' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.525,64.492 L 44.525,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 69.9103,32.8143 L 59.1427,39.0951' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 59.1427,39.0951 L 48.3751,45.3758' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.0801,74.017 L 35.1949,78.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 35.1949,78.5465 L 27.3097,83.076' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.9698,79.0475 L 38.0846,83.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.0846,83.5771 L 30.1995,88.1066' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 44.525,76.5323 L 55.2926,82.813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 55.2926,82.813 L 66.0602,89.0938' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.9247,96.0272 L 69.9533,105.286' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.9533,105.286 L 69.9818,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 73.7528,89.0667 L 84.3482,82.7995' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 84.3482,82.7995 L 94.9436,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.9436,76.5323 L 106.775,80.3245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 106.775,80.3245 L 118.607,84.1167' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 94.9436,47.6216 L 94.9436,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 89.1422,51.9582 L 89.1422,72.1957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 125.908,80.5127 L 132.638,71.1189' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 132.638,71.1189 L 139.367,61.725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 123.21,74.3159 L 127.921,67.7402' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.921,67.7402 L 132.632,61.1645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 139.367,61.725 L 132.685,52.6759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 132.685,52.6759 L 126.003,43.6269' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 123.958,34.1196 L 126.766,25.4213' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 126.766,25.4213 L 129.575,16.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 118.607,40.0371 L 106.775,43.8294' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 106.775,43.8294 L 94.9436,47.6216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 94.9436,47.6216 L 69.9103,32.8143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 72.811,32.8232 L 72.8393,23.6511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 72.8393,23.6511 L 72.8676,14.479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 67.0095,32.8054 L 67.0378,23.6332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 67.0378,23.6332 L 67.0661,14.4611' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 42.7091 43.5141\\nL 45.401 47.8653\\nQ 45.6678 48.2946, 46.0972 49.072\\nQ 46.5265 49.8494, 46.5497 49.8958\\nL 46.5497 43.5141\\nL 47.6403 43.5141\\nL 47.6403 51.729\\nL 46.5149 51.729\\nL 43.6257 46.9718\\nQ 43.2892 46.4149, 42.9296 45.7767\\nQ 42.5815 45.1386, 42.477 44.9413\\nL 42.477 51.729\\nL 41.4096 51.729\\nL 41.4096 43.5141\\nL 42.7091 43.5141\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 20.6326 88.1139\\nQ 20.6326 86.1414, 21.6072 85.0392\\nQ 22.5818 83.9369, 24.4035 83.9369\\nQ 26.2252 83.9369, 27.1998 85.0392\\nQ 28.1745 86.1414, 28.1745 88.1139\\nQ 28.1745 90.1096, 27.1882 91.2467\\nQ 26.202 92.3722, 24.4035 92.3722\\nQ 22.5935 92.3722, 21.6072 91.2467\\nQ 20.6326 90.1213, 20.6326 88.1139\\nM 24.4035 91.444\\nQ 25.6566 91.444, 26.3296 90.6086\\nQ 27.0142 89.7616, 27.0142 88.1139\\nQ 27.0142 86.5011, 26.3296 85.6889\\nQ 25.6566 84.8651, 24.4035 84.8651\\nQ 23.1504 84.8651, 22.4658 85.6773\\nQ 21.7928 86.4895, 21.7928 88.1139\\nQ 21.7928 89.7732, 22.4658 90.6086\\nQ 23.1504 91.444, 24.4035 91.444\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 68.0944 87.2321\\nL 70.7863 91.5832\\nQ 71.0532 92.0125, 71.4825 92.7899\\nQ 71.9118 93.5673, 71.935 93.6137\\nL 71.935 87.2321\\nL 73.0257 87.2321\\nL 73.0257 95.447\\nL 71.9002 95.447\\nL 69.011 90.6898\\nQ 68.6746 90.1329, 68.3149 89.4947\\nQ 67.9668 88.8565, 67.8624 88.6593\\nL 67.8624 95.447\\nL 66.7949 95.447\\nL 66.7949 87.2321\\nL 68.0944 87.2321\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 120.629 81.2392\\nL 123.321 85.5903\\nQ 123.587 86.0196, 124.017 86.797\\nQ 124.446 87.5744, 124.469 87.6208\\nL 124.469 81.2392\\nL 125.56 81.2392\\nL 125.56 89.4541\\nL 124.434 89.4541\\nL 121.545 84.6969\\nQ 121.209 84.1399, 120.849 83.5018\\nQ 120.501 82.8636, 120.397 82.6664\\nL 120.397 89.4541\\nL 119.329 89.4541\\nL 119.329 81.2392\\nL 120.629 81.2392\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 120.629 34.6998\\nL 123.321 39.0509\\nQ 123.587 39.4802, 124.017 40.2576\\nQ 124.446 41.035, 124.469 41.0814\\nL 124.469 34.6998\\nL 125.56 34.6998\\nL 125.56 42.9147\\nL 124.434 42.9147\\nL 121.545 38.1575\\nQ 121.209 37.6005, 120.849 36.9623\\nQ 120.501 36.3242, 120.397 36.1269\\nL 120.397 42.9147\\nL 119.329 42.9147\\nL 119.329 34.6998\\nL 120.629 34.6998\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.2109 9.63161\\nQ 66.2109 7.65911, 67.1855 6.55683\\nQ 68.1602 5.45455, 69.9818 5.45455\\nQ 71.8035 5.45455, 72.7781 6.55683\\nQ 73.7528 7.65911, 73.7528 9.63161\\nQ 73.7528 11.6273, 72.7665 12.7644\\nQ 71.7803 13.8899, 69.9818 13.8899\\nQ 68.1718 13.8899, 67.1855 12.7644\\nQ 66.2109 11.6389, 66.2109 9.63161\\nM 69.9818 12.9617\\nQ 71.2349 12.9617, 71.9079 12.1262\\nQ 72.5925 11.2792, 72.5925 9.63161\\nQ 72.5925 8.0188, 71.9079 7.20659\\nQ 71.2349 6.38278, 69.9818 6.38278\\nQ 68.7287 6.38278, 68.0441 7.19499\\nQ 67.3712 8.00719, 67.3712 9.63161\\nQ 67.3712 11.2908, 68.0441 12.1262\\nQ 68.7287 12.9617, 69.9818 12.9617\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 141, "data-ID": 712, "data-Solubility": -0.97, "data-SMILES": "CN1C(=O)N(C)c2ncn(C)c2C1(=O)", "mols2grid-tooltip": "<strong>Name</strong>: caffeine<br><strong>SMILES</strong>: CN1C(=O)N(C)c2ncn(C)c2C1(=O)<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.97</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.198,49.0758 L 123.004,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.004,42.6134 L 123.004,26.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-1' d='M 109.013,50.6914 L 123.004,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.004,26.4574 L 109.013,18.3794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.013,18.3794 L 109.013,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 109.013,18.3794 L 95.0219,26.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8296,25.0582 L 91.4444,22.5265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.4444,22.5265 L 87.0591,19.9949' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.2141,27.8566 L 89.8288,25.3249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.8288,25.3249 L 85.4436,22.7932' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.0219,26.4574 L 95.0219,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 95.0219,42.6134 L 109.013,50.6914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 95.0219,42.6134 L 81.0394,50.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.0394,50.7248 L 76.6487,48.2001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 76.6487,48.2001 L 72.258,45.6753' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 81.0394,50.7248 L 81.062,66.8895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 81.062,66.8895 L 67.0795,75.0009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 67.0795,75.0009 L 67.0784,91.1569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-12' d='M 53.0862,66.9239 L 67.0795,75.0009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 67.0784,91.1569 L 53.0873,99.236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 51.4717,99.2361 L 51.4721,104.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 51.4721,104.38 L 51.4725,109.524' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 54.7029,99.2359 L 54.7033,104.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 54.7033,104.38 L 54.7037,109.524' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 53.0873,99.236 L 47.1612,95.8145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 47.1612,95.8145 L 41.2352,92.393' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 39.096,88.4664 L 39.0955,81.7342' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 39.0955,81.7342 L 39.0951,75.002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 39.9029,73.6028 L 35.5182,71.0712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 35.5182,71.0712 L 31.1334,68.5396' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 38.2873,76.4011 L 33.9025,73.8695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 33.9025,73.8695 L 29.5178,71.3379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-19' d='M 39.0951,75.002 L 53.0862,66.9239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 81.7276 20.0079\\nQ 81.7276 18.9093, 82.2705 18.2954\\nQ 82.8133 17.6814, 83.8279 17.6814\\nQ 84.8425 17.6814, 85.3853 18.2954\\nQ 85.9282 18.9093, 85.9282 20.0079\\nQ 85.9282 21.1194, 85.3789 21.7527\\nQ 84.8296 22.3796, 83.8279 22.3796\\nQ 82.8198 22.3796, 82.2705 21.7527\\nQ 81.7276 21.1259, 81.7276 20.0079\\nM 83.8279 21.8626\\nQ 84.5258 21.8626, 84.9007 21.3973\\nQ 85.2819 20.9256, 85.2819 20.0079\\nQ 85.2819 19.1096, 84.9007 18.6573\\nQ 84.5258 18.1984, 83.8279 18.1984\\nQ 83.13 18.1984, 82.7487 18.6508\\nQ 82.3739 19.1032, 82.3739 20.0079\\nQ 82.3739 20.932, 82.7487 21.3973\\nQ 83.13 21.8626, 83.8279 21.8626\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 63.831 42.02\\nL 64.4514 42.02\\nL 64.4514 43.9651\\nL 66.7908 43.9651\\nL 66.7908 42.02\\nL 67.4112 42.02\\nL 67.4112 46.5953\\nL 66.7908 46.5953\\nL 66.7908 44.4821\\nL 64.4514 44.4821\\nL 64.4514 46.5953\\nL 63.831 46.5953\\nL 63.831 42.02\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 67.7343 44.2947\\nQ 67.7343 43.1961, 68.2772 42.5822\\nQ 68.82 41.9683, 69.8346 41.9683\\nQ 70.8492 41.9683, 71.3921 42.5822\\nQ 71.9349 43.1961, 71.9349 44.2947\\nQ 71.9349 45.4063, 71.3856 46.0396\\nQ 70.8363 46.6664, 69.8346 46.6664\\nQ 68.8265 46.6664, 68.2772 46.0396\\nQ 67.7343 45.4127, 67.7343 44.2947\\nM 69.8346 46.1494\\nQ 70.5326 46.1494, 70.9074 45.6841\\nQ 71.2887 45.2124, 71.2887 44.2947\\nQ 71.2887 43.3964, 70.9074 42.9441\\nQ 70.5326 42.4852, 69.8346 42.4852\\nQ 69.1367 42.4852, 68.7554 42.9376\\nQ 68.3806 43.39, 68.3806 44.2947\\nQ 68.3806 45.2188, 68.7554 45.6841\\nQ 69.1367 46.1494, 69.8346 46.1494\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 50.9881 112.174\\nQ 50.9881 111.075, 51.5309 110.461\\nQ 52.0738 109.847, 53.0884 109.847\\nQ 54.103 109.847, 54.6458 110.461\\nQ 55.1886 111.075, 55.1886 112.174\\nQ 55.1886 113.285, 54.6393 113.919\\nQ 54.09 114.545, 53.0884 114.545\\nQ 52.0802 114.545, 51.5309 113.919\\nQ 50.9881 113.292, 50.9881 112.174\\nM 53.0884 114.028\\nQ 53.7863 114.028, 54.1611 113.563\\nQ 54.5424 113.091, 54.5424 112.174\\nQ 54.5424 111.275, 54.1611 110.823\\nQ 53.7863 110.364, 53.0884 110.364\\nQ 52.3904 110.364, 52.0091 110.817\\nQ 51.6343 111.269, 51.6343 112.174\\nQ 51.6343 113.098, 52.0091 113.563\\nQ 52.3904 114.028, 53.0884 114.028\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 33.2444 88.8703\\nL 33.8648 88.8703\\nL 33.8648 90.8155\\nL 36.2042 90.8155\\nL 36.2042 88.8703\\nL 36.8246 88.8703\\nL 36.8246 93.4457\\nL 36.2042 93.4457\\nL 36.2042 91.3325\\nL 33.8648 91.3325\\nL 33.8648 93.4457\\nL 33.2444 93.4457\\nL 33.2444 88.8703\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 38.0848 88.8703\\nL 39.5841 91.2937\\nQ 39.7327 91.5328, 39.9718 91.9658\\nQ 40.2109 92.3988, 40.2239 92.4246\\nL 40.2239 88.8703\\nL 40.8313 88.8703\\nL 40.8313 93.4457\\nL 40.2045 93.4457\\nL 38.5953 90.7961\\nQ 38.4079 90.4859, 38.2076 90.1305\\nQ 38.0137 89.775, 37.9555 89.6652\\nL 37.9555 93.4457\\nL 37.361 93.4457\\nL 37.361 88.8703\\nL 38.0848 88.8703\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 25.8019 68.5525\\nQ 25.8019 67.4539, 26.3447 66.8399\\nQ 26.8876 66.226, 27.9022 66.226\\nQ 28.9168 66.226, 29.4596 66.8399\\nQ 30.0025 67.4539, 30.0025 68.5525\\nQ 30.0025 69.664, 29.4532 70.2973\\nQ 28.9039 70.9242, 27.9022 70.9242\\nQ 26.894 70.9242, 26.3447 70.2973\\nQ 25.8019 69.6705, 25.8019 68.5525\\nM 27.9022 70.4072\\nQ 28.6001 70.4072, 28.9749 69.9419\\nQ 29.3562 69.4701, 29.3562 68.5525\\nQ 29.3562 67.6542, 28.9749 67.2018\\nQ 28.6001 66.743, 27.9022 66.743\\nQ 27.2042 66.743, 26.823 67.1954\\nQ 26.4481 67.6477, 26.4481 68.5525\\nQ 26.4481 69.4766, 26.823 69.9419\\nQ 27.2042 70.4072, 27.9022 70.4072\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 142, "data-ID": 717, "data-Solubility": -1.13, "data-SMILES": "CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2", "mols2grid-tooltip": "<strong>Name</strong>: cycloheximide<br><strong>SMILES</strong>: CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.13</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.46,72.5025 L 112.46,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.46,56.8762 L 112.46,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-0 atom-5' d='M 107.495,81.6166 L 93.74,89.5583' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-0 atom-5' d='M 93.74,89.5583 L 79.985,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.46,41.25 L 79.985,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.985,22.5 L 66.23,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.23,30.4417 L 52.475,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.51,47.4975 L 47.51,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.51,63.1237 L 47.51,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-4' d='M 79.985,97.5 L 47.51,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.113 73.44\\nL 113.593 79.065\\nQ 113.938 79.62, 114.493 80.625\\nQ 115.048 81.63, 115.078 81.69\\nL 115.078 73.44\\nL 116.488 73.44\\nL 116.488 84.06\\nL 115.033 84.06\\nL 111.298 77.91\\nQ 110.863 77.19, 110.398 76.365\\nQ 109.948 75.54, 109.813 75.285\\nL 109.813 84.06\\nL 108.433 84.06\\nL 108.433 73.44\\nL 110.113 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.763 73.44\\nL 119.203 73.44\\nL 119.203 77.955\\nL 124.633 77.955\\nL 124.633 73.44\\nL 126.073 73.44\\nL 126.073 84.06\\nL 124.633 84.06\\nL 124.633 79.155\\nL 119.203 79.155\\nL 119.203 84.06\\nL 117.763 84.06\\nL 117.763 73.44\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 33.9275 35.94\\nL 35.3675 35.94\\nL 35.3675 40.455\\nL 40.7975 40.455\\nL 40.7975 35.94\\nL 42.2375 35.94\\nL 42.2375 46.56\\nL 40.7975 46.56\\nL 40.7975 41.655\\nL 35.3675 41.655\\nL 35.3675 46.56\\nL 33.9275 46.56\\nL 33.9275 35.94\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 45.1625 35.94\\nL 48.6425 41.565\\nQ 48.9875 42.12, 49.5425 43.125\\nQ 50.0975 44.13, 50.1275 44.19\\nL 50.1275 35.94\\nL 51.5375 35.94\\nL 51.5375 46.56\\nL 50.0825 46.56\\nL 46.3475 40.41\\nQ 45.9125 39.69, 45.4475 38.865\\nQ 44.9975 38.04, 44.8625 37.785\\nL 44.8625 46.56\\nL 43.4825 46.56\\nL 43.4825 35.94\\nL 45.1625 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 143, "data-ID": 722, "data-Solubility": 1.07, "data-SMILES": "N(CCNC1)C1", "mols2grid-tooltip": "<strong>Name</strong>: piperazine<br><strong>SMILES</strong>: N(CCNC1)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.07</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.868,89.8971 L 118.274,80.8221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.274,80.8221 L 111.681,71.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.8,94.3054 L 112.207,85.2304' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.207,85.2304 L 105.614,76.1554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.647,73.9513 L 113.426,59.2425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.426,59.2425 L 118.205,44.5338' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 108.647,73.9513 L 92.38,73.9513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 92.38,73.9513 L 76.1125,73.9513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.27,34.6788 L 102.584,25.4613' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.584,25.4613 L 89.8975,16.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.8975,16.2438 L 59.56,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.7187,34.7198 L 49.265,30.9985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.265,30.9985 L 37.8112,27.2773' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.4013,41.8527 L 46.9475,38.1315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 46.9475,38.1315 L 35.4938,34.4103' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 69.1177,67.7037 L 64.3388,52.995' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 64.3388,52.995 L 59.56,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.405 98.2513\\nQ 121.405 95.7013, 122.665 94.2763\\nQ 123.925 92.8513, 126.28 92.8513\\nQ 128.635 92.8513, 129.895 94.2763\\nQ 131.155 95.7013, 131.155 98.2513\\nQ 131.155 100.831, 129.88 102.301\\nQ 128.605 103.756, 126.28 103.756\\nQ 123.94 103.756, 122.665 102.301\\nQ 121.405 100.846, 121.405 98.2513\\nM 126.28 102.556\\nQ 127.9 102.556, 128.77 101.476\\nQ 129.655 100.381, 129.655 98.2513\\nQ 129.655 96.1663, 128.77 95.1163\\nQ 127.9 94.0513, 126.28 94.0513\\nQ 124.66 94.0513, 123.775 95.1013\\nQ 122.905 96.1513, 122.905 98.2513\\nQ 122.905 100.396, 123.775 101.476\\nQ 124.66 102.556, 126.28 102.556\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 117.888 32.9763\\nL 121.368 38.6013\\nQ 121.713 39.1563, 122.268 40.1613\\nQ 122.823 41.1663, 122.853 41.2263\\nL 122.853 32.9763\\nL 124.263 32.9763\\nL 124.263 43.5963\\nL 122.808 43.5963\\nL 119.073 37.4463\\nQ 118.638 36.7263, 118.172 35.9013\\nQ 117.723 35.0763, 117.588 34.8213\\nL 117.588 43.5963\\nL 116.208 43.5963\\nL 116.208 32.9763\\nL 117.888 32.9763\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.538 32.9763\\nL 126.978 32.9763\\nL 126.978 37.4913\\nL 132.407 37.4913\\nL 132.407 32.9763\\nL 133.847 32.9763\\nL 133.847 43.5963\\nL 132.407 43.5963\\nL 132.407 38.6913\\nL 126.978 38.6913\\nL 126.978 43.5963\\nL 125.538 43.5963\\nL 125.538 32.9763\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 26.1525 29.0463\\nQ 26.1525 26.4963, 27.4125 25.0713\\nQ 28.6725 23.6463, 31.0275 23.6463\\nQ 33.3825 23.6463, 34.6425 25.0713\\nQ 35.9025 26.4963, 35.9025 29.0463\\nQ 35.9025 31.6263, 34.6275 33.0963\\nQ 33.3525 34.5513, 31.0275 34.5513\\nQ 28.6875 34.5513, 27.4125 33.0963\\nQ 26.1525 31.6413, 26.1525 29.0463\\nM 31.0275 33.3513\\nQ 32.6475 33.3513, 33.5175 32.2713\\nQ 34.4025 31.1763, 34.4025 29.0463\\nQ 34.4025 26.9613, 33.5175 25.9113\\nQ 32.6475 24.8463, 31.0275 24.8463\\nQ 29.4075 24.8463, 28.5225 25.8963\\nQ 27.6525 26.9463, 27.6525 29.0463\\nQ 27.6525 31.1913, 28.5225 32.2713\\nQ 29.4075 33.3513, 31.0275 33.3513\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 57.565 68.6413\\nL 59.005 68.6413\\nL 59.005 73.1563\\nL 64.435 73.1563\\nL 64.435 68.6413\\nL 65.875 68.6413\\nL 65.875 79.2613\\nL 64.435 79.2613\\nL 64.435 74.3563\\nL 59.005 74.3563\\nL 59.005 79.2613\\nL 57.565 79.2613\\nL 57.565 68.6413\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 68.8 68.6413\\nL 72.28 74.2663\\nQ 72.625 74.8213, 73.18 75.8263\\nQ 73.735 76.8313, 73.765 76.8913\\nL 73.765 68.6413\\nL 75.175 68.6413\\nL 75.175 79.2613\\nL 73.72 79.2613\\nL 69.985 73.1113\\nQ 69.55 72.3913, 69.085 71.5663\\nQ 68.635 70.7413, 68.5 70.4863\\nL 68.5 79.2613\\nL 67.12 79.2613\\nL 67.12 68.6413\\nL 68.8 68.6413\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 144, "data-ID": 727, "data-Solubility": -0.4, "data-SMILES": "O=C(NCC1=O)N1", "mols2grid-tooltip": "<strong>Name</strong>: hydantoin<br><strong>SMILES</strong>: O=C(NCC1=O)N1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.4</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.533,89.8971 L 105.939,80.8221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.939,80.8221 L 99.3464,71.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.465,94.3054 L 99.8718,85.2304' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.8718,85.2304 L 93.2786,76.1554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.3125,73.9513 L 107.9,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 63.7775,73.9513 L 80.045,73.9513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 80.045,73.9513 L 96.3125,73.9513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.9,38.2863 L 77.5625,16.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.5625,16.2438 L 47.225,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.225,38.2863 L 52.0038,52.995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.0038,52.995 L 56.7827,67.7037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 54.4098,80.0112 L 47.7949,89.1162' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 47.7949,89.1162 L 41.18,98.2213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 109.07 98.2513\\nQ 109.07 95.7013, 110.33 94.2763\\nQ 111.59 92.8513, 113.945 92.8513\\nQ 116.3 92.8513, 117.56 94.2763\\nQ 118.82 95.7013, 118.82 98.2513\\nQ 118.82 100.831, 117.545 102.301\\nQ 116.27 103.756, 113.945 103.756\\nQ 111.605 103.756, 110.33 102.301\\nQ 109.07 100.846, 109.07 98.2513\\nM 113.945 102.556\\nQ 115.565 102.556, 116.435 101.476\\nQ 117.32 100.381, 117.32 98.2513\\nQ 117.32 96.1663, 116.435 95.1163\\nQ 115.565 94.0513, 113.945 94.0513\\nQ 112.325 94.0513, 111.44 95.1013\\nQ 110.57 96.1513, 110.57 98.2513\\nQ 110.57 100.396, 111.44 101.476\\nQ 112.325 102.556, 113.945 102.556\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 56.465 68.6413\\nL 59.945 74.2663\\nQ 60.29 74.8213, 60.845 75.8263\\nQ 61.4 76.8313, 61.43 76.8913\\nL 61.43 68.6413\\nL 62.84 68.6413\\nL 62.84 79.2613\\nL 61.385 79.2613\\nL 57.65 73.1113\\nQ 57.215 72.3913, 56.75 71.5663\\nQ 56.3 70.7413, 56.165 70.4863\\nL 56.165 79.2613\\nL 54.785 79.2613\\nL 54.785 68.6413\\nL 56.465 68.6413\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 145, "data-ID": 732, "data-Solubility": 1.0, "data-SMILES": "O=C1CCCN1C", "mols2grid-tooltip": "<strong>Name</strong>: N-methylpyrrolidone<br><strong>SMILES</strong>: O=C1CCCN1C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.0</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.149,60.9697 L 134.149,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.747,55.4182 L 126.747,29.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 102.099,79.4747 L 134.149,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.149,23.9596 L 102.099,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.099,5.45455 L 70.0479,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.992,14.6406 L 78.5566,27.5941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.0479,23.9596 L 70.0479,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.0479,60.9697 L 59.5839,67.0106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5839,67.0106 L 49.12,73.0516' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 70.0479,60.9697 L 102.099,79.4747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 78.5566,57.3351 L 100.992,70.2887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 102.099,79.4747 L 102.099,91.2587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 102.099,91.2587 L 102.099,103.043' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 25.8507 70.5331\\nL 27.2718 70.5331\\nL 27.2718 74.9891\\nL 32.6309 74.9891\\nL 32.6309 70.5331\\nL 34.0521 70.5331\\nL 34.0521 81.0143\\nL 32.6309 81.0143\\nL 32.6309 76.1734\\nL 27.2718 76.1734\\nL 27.2718 81.0143\\nL 25.8507 81.0143\\nL 25.8507 70.5331\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 34.5602 80.6466\\nQ 34.8142 79.992, 35.42 79.6304\\nQ 36.0258 79.2592, 36.866 79.2592\\nQ 37.9115 79.2592, 38.4977 79.8259\\nQ 39.084 80.3926, 39.084 81.3989\\nQ 39.084 82.4249, 38.3219 83.3824\\nQ 37.5695 84.3399, 36.0062 85.4733\\nL 39.2012 85.4733\\nL 39.2012 86.255\\nL 34.5406 86.255\\nL 34.5406 85.6003\\nQ 35.8303 84.6819, 36.5925 83.9979\\nQ 37.3643 83.314, 37.7356 82.6984\\nQ 38.1069 82.0829, 38.1069 81.4478\\nQ 38.1069 80.7834, 37.7747 80.4121\\nQ 37.4425 80.0408, 36.866 80.0408\\nQ 36.3091 80.0408, 35.9378 80.2655\\nQ 35.5665 80.4903, 35.3027 80.9886\\nL 34.5602 80.6466\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 42.088 70.5331\\nL 45.5225 76.0846\\nQ 45.863 76.6323, 46.4108 77.6242\\nQ 46.9585 78.6161, 46.9881 78.6753\\nL 46.9881 70.5331\\nL 48.3797 70.5331\\nL 48.3797 81.0143\\nL 46.9437 81.0143\\nL 43.2575 74.9447\\nQ 42.8282 74.2341, 42.3693 73.4199\\nQ 41.9252 72.6056, 41.7919 72.354\\nL 41.7919 81.0143\\nL 40.43 81.0143\\nL 40.43 70.5331\\nL 42.088 70.5331\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 97.2873 109.112\\nQ 97.2873 106.596, 98.5308 105.189\\nQ 99.7744 103.783, 102.099 103.783\\nQ 104.423 103.783, 105.666 105.189\\nQ 106.91 106.596, 106.91 109.112\\nQ 106.91 111.659, 105.652 113.109\\nQ 104.393 114.545, 102.099 114.545\\nQ 99.7892 114.545, 98.5308 113.109\\nQ 97.2873 111.673, 97.2873 109.112\\nM 102.099 113.361\\nQ 103.697 113.361, 104.556 112.295\\nQ 105.43 111.215, 105.43 109.112\\nQ 105.43 107.055, 104.556 106.018\\nQ 103.697 104.967, 102.099 104.967\\nQ 100.5 104.967, 99.6263 106.004\\nQ 98.7677 107.04, 98.7677 109.112\\nQ 98.7677 111.229, 99.6263 112.295\\nQ 100.5 113.361, 102.099 113.361\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 108.168 103.901\\nL 109.589 103.901\\nL 109.589 108.357\\nL 114.949 108.357\\nL 114.949 103.901\\nL 116.37 103.901\\nL 116.37 114.383\\nL 114.949 114.383\\nL 114.949 109.542\\nL 109.589 109.542\\nL 109.589 114.383\\nL 108.168 114.383\\nL 108.168 103.901\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 146, "data-ID": 737, "data-Solubility": -0.72, "data-SMILES": "c1cccc(N)c1O", "mols2grid-tooltip": "<strong>Name</strong>: 2-aminophenol<br><strong>SMILES</strong>: c1cccc(N)c1O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.72</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4516,80.5077 L 41.6316,74.6342' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.6316,74.6342 L 51.8116,68.7606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.7034,74.0114 L 37.8834,68.1379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 37.8834,68.1379 L 48.0634,62.2644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.9375,65.5125 L 63.281,73.2107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 63.281,73.2107 L 76.6245,80.9088' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 49.9375,65.5125 L 49.9375,53.5425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 49.9375,53.5425 L 49.9375,41.5725' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.2505,80.9088 L 101.594,73.2107' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.594,73.2107 L 114.937,65.5125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.937,65.5125 L 140.922,80.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 19.0775 80.535\\nQ 19.0775 77.985, 20.3375 76.56\\nQ 21.5975 75.135, 23.9525 75.135\\nQ 26.3075 75.135, 27.5675 76.56\\nQ 28.8275 77.985, 28.8275 80.535\\nQ 28.8275 83.115, 27.5525 84.585\\nQ 26.2775 86.04, 23.9525 86.04\\nQ 21.6125 86.04, 20.3375 84.585\\nQ 19.0775 83.13, 19.0775 80.535\\nM 23.9525 84.84\\nQ 25.5725 84.84, 26.4425 83.76\\nQ 27.3275 82.665, 27.3275 80.535\\nQ 27.3275 78.45, 26.4425 77.4\\nQ 25.5725 76.335, 23.9525 76.335\\nQ 22.3325 76.335, 21.4475 77.385\\nQ 20.5775 78.435, 20.5775 80.535\\nQ 20.5775 82.68, 21.4475 83.76\\nQ 22.3325 84.84, 23.9525 84.84\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 77.5625 84.2925\\nQ 77.5625 81.7425, 78.8225 80.3175\\nQ 80.0825 78.8925, 82.4375 78.8925\\nQ 84.7925 78.8925, 86.0525 80.3175\\nQ 87.3125 81.7425, 87.3125 84.2925\\nQ 87.3125 86.8725, 86.0375 88.3425\\nQ 84.7625 89.7975, 82.4375 89.7975\\nQ 80.0975 89.7975, 78.8225 88.3425\\nQ 77.5625 86.8875, 77.5625 84.2925\\nM 82.4375 88.5975\\nQ 84.0575 88.5975, 84.9275 87.5175\\nQ 85.8125 86.4225, 85.8125 84.2925\\nQ 85.8125 82.2075, 84.9275 81.1575\\nQ 84.0575 80.0925, 82.4375 80.0925\\nQ 80.8175 80.0925, 79.9325 81.1425\\nQ 79.0625 82.1925, 79.0625 84.2925\\nQ 79.0625 86.4375, 79.9325 87.5175\\nQ 80.8175 88.5975, 82.4375 88.5975\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 47.59 30.2025\\nL 51.07 35.8275\\nQ 51.415 36.3825, 51.97 37.3875\\nQ 52.525 38.3925, 52.555 38.4525\\nL 52.555 30.2025\\nL 53.965 30.2025\\nL 53.965 40.8225\\nL 52.51 40.8225\\nL 48.775 34.6725\\nQ 48.34 33.9525, 47.875 33.1275\\nQ 47.425 32.3025, 47.29 32.0475\\nL 47.29 40.8225\\nL 45.91 40.8225\\nL 45.91 30.2025\\nL 47.59 30.2025\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 55.24 30.2025\\nL 56.68 30.2025\\nL 56.68 34.7175\\nL 62.11 34.7175\\nL 62.11 30.2025\\nL 63.55 30.2025\\nL 63.55 40.8225\\nL 62.11 40.8225\\nL 62.11 35.9175\\nL 56.68 35.9175\\nL 56.68 40.8225\\nL 55.24 40.8225\\nL 55.24 30.2025\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 64.0648 40.4499\\nQ 64.3222 39.7866, 64.936 39.4203\\nQ 65.5498 39.0441, 66.4012 39.0441\\nQ 67.4605 39.0441, 68.0545 39.6183\\nQ 68.6485 40.1925, 68.6485 41.2122\\nQ 68.6485 42.2517, 67.8763 43.2219\\nQ 67.114 44.1921, 65.53 45.3405\\nL 68.7673 45.3405\\nL 68.7673 46.1325\\nL 64.045 46.1325\\nL 64.045 45.4692\\nQ 65.3518 44.5386, 66.124 43.8456\\nQ 66.9061 43.1526, 67.2823 42.5289\\nQ 67.6585 41.9052, 67.6585 41.2617\\nQ 67.6585 40.5885, 67.3219 40.2123\\nQ 66.9853 39.8361, 66.4012 39.8361\\nQ 65.8369 39.8361, 65.4607 40.0638\\nQ 65.0845 40.2915, 64.8172 40.7964\\nL 64.0648 40.4499\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 147, "data-ID": 742, "data-Solubility": 0.85, "data-SMILES": "O=C(OCC)N", "mols2grid-tooltip": "<strong>Name</strong>: O-ethyl_carbamate<br><strong>SMILES</strong>: O=C(OCC)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.85</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.513,74.428 L 114.473,77.9293' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.473,77.9293 L 108.432,81.4307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.748,78.2838 L 116.708,81.7851' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.708,81.7851 L 110.667,85.2865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.55,83.3586 L 101.615,78.792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.615,78.792 L 93.6796,74.2254' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 109.55,83.3586 L 109.569,92.65' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 109.569,92.65 L 109.588,101.941' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.2175,68.4891 L 90.1984,59.2155' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.1984,59.2155 L 90.1792,49.9419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.1792,49.9419 L 70.9201,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.5192,44.4141 L 76.0379,36.6283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 90.1792,49.9419 L 109.44,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.9201,38.8193 L 70.9201,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 70.9201,38.8193 L 51.661,49.9419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.9201,16.5771 L 51.661,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 70.9201,16.5771 L 90.1792,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 76.0379,18.7681 L 89.5192,10.9823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.661,5.45455 L 32.13,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 50.9368,10.9957 L 37.2652,18.7815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.13,16.5771 L 32.13,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 51.661,49.9419 L 32.13,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 50.9368,44.4007 L 37.2652,36.6149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 90.1792,5.45455 L 109.44,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 109.44,38.8193 L 109.44,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 104.983,35.483 L 104.983,19.9134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 112.435,107.288 L 118.741,110.917' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 118.741,110.917 L 125.047,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 122.076 74.4362\\nQ 122.076 72.9209, 122.825 72.0741\\nQ 123.574 71.2273, 124.973 71.2273\\nQ 126.373 71.2273, 127.121 72.0741\\nQ 127.87 72.9209, 127.87 74.4362\\nQ 127.87 75.9693, 127.112 76.8428\\nQ 126.355 77.7074, 124.973 77.7074\\nQ 123.583 77.7074, 122.825 76.8428\\nQ 122.076 75.9782, 122.076 74.4362\\nM 124.973 76.9943\\nQ 125.936 76.9943, 126.453 76.3526\\nQ 126.979 75.7019, 126.979 74.4362\\nQ 126.979 73.1972, 126.453 72.5732\\nQ 125.936 71.9404, 124.973 71.9404\\nQ 124.01 71.9404, 123.485 72.5643\\nQ 122.968 73.1883, 122.968 74.4362\\nQ 122.968 75.7108, 123.485 76.3526\\nQ 124.01 76.9943, 124.973 76.9943\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 87.3284 72.2553\\nQ 87.3284 70.74, 88.0771 69.8932\\nQ 88.8259 69.0465, 90.2253 69.0465\\nQ 91.6247 69.0465, 92.3734 69.8932\\nQ 93.1222 70.74, 93.1222 72.2553\\nQ 93.1222 73.7885, 92.3645 74.662\\nQ 91.6069 75.5266, 90.2253 75.5266\\nQ 88.8348 75.5266, 88.0771 74.662\\nQ 87.3284 73.7974, 87.3284 72.2553\\nM 90.2253 74.8135\\nQ 91.1879 74.8135, 91.7049 74.1717\\nQ 92.2308 73.521, 92.2308 72.2553\\nQ 92.2308 71.0164, 91.7049 70.3924\\nQ 91.1879 69.7595, 90.2253 69.7595\\nQ 89.2626 69.7595, 88.7367 70.3835\\nQ 88.2197 71.0074, 88.2197 72.2553\\nQ 88.2197 73.53, 88.7367 74.1717\\nQ 89.2626 74.8135, 90.2253 74.8135\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 101.525 102.499\\nL 102.38 102.499\\nL 102.38 105.182\\nL 105.607 105.182\\nL 105.607 102.499\\nL 106.463 102.499\\nL 106.463 108.81\\nL 105.607 108.81\\nL 105.607 105.895\\nL 102.38 105.895\\nL 102.38 108.81\\nL 101.525 108.81\\nL 101.525 102.499\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 108.201 102.499\\nL 110.269 105.841\\nQ 110.474 106.171, 110.804 106.768\\nQ 111.133 107.366, 111.151 107.401\\nL 111.151 102.499\\nL 111.989 102.499\\nL 111.989 108.81\\nL 111.124 108.81\\nL 108.905 105.155\\nQ 108.647 104.727, 108.37 104.237\\nQ 108.103 103.747, 108.023 103.595\\nL 108.023 108.81\\nL 107.203 108.81\\nL 107.203 102.499\\nL 108.201 102.499\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 148, "data-ID": 747, "data-Solubility": -3.28, "data-SMILES": "O=C(Oc(c(c(ccc1)cc2)c1)c2)NC", "mols2grid-tooltip": "<strong>Name</strong>: carbaryl<br><strong>SMILES</strong>: O=C(Oc(c(c(ccc1)cc2)c1)c2)NC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.28</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.7016,74.7792 L 57.8816,68.9057' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 57.8816,68.9057 L 68.0616,63.0321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 43.9534,68.2829 L 54.1334,62.4094' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.1334,62.4094 L 64.3134,56.5359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,59.784 L 79.9547,67.7266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.9547,67.7266 L 93.722,75.6693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 66.1875,59.784 L 66.1875,47.814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 66.1875,47.814 L 66.1875,35.844' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.465,75.7775 L 114.069,69.6595' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.069,69.6595 L 124.673,63.5415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 35.3275 74.8065\\nQ 35.3275 72.2565, 36.5875 70.8315\\nQ 37.8475 69.4065, 40.2025 69.4065\\nQ 42.5575 69.4065, 43.8175 70.8315\\nQ 45.0775 72.2565, 45.0775 74.8065\\nQ 45.0775 77.3865, 43.8025 78.8565\\nQ 42.5275 80.3115, 40.2025 80.3115\\nQ 37.8625 80.3115, 36.5875 78.8565\\nQ 35.3275 77.4015, 35.3275 74.8065\\nM 40.2025 79.1115\\nQ 41.8225 79.1115, 42.6925 78.0315\\nQ 43.5775 76.9365, 43.5775 74.8065\\nQ 43.5775 72.7215, 42.6925 71.6715\\nQ 41.8225 70.6065, 40.2025 70.6065\\nQ 38.5825 70.6065, 37.6975 71.6565\\nQ 36.8275 72.7065, 36.8275 74.8065\\nQ 36.8275 76.9515, 37.6975 78.0315\\nQ 38.5825 79.1115, 40.2025 79.1115\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 96.34 73.224\\nL 99.82 78.849\\nQ 100.165 79.404, 100.72 80.409\\nQ 101.275 81.414, 101.305 81.474\\nL 101.305 73.224\\nL 102.715 73.224\\nL 102.715 83.844\\nL 101.26 83.844\\nL 97.525 77.694\\nQ 97.09 76.974, 96.625 76.149\\nQ 96.175 75.324, 96.04 75.069\\nL 96.04 83.844\\nL 94.66 83.844\\nL 94.66 73.224\\nL 96.34 73.224\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 94.5325 84.906\\nL 95.9725 84.906\\nL 95.9725 89.421\\nL 101.402 89.421\\nL 101.402 84.906\\nL 102.843 84.906\\nL 102.843 95.526\\nL 101.402 95.526\\nL 101.402 90.621\\nL 95.9725 90.621\\nL 95.9725 95.526\\nL 94.5325 95.526\\nL 94.5325 84.906\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 63.84 24.474\\nL 67.32 30.099\\nQ 67.665 30.654, 68.22 31.659\\nQ 68.775 32.664, 68.805 32.724\\nL 68.805 24.474\\nL 70.215 24.474\\nL 70.215 35.094\\nL 68.76 35.094\\nL 65.025 28.944\\nQ 64.59 28.224, 64.125 27.399\\nQ 63.675 26.574, 63.54 26.319\\nL 63.54 35.094\\nL 62.16 35.094\\nL 62.16 24.474\\nL 63.84 24.474\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 71.49 24.474\\nL 72.93 24.474\\nL 72.93 28.989\\nL 78.36 28.989\\nL 78.36 24.474\\nL 79.8 24.474\\nL 79.8 35.094\\nL 78.36 35.094\\nL 78.36 30.189\\nL 72.93 30.189\\nL 72.93 35.094\\nL 71.49 35.094\\nL 71.49 24.474\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 80.3148 34.7214\\nQ 80.5722 34.0581, 81.186 33.6918\\nQ 81.7998 33.3156, 82.6512 33.3156\\nQ 83.7105 33.3156, 84.3045 33.8898\\nQ 84.8985 34.464, 84.8985 35.4837\\nQ 84.8985 36.5232, 84.1263 37.4934\\nQ 83.364 38.4636, 81.78 39.612\\nL 85.0173 39.612\\nL 85.0173 40.404\\nL 80.295 40.404\\nL 80.295 39.7407\\nQ 81.6018 38.8101, 82.374 38.1171\\nQ 83.1561 37.4241, 83.5323 36.8004\\nQ 83.9085 36.1767, 83.9085 35.5332\\nQ 83.9085 34.86, 83.5719 34.4838\\nQ 83.2353 34.1076, 82.6512 34.1076\\nQ 82.0869 34.1076, 81.7107 34.3353\\nQ 81.3345 34.563, 81.0672 35.0679\\nL 80.3148 34.7214\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 149, "data-ID": 752, "data-Solubility": 1.13, "data-SMILES": "O=C(NC)N", "mols2grid-tooltip": "<strong>Name</strong>: N-methylurea<br><strong>SMILES</strong>: O=C(NC)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.13</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.7016,82.3864 L 57.8816,76.5129' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 57.8816,76.5129 L 68.0616,70.6394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 43.9534,75.8902 L 54.1334,70.0166' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.1334,70.0166 L 64.3134,64.1431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,67.3912 L 66.1875,55.4213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,55.4213 L 66.1875,43.4513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 66.1875,67.3912 L 98.6875,86.1412' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.562,89.3894 L 126.547,74.3969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.8134,82.8931 L 122.798,67.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 35.3275 82.4138\\nQ 35.3275 79.8638, 36.5875 78.4388\\nQ 37.8475 77.0138, 40.2025 77.0138\\nQ 42.5575 77.0138, 43.8175 78.4388\\nQ 45.0775 79.8638, 45.0775 82.4138\\nQ 45.0775 84.9938, 43.8025 86.4638\\nQ 42.5275 87.9188, 40.2025 87.9188\\nQ 37.8625 87.9188, 36.5875 86.4638\\nQ 35.3275 85.0088, 35.3275 82.4138\\nM 40.2025 86.7188\\nQ 41.8225 86.7188, 42.6925 85.6388\\nQ 43.5775 84.5438, 43.5775 82.4138\\nQ 43.5775 80.3288, 42.6925 79.2788\\nQ 41.8225 78.2138, 40.2025 78.2138\\nQ 38.5825 78.2138, 37.6975 79.2638\\nQ 36.8275 80.3138, 36.8275 82.4138\\nQ 36.8275 84.5588, 37.6975 85.6388\\nQ 38.5825 86.7188, 40.2025 86.7188\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 63.84 32.0812\\nL 67.32 37.7063\\nQ 67.665 38.2613, 68.22 39.2662\\nQ 68.775 40.2713, 68.805 40.3313\\nL 68.805 32.0812\\nL 70.215 32.0812\\nL 70.215 42.7013\\nL 68.76 42.7013\\nL 65.025 36.5513\\nQ 64.59 35.8313, 64.125 35.0063\\nQ 63.675 34.1813, 63.54 33.9263\\nL 63.54 42.7013\\nL 62.16 42.7013\\nL 62.16 32.0812\\nL 63.84 32.0812\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 71.49 32.0812\\nL 72.93 32.0812\\nL 72.93 36.5962\\nL 78.36 36.5962\\nL 78.36 32.0812\\nL 79.8 32.0812\\nL 79.8 42.7013\\nL 78.36 42.7013\\nL 78.36 37.7963\\nL 72.93 37.7963\\nL 72.93 42.7013\\nL 71.49 42.7013\\nL 71.49 32.0812\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 80.3148 42.3287\\nQ 80.5722 41.6654, 81.186 41.2991\\nQ 81.7998 40.9229, 82.6512 40.9229\\nQ 83.7105 40.9229, 84.3045 41.4971\\nQ 84.8985 42.0713, 84.8985 43.091\\nQ 84.8985 44.1305, 84.1263 45.1007\\nQ 83.364 46.0709, 81.78 47.2193\\nL 85.0173 47.2193\\nL 85.0173 48.0113\\nL 80.295 48.0113\\nL 80.295 47.348\\nQ 81.6018 46.4174, 82.374 45.7244\\nQ 83.1561 45.0314, 83.5323 44.4077\\nQ 83.9085 43.784, 83.9085 43.1405\\nQ 83.9085 42.4673, 83.5719 42.0911\\nQ 83.2353 41.7149, 82.6512 41.7149\\nQ 82.0869 41.7149, 81.7107 41.9426\\nQ 81.3345 42.1703, 81.0672 42.6752\\nL 80.3148 42.3287\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 150, "data-ID": 757, "data-Solubility": 0.96, "data-SMILES": "O=C(N)C=C", "mols2grid-tooltip": "<strong>Name</strong>: acrylamide<br><strong>SMILES</strong>: O=C(N)C=C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.96</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 141.041,104.801 L 132.817,100.03' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 132.817,100.03 L 124.593,95.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 137.996,110.051 L 129.772,105.28' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.772,105.28 L 121.548,100.51' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.07,97.885 L 123.089,85.2316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.089,85.2316 L 123.107,72.5782' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 123.07,97.885 L 102.024,109.987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 119.096,65.191 L 107.972,58.7384' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.972,58.7384 L 96.8486,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.8486,52.2858 L 96.8486,21.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7792,47.7338 L 90.7792,26.491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 96.8486,52.2858 L 70.5682,67.4593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.8486,21.939 L 70.5682,6.76553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.5682,6.76553 L 44.2878,21.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.6609,14.2977 L 51.2646,24.9191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 44.2878,21.939 L 36.0507,17.1836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 36.0507,17.1836 L 27.8135,12.4282' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 44.2878,21.939 L 44.2878,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 70.5682,67.4593 L 44.2878,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 69.6609,59.9271 L 51.2646,49.3056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 140.125 110.091\\nQ 140.125 108.027, 141.145 106.874\\nQ 142.165 105.721, 144.07 105.721\\nQ 145.976 105.721, 146.996 106.874\\nQ 148.015 108.027, 148.015 110.091\\nQ 148.015 112.178, 146.984 113.368\\nQ 145.952 114.545, 144.07 114.545\\nQ 142.177 114.545, 141.145 113.368\\nQ 140.125 112.191, 140.125 110.091\\nM 144.07 113.574\\nQ 145.381 113.574, 146.085 112.7\\nQ 146.802 111.814, 146.802 110.091\\nQ 146.802 108.403, 146.085 107.554\\nQ 145.381 106.692, 144.07 106.692\\nQ 142.759 106.692, 142.043 107.541\\nQ 141.339 108.391, 141.339 110.091\\nQ 141.339 111.826, 142.043 112.7\\nQ 142.759 113.574, 144.07 113.574\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 121.215 63.2249\\nL 124.031 67.7769\\nQ 124.31 68.226, 124.76 69.0393\\nQ 125.209 69.8526, 125.233 69.9012\\nL 125.233 63.2249\\nL 126.374 63.2249\\nL 126.374 71.8191\\nL 125.197 71.8191\\nL 122.174 66.8422\\nQ 121.822 66.2595, 121.446 65.5919\\nQ 121.082 64.9243, 120.972 64.7179\\nL 120.972 71.8191\\nL 119.856 71.8191\\nL 119.856 63.2249\\nL 121.215 63.2249\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 127.406 63.2249\\nL 128.571 63.2249\\nL 128.571 66.8786\\nL 132.965 66.8786\\nL 132.965 63.2249\\nL 134.131 63.2249\\nL 134.131 71.8191\\nL 132.965 71.8191\\nL 132.965 67.8497\\nL 128.571 67.8497\\nL 128.571 71.8191\\nL 127.406 71.8191\\nL 127.406 63.2249\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 11.9846 5.55166\\nL 13.1499 5.55166\\nL 13.1499 9.20542\\nL 17.5441 9.20542\\nL 17.5441 5.55166\\nL 18.7094 5.55166\\nL 18.7094 14.1459\\nL 17.5441 14.1459\\nL 17.5441 10.1765\\nL 13.1499 10.1765\\nL 13.1499 14.1459\\nL 11.9846 14.1459\\nL 11.9846 5.55166\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 19.3164 9.82449\\nQ 19.3164 7.76091, 20.336 6.60773\\nQ 21.3557 5.45455, 23.2615 5.45455\\nQ 25.1673 5.45455, 26.1869 6.60773\\nQ 27.2066 7.76091, 27.2066 9.82449\\nQ 27.2066 11.9124, 26.1748 13.102\\nQ 25.143 14.2794, 23.2615 14.2794\\nQ 21.3678 14.2794, 20.336 13.102\\nQ 19.3164 11.9245, 19.3164 9.82449\\nM 23.2615 13.3083\\nQ 24.5725 13.3083, 25.2765 12.4343\\nQ 25.9927 11.5482, 25.9927 9.82449\\nQ 25.9927 8.13721, 25.2765 7.2875\\nQ 24.5725 6.42565, 23.2615 6.42565\\nQ 21.9505 6.42565, 21.2343 7.27536\\nQ 20.5303 8.12507, 20.5303 9.82449\\nQ 20.5303 11.5603, 21.2343 12.4343\\nQ 21.9505 13.3083, 23.2615 13.3083\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 151, "data-ID": 762, "data-Solubility": -1.03, "data-SMILES": "O=C(Nc(ccc(O)c1)c1)C", "mols2grid-tooltip": "<strong>Name</strong>: 4-hydroxyacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(O)c1)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.03</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 33.2634,62.85 L 59.2484,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 59.2484,47.8575 L 59.2484,17.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 59.2484,47.8575 L 73.0156,55.8001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 73.0156,55.8001 L 86.7828,63.7428' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 102.04,60.6695 L 107.223,57.6793' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 107.223,57.6793 L 112.405,54.6891' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 87.9984,72.6675 L 87.9984,81.6532' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 87.9984,81.6532 L 87.9984,90.639' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 95.4984,72.6675 L 95.4984,81.6532' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 95.4984,81.6532 L 95.4984,90.639' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 89.4009 61.2975\\nL 92.8809 66.9225\\nQ 93.2259 67.4775, 93.7809 68.4825\\nQ 94.3359 69.4875, 94.3659 69.5475\\nL 94.3659 61.2975\\nL 95.7759 61.2975\\nL 95.7759 71.9175\\nL 94.3209 71.9175\\nL 90.5859 65.7675\\nQ 90.1509 65.0475, 89.6859 64.2225\\nQ 89.2359 63.3975, 89.1009 63.1425\\nL 89.1009 71.9175\\nL 87.7209 71.9175\\nL 87.7209 61.2975\\nL 89.4009 61.2975\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 96.6669 63.2118\\nL 98.538 63.2118\\nL 98.538 61.2417\\nL 99.3696 61.2417\\nL 99.3696 63.2118\\nL 101.29 63.2118\\nL 101.29 63.9246\\nL 99.3696 63.9246\\nL 99.3696 65.9046\\nL 98.538 65.9046\\nL 98.538 63.9246\\nL 96.6669 63.9246\\nL 96.6669 63.2118\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 112.858 51.645\\nQ 112.858 49.095, 114.118 47.67\\nQ 115.378 46.245, 117.733 46.245\\nQ 120.088 46.245, 121.348 47.67\\nQ 122.608 49.095, 122.608 51.645\\nQ 122.608 54.225, 121.333 55.695\\nQ 120.058 57.15, 117.733 57.15\\nQ 115.393 57.15, 114.118 55.695\\nQ 112.858 54.24, 112.858 51.645\\nM 117.733 55.95\\nQ 119.353 55.95, 120.223 54.87\\nQ 121.108 53.775, 121.108 51.645\\nQ 121.108 49.56, 120.223 48.51\\nQ 119.353 47.445, 117.733 47.445\\nQ 116.113 47.445, 115.228 48.495\\nQ 114.358 49.545, 114.358 51.645\\nQ 114.358 53.79, 115.228 54.87\\nQ 116.113 55.95, 117.733 55.95\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 123.103 47.9784\\nL 126.737 47.9784\\nL 126.737 48.7704\\nL 123.103 48.7704\\nL 123.103 47.9784\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 86.8734 96.6375\\nQ 86.8734 94.0875, 88.1334 92.6625\\nQ 89.3934 91.2375, 91.7484 91.2375\\nQ 94.1034 91.2375, 95.3634 92.6625\\nQ 96.6234 94.0875, 96.6234 96.6375\\nQ 96.6234 99.2175, 95.3484 100.687\\nQ 94.0734 102.142, 91.7484 102.142\\nQ 89.4084 102.142, 88.1334 100.687\\nQ 86.8734 99.2325, 86.8734 96.6375\\nM 91.7484 100.942\\nQ 93.3684 100.942, 94.2384 99.8625\\nQ 95.1234 98.7675, 95.1234 96.6375\\nQ 95.1234 94.5525, 94.2384 93.5025\\nQ 93.3684 92.4375, 91.7484 92.4375\\nQ 90.1284 92.4375, 89.2434 93.4875\\nQ 88.3734 94.5375, 88.3734 96.6375\\nQ 88.3734 98.7825, 89.2434 99.8625\\nQ 90.1284 100.942, 91.7484 100.942\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 152, "data-ID": 767, "data-Solubility": -0.62, "data-SMILES": "CC(C)N(=O)=O", "mols2grid-tooltip": "<strong>Name</strong>: 2-nitropropane<br><strong>SMILES</strong>: CC(C)N(=O)=O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.62</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.464,107.283 L 115.998,103.561' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.998,103.561 L 109.532,99.8399' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.283,97.2709 L 93.8461,101.002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.8461,101.002 L 87.4094,104.733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.369,102.595 L 96.9319,106.326' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.9319,106.326 L 90.4953,110.057' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.735,92.5345 L 105.708,79.7059' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.708,79.7059 L 105.682,66.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.682,66.8774 L 79.091,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.771,59.2453 L 86.157,48.4956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 105.682,66.8774 L 132.275,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.091,51.5207 L 79.091,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 79.091,51.5207 L 52.5003,66.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 79.091,20.8113 L 52.5003,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 79.091,20.8113 L 105.682,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 86.157,23.8363 L 104.771,13.0866' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.5003,5.45455 L 25.5342,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.5005,13.1051 L 32.6242,23.8549' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.5342,20.8113 L 25.5342,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 52.5003,66.8774 L 25.5342,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 51.5005,59.2268 L 32.6242,48.4771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 105.682,5.45455 L 132.275,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 132.275,51.5207 L 132.275,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 126.121,46.9143 L 126.121,25.4177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 123.079 109.963\\nQ 123.079 107.871, 124.113 106.702\\nQ 125.147 105.533, 127.079 105.533\\nQ 129.011 105.533, 130.045 106.702\\nQ 131.079 107.871, 131.079 109.963\\nQ 131.079 112.08, 130.033 113.286\\nQ 128.987 114.48, 127.079 114.48\\nQ 125.159 114.48, 124.113 113.286\\nQ 123.079 112.092, 123.079 109.963\\nM 127.079 113.495\\nQ 128.408 113.495, 129.122 112.609\\nQ 129.848 111.711, 129.848 109.963\\nQ 129.848 108.253, 129.122 107.391\\nQ 128.408 106.517, 127.079 106.517\\nQ 125.75 106.517, 125.024 107.379\\nQ 124.31 108.24, 124.31 109.963\\nQ 124.31 111.723, 125.024 112.609\\nQ 125.75 113.495, 127.079 113.495\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 131.485 106.955\\nL 134.466 106.955\\nL 134.466 107.605\\nL 131.485 107.605\\nL 131.485 106.955\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 103.819 93.304\\nL 106.674 97.9191\\nQ 106.958 98.3744, 107.413 99.199\\nQ 107.868 100.024, 107.893 100.073\\nL 107.893 93.304\\nL 109.05 93.304\\nL 109.05 102.017\\nL 107.856 102.017\\nL 104.792 96.9715\\nQ 104.435 96.3807, 104.053 95.7039\\nQ 103.684 95.027, 103.573 94.8178\\nL 103.573 102.017\\nL 102.441 102.017\\nL 102.441 93.304\\nL 103.819 93.304\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 109.781 94.8746\\nL 111.316 94.8746\\nL 111.316 93.2583\\nL 111.998 93.2583\\nL 111.998 94.8746\\nL 113.574 94.8746\\nL 113.574 95.4594\\nL 111.998 95.4594\\nL 111.998 97.0839\\nL 111.316 97.0839\\nL 111.316 95.4594\\nL 109.781 95.4594\\nL 109.781 94.8746\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 80.4509 110.029\\nQ 80.4509 107.937, 81.4847 106.768\\nQ 82.5184 105.598, 84.4506 105.598\\nQ 86.3828 105.598, 87.4165 106.768\\nQ 88.4503 107.937, 88.4503 110.029\\nQ 88.4503 112.146, 87.4042 113.352\\nQ 86.3581 114.545, 84.4506 114.545\\nQ 82.5308 114.545, 81.4847 113.352\\nQ 80.4509 112.158, 80.4509 110.029\\nM 84.4506 113.561\\nQ 85.7797 113.561, 86.4935 112.675\\nQ 87.2196 111.776, 87.2196 110.029\\nQ 87.2196 108.318, 86.4935 107.457\\nQ 85.7797 106.583, 84.4506 106.583\\nQ 83.1215 106.583, 82.3954 107.444\\nQ 81.6816 108.306, 81.6816 110.029\\nQ 81.6816 111.789, 82.3954 112.675\\nQ 83.1215 113.561, 84.4506 113.561\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 153, "data-ID": 772, "data-Solubility": -3.54, "data-SMILES": "O=N(=O)c(c(c(ccc1)cc2)c1)c2", "mols2grid-tooltip": "<strong>Name</strong>: 1-nitronaphthalene<br><strong>SMILES</strong>: O=N(=O)c(c(c(ccc1)cc2)c1)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.54</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 126.166,104.316 L 126.178,95.6862' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.178,95.6862 L 126.19,87.0561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.745,104.309 L 120.757,95.6786' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.757,95.6786 L 120.769,87.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.48,87.0523 L 130.845,82.8167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.845,82.8167 L 138.21,78.581' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 123.48,87.0523 L 100.02,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.02,73.4439 L 100.02,46.3392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 94.5986,69.3782 L 94.5986,50.4049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 100.02,73.4439 L 76.5469,86.9963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.02,46.3392 L 76.5469,32.7869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.5469,32.7869 L 53.0742,46.3392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 75.7365,39.5144 L 59.3056,49.001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 53.0742,46.3392 L 43.1116,40.6149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 43.1116,40.6149 L 33.149,34.8906' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 53.0742,46.3392 L 53.0742,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 26.1069,34.8287 L 21.1023,37.7277' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 21.1023,37.7277 L 16.0977,40.6266' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 32.2628,28.4436 L 32.2515,22.0084' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 32.2515,22.0084 L 32.2403,15.5732' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 26.8419,28.4531 L 26.8306,22.0179' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 26.8306,22.0179 L 26.8193,15.5827' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 76.5469,86.9963 L 53.0742,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 75.7365,80.2688 L 59.3056,70.7821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.925 108.758\\nQ 119.925 106.915, 120.836 105.885\\nQ 121.747 104.855, 123.449 104.855\\nQ 125.151 104.855, 126.062 105.885\\nQ 126.972 106.915, 126.972 108.758\\nQ 126.972 110.623, 126.051 111.685\\nQ 125.129 112.737, 123.449 112.737\\nQ 121.757 112.737, 120.836 111.685\\nQ 119.925 110.633, 119.925 108.758\\nM 123.449 111.869\\nQ 124.62 111.869, 125.249 111.089\\nQ 125.888 110.297, 125.888 108.758\\nQ 125.888 107.251, 125.249 106.492\\nQ 124.62 105.722, 123.449 105.722\\nQ 122.278 105.722, 121.638 106.481\\nQ 121.009 107.24, 121.009 108.758\\nQ 121.009 110.308, 121.638 111.089\\nQ 122.278 111.869, 123.449 111.869\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 138.752 76.2646\\nQ 138.752 74.4215, 139.663 73.3915\\nQ 140.574 72.3615, 142.276 72.3615\\nQ 143.978 72.3615, 144.889 73.3915\\nQ 145.799 74.4215, 145.799 76.2646\\nQ 145.799 78.1294, 144.878 79.1919\\nQ 143.956 80.2436, 142.276 80.2436\\nQ 140.584 80.2436, 139.663 79.1919\\nQ 138.752 78.1403, 138.752 76.2646\\nM 142.276 79.3762\\nQ 143.447 79.3762, 144.075 78.5956\\nQ 144.715 77.8042, 144.715 76.2646\\nQ 144.715 74.7576, 144.075 73.9987\\nQ 143.447 73.2289, 142.276 73.2289\\nQ 141.105 73.2289, 140.465 73.9878\\nQ 139.836 74.7468, 139.836 76.2646\\nQ 139.836 77.815, 140.465 78.5956\\nQ 141.105 79.3762, 142.276 79.3762\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 146.721 72.4483\\nL 147.762 72.4483\\nL 147.762 75.7117\\nL 151.686 75.7117\\nL 151.686 72.4483\\nL 152.727 72.4483\\nL 152.727 80.1243\\nL 151.686 80.1243\\nL 151.686 76.579\\nL 147.762 76.579\\nL 147.762 80.1243\\nL 146.721 80.1243\\nL 146.721 72.4483\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 27.8632 28.9904\\nL 30.3786 33.0561\\nQ 30.6279 33.4573, 31.0291 34.1837\\nQ 31.4302 34.9101, 31.4519 34.9535\\nL 31.4519 28.9904\\nL 32.471 28.9904\\nL 32.471 36.6665\\nL 31.4194 36.6665\\nL 28.7198 32.2213\\nQ 28.4053 31.7009, 28.0692 31.1046\\nQ 27.744 30.5083, 27.6464 30.324\\nL 27.6464 36.6665\\nL 26.649 36.6665\\nL 26.649 28.9904\\nL 27.8632 28.9904\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 33.1151 30.3741\\nL 34.4675 30.3741\\nL 34.4675 28.9501\\nL 35.0685 28.9501\\nL 35.0685 30.3741\\nL 36.4567 30.3741\\nL 36.4567 30.8893\\nL 35.0685 30.8893\\nL 35.0685 32.3204\\nL 34.4675 32.3204\\nL 34.4675 30.8893\\nL 33.1151 30.8893\\nL 33.1151 30.3741\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 7.27273 43.7191\\nQ 7.27273 41.876, 8.18344 40.846\\nQ 9.09416 39.816, 10.7963 39.816\\nQ 12.4985 39.816, 13.4092 40.846\\nQ 14.3199 41.876, 14.3199 43.7191\\nQ 14.3199 45.5839, 13.3984 46.6464\\nQ 12.4768 47.6981, 10.7963 47.6981\\nQ 9.105 47.6981, 8.18344 46.6464\\nQ 7.27273 45.5948, 7.27273 43.7191\\nM 10.7963 46.8307\\nQ 11.9673 46.8307, 12.5961 46.0501\\nQ 13.2358 45.2587, 13.2358 43.7191\\nQ 13.2358 42.2121, 12.5961 41.4532\\nQ 11.9673 40.6834, 10.7963 40.6834\\nQ 9.62541 40.6834, 8.98574 41.4423\\nQ 8.35691 42.2013, 8.35691 43.7191\\nQ 8.35691 45.2695, 8.98574 46.0501\\nQ 9.62541 46.8307, 10.7963 46.8307\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 14.6777 41.0689\\nL 17.3038 41.0689\\nL 17.3038 41.6414\\nL 14.6777 41.6414\\nL 14.6777 41.0689\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 25.9984 11.1664\\nQ 25.9984 9.32329, 26.9092 8.29331\\nQ 27.8199 7.26333, 29.5221 7.26333\\nQ 31.2242 7.26333, 32.1349 8.29331\\nQ 33.0457 9.32329, 33.0457 11.1664\\nQ 33.0457 13.0312, 32.1241 14.0937\\nQ 31.2025 15.1454, 29.5221 15.1454\\nQ 27.8307 15.1454, 26.9092 14.0937\\nQ 25.9984 13.042, 25.9984 11.1664\\nM 29.5221 14.278\\nQ 30.693 14.278, 31.3218 13.4974\\nQ 31.9615 12.706, 31.9615 11.1664\\nQ 31.9615 9.65938, 31.3218 8.90045\\nQ 30.693 8.13068, 29.5221 8.13068\\nQ 28.3511 8.13068, 27.7115 8.88961\\nQ 27.0826 9.64854, 27.0826 11.1664\\nQ 27.0826 12.7168, 27.7115 13.4974\\nQ 28.3511 14.278, 29.5221 14.278\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 154, "data-ID": 777, "data-Solubility": -2.8, "data-SMILES": "O=C(O)c(ccc(N(=O)=O)c1)c1", "mols2grid-tooltip": "<strong>Name</strong>: 4-nitrobenzoic_acid<br><strong>SMILES</strong>: O=C(O)c(ccc(N(=O)=O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.8</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.317,103.211 L 112.329,94.471' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.329,94.471 L 112.342,85.7314' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.177,77.3921 L 129.227,74.488' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.227,74.488 L 134.277,71.5839' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.541,71.0692 L 125.591,68.1651' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.591,68.1651 L 130.641,65.261' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.521,77.1854 L 94.1524,69.4309' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 94.1524,69.4309 L 80.7841,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.7841,61.6764 L 80.7841,25.2066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.4901,56.2059 L 73.4901,30.6771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 80.7841,61.6764 L 49.2013,79.9113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.7841,25.2066 L 91.0953,19.2538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.0953,19.2538 L 101.407,13.301' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.7841,25.2066 L 49.2013,6.97169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.2013,6.97169 L 17.6184,25.2066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 48.1109,16.0236 L 26.0029,28.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 17.6184,25.2066 L 17.6184,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 49.2013,79.9113 L 17.6184,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 48.1109,70.8594 L 26.0029,58.0949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.568 109.192\\nQ 107.568 106.712, 108.793 105.326\\nQ 110.018 103.94, 112.309 103.94\\nQ 114.599 103.94, 115.824 105.326\\nQ 117.05 106.712, 117.05 109.192\\nQ 117.05 111.701, 115.81 113.13\\nQ 114.57 114.545, 112.309 114.545\\nQ 110.033 114.545, 108.793 113.13\\nQ 107.568 111.715, 107.568 109.192\\nM 112.309 113.378\\nQ 113.884 113.378, 114.73 112.328\\nQ 115.591 111.263, 115.591 109.192\\nQ 115.591 107.164, 114.73 106.143\\nQ 113.884 105.107, 112.309 105.107\\nQ 110.733 105.107, 109.872 106.128\\nQ 109.026 107.149, 109.026 109.192\\nQ 109.026 111.278, 109.872 112.328\\nQ 110.733 113.378, 112.309 113.378\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 117.531 105.626\\nL 121.065 105.626\\nL 121.065 106.396\\nL 117.531 106.396\\nL 117.531 105.626\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 110.067 74.8225\\nL 113.451 80.293\\nQ 113.787 80.8328, 114.327 81.8102\\nQ 114.866 82.7875, 114.896 82.8459\\nL 114.896 74.8225\\nL 116.267 74.8225\\nL 116.267 85.1508\\nL 114.852 85.1508\\nL 111.219 79.1697\\nQ 110.796 78.4695, 110.344 77.6672\\nQ 109.906 76.8649, 109.775 76.6169\\nL 109.775 85.1508\\nL 108.433 85.1508\\nL 108.433 74.8225\\nL 110.067 74.8225\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 117.133 76.6843\\nL 118.953 76.6843\\nL 118.953 74.7683\\nL 119.762 74.7683\\nL 119.762 76.6843\\nL 121.63 76.6843\\nL 121.63 77.3775\\nL 119.762 77.3775\\nL 119.762 79.3031\\nL 118.953 79.3031\\nL 118.953 77.3775\\nL 117.133 77.3775\\nL 117.133 76.6843\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 132.899 65.4717\\nQ 132.899 62.9917, 134.125 61.6059\\nQ 135.35 60.22, 137.641 60.22\\nQ 139.931 60.22, 141.156 61.6059\\nQ 142.382 62.9917, 142.382 65.4717\\nQ 142.382 67.9808, 141.142 69.4104\\nQ 139.902 70.8255, 137.641 70.8255\\nQ 135.365 70.8255, 134.125 69.4104\\nQ 132.899 67.9954, 132.899 65.4717\\nM 137.641 69.6584\\nQ 139.216 69.6584, 140.062 68.6081\\nQ 140.923 67.5432, 140.923 65.4717\\nQ 140.923 63.444, 140.062 62.4228\\nQ 139.216 61.3871, 137.641 61.3871\\nQ 136.065 61.3871, 135.204 62.4082\\nQ 134.358 63.4294, 134.358 65.4717\\nQ 134.358 67.5578, 135.204 68.6081\\nQ 136.065 69.6584, 137.641 69.6584\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 103.77 5.45455\\nL 107.154 10.925\\nQ 107.49 11.4648, 108.029 12.4422\\nQ 108.569 13.4196, 108.598 13.4779\\nL 108.598 5.45455\\nL 109.97 5.45455\\nL 109.97 15.7828\\nL 108.555 15.7828\\nL 104.922 9.80175\\nQ 104.499 9.10153, 104.047 8.29919\\nQ 103.609 7.49685, 103.478 7.24886\\nL 103.478 15.7828\\nL 102.136 15.7828\\nL 102.136 5.45455\\nL 103.77 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 111.21 5.45455\\nL 112.61 5.45455\\nL 112.61 9.84551\\nL 117.891 9.84551\\nL 117.891 5.45455\\nL 119.291 5.45455\\nL 119.291 15.7828\\nL 117.891 15.7828\\nL 117.891 11.0125\\nL 112.61 11.0125\\nL 112.61 15.7828\\nL 111.21 15.7828\\nL 111.21 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 119.792 15.4204\\nQ 120.042 14.7754, 120.639 14.4191\\nQ 121.236 14.0532, 122.064 14.0532\\nQ 123.094 14.0532, 123.672 14.6117\\nQ 124.25 15.1701, 124.25 16.1618\\nQ 124.25 17.1727, 123.499 18.1163\\nQ 122.757 19.0598, 121.217 20.1767\\nL 124.365 20.1767\\nL 124.365 20.9469\\nL 119.773 20.9469\\nL 119.773 20.3018\\nQ 121.044 19.3968, 121.795 18.7228\\nQ 122.555 18.0489, 122.921 17.4423\\nQ 123.287 16.8358, 123.287 16.2099\\nQ 123.287 15.5552, 122.96 15.1894\\nQ 122.632 14.8235, 122.064 14.8235\\nQ 121.515 14.8235, 121.15 15.0449\\nQ 120.784 15.2664, 120.524 15.7574\\nL 119.792 15.4204\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 155, "data-ID": 782, "data-Solubility": -1.96, "data-SMILES": "O=N(=O)c(c(N)ccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: 2-nitroaniline<br><strong>SMILES</strong>: O=N(=O)c(c(N)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.96</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.63,87.5179 L 129.061,81.4165' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.061,81.4165 L 118.492,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.492,75.315 L 118.492,37.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.992,69.69 L 110.992,43.44' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 118.492,75.315 L 86.0174,94.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.492,37.815 L 86.0174,19.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.0174,19.065 L 53.5424,37.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.8962,28.3726 L 62.1637,41.4976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.5424,37.815 L 53.5424,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 53.5424,75.315 L 42.9399,81.4359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 42.9399,81.4359 L 32.3374,87.5569' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 86.0174,94.065 L 53.5424,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 84.8962,84.7574 L 62.1637,71.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 140.38 90.6825\\nQ 140.38 88.0425, 141.61 86.6625\\nQ 142.855 85.2675, 145.21 85.2675\\nQ 147.4 85.2675, 148.57 86.8125\\nL 147.58 87.6225\\nQ 146.725 86.4975, 145.21 86.4975\\nQ 143.605 86.4975, 142.75 87.5775\\nQ 141.91 88.6425, 141.91 90.6825\\nQ 141.91 92.7825, 142.78 93.8625\\nQ 143.665 94.9425, 145.375 94.9425\\nQ 146.545 94.9425, 147.91 94.2375\\nL 148.33 95.3625\\nQ 147.775 95.7225, 146.935 95.9325\\nQ 146.095 96.1425, 145.165 96.1425\\nQ 142.855 96.1425, 141.61 94.7325\\nQ 140.38 93.3225, 140.38 90.6825\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 149.86 84.6225\\nL 151.24 84.6225\\nL 151.24 96.0075\\nL 149.86 96.0075\\nL 149.86 84.6225\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 8.7601 85.005\\nL 10.2001 85.005\\nL 10.2001 89.52\\nL 15.6301 89.52\\nL 15.6301 85.005\\nL 17.0701 85.005\\nL 17.0701 95.625\\nL 15.6301 95.625\\nL 15.6301 90.72\\nL 10.2001 90.72\\nL 10.2001 95.625\\nL 8.7601 95.625\\nL 8.7601 85.005\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 17.5849 95.2524\\nQ 17.8423 94.5891, 18.4561 94.2228\\nQ 19.0699 93.8466, 19.9213 93.8466\\nQ 20.9806 93.8466, 21.5746 94.4208\\nQ 22.1686 94.995, 22.1686 96.0147\\nQ 22.1686 97.0542, 21.3964 98.0244\\nQ 20.6341 98.9946, 19.0501 100.143\\nL 22.2874 100.143\\nL 22.2874 100.935\\nL 17.5651 100.935\\nL 17.5651 100.272\\nQ 18.8719 99.3411, 19.6441 98.6481\\nQ 20.4262 97.9551, 20.8024 97.3314\\nQ 21.1786 96.7077, 21.1786 96.0642\\nQ 21.1786 95.391, 20.842 95.0148\\nQ 20.5054 94.6386, 19.9213 94.6386\\nQ 19.357 94.6386, 18.9808 94.8663\\nQ 18.6046 95.094, 18.3373 95.5989\\nL 17.5849 95.2524\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 25.2124 85.005\\nL 28.6924 90.63\\nQ 29.0374 91.185, 29.5924 92.19\\nQ 30.1474 93.195, 30.1774 93.255\\nL 30.1774 85.005\\nL 31.5874 85.005\\nL 31.5874 95.625\\nL 30.1324 95.625\\nL 26.3974 89.475\\nQ 25.9624 88.755, 25.4974 87.93\\nQ 25.0474 87.105, 24.9124 86.85\\nL 24.9124 95.625\\nL 23.5324 95.625\\nL 23.5324 85.005\\nL 25.2124 85.005\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 156, "data-ID": 787, "data-Solubility": -1.37, "data-SMILES": "Clc(cccc1N)c1", "mols2grid-tooltip": "<strong>Name</strong>: 3-chloroaniline<br><strong>SMILES</strong>: Clc(cccc1N)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.37</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.159,96.9921 L 136.266,92.4349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.266,92.4349 L 128.373,87.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 146.952,92.1562 L 140.242,88.2826' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 140.242,88.2826 L 133.533,84.4089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.367,101.828 L 134.658,97.9544' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.658,97.9544 L 127.949,94.0808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.373,87.8777 L 104.179,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 104.179,73.91 L 104.179,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.595,69.7219 L 98.595,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-12' d='M 104.179,73.91 L 80,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.179,45.9895 L 80,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 104.179,45.9895 L 112.048,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 112.048,41.4467 L 119.917,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80,32.0293 L 55.8209,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.1652,38.9592 L 62.2398,48.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80,32.0293 L 80,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80,23.3097 L 80,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.8209,45.9895 L 55.8209,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 55.8209,45.9895 L 46.6844,40.7149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 46.6844,40.7149 L 37.5479,35.4403' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 55.8209,73.91 L 31.6268,87.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 80,87.8702 L 55.8209,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 79.1652,80.9403 L 62.2398,71.1681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 31.6268,87.8777 L 23.7337,92.4349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 23.7337,92.4349 L 15.8406,96.9921' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 26.4668,84.4089 L 19.7576,88.2826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 19.7576,88.2826 L 13.0485,92.1562' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.051,94.0808 L 25.3418,97.9544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.3418,97.9544 L 18.6327,101.828' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 80,87.8702 L 80,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 80,96.8802 L 80,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.969 95.0923\\nL 148.56 99.2804\\nQ 148.817 99.6936, 149.23 100.442\\nQ 149.643 101.19, 149.665 101.235\\nL 149.665 95.0923\\nL 150.715 95.0923\\nL 150.715 102.999\\nL 149.632 102.999\\nL 146.851 98.4204\\nQ 146.527 97.8844, 146.181 97.2701\\nQ 145.846 96.6559, 145.745 96.466\\nL 145.745 102.999\\nL 144.718 102.999\\nL 144.718 95.0923\\nL 145.969 95.0923\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 10.5357 95.0923\\nL 13.1267 99.2804\\nQ 13.3836 99.6936, 13.7968 100.442\\nQ 14.21 101.19, 14.2324 101.235\\nL 14.2324 95.0923\\nL 15.2822 95.0923\\nL 15.2822 102.999\\nL 14.1989 102.999\\nL 11.418 98.4204\\nQ 11.0941 97.8844, 10.7479 97.2701\\nQ 10.4129 96.6559, 10.3123 96.466\\nL 10.3123 102.999\\nL 9.28486 102.999\\nL 9.28486 95.0923\\nL 10.5357 95.0923\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 28.9037 35.0949\\nQ 28.9037 33.1293, 29.8194 32.1019\\nQ 30.7464 31.0632, 32.4998 31.0632\\nQ 34.1304 31.0632, 35.0015 32.2135\\nL 34.2644 32.8166\\nQ 33.6278 31.979, 32.4998 31.979\\nQ 31.3048 31.979, 30.6682 32.7831\\nQ 30.0428 33.5761, 30.0428 35.0949\\nQ 30.0428 36.6585, 30.6906 37.4626\\nQ 31.3495 38.2667, 32.6227 38.2667\\nQ 33.4938 38.2667, 34.5101 37.7418\\nL 34.8228 38.5794\\nQ 34.4096 38.8474, 33.7842 39.0038\\nQ 33.1587 39.1602, 32.4663 39.1602\\nQ 30.7464 39.1602, 29.8194 38.1103\\nQ 28.9037 37.0605, 28.9037 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 35.962 30.583\\nL 36.9894 30.583\\nL 36.9894 39.0596\\nL 35.962 39.0596\\nL 35.962 30.583\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 76.9511 9.9665\\nQ 76.9511 8.00089, 77.8669 6.97342\\nQ 78.7938 5.93478, 80.5472 5.93478\\nQ 82.1778 5.93478, 83.0489 7.0851\\nL 82.3118 7.68818\\nQ 81.6752 6.85057, 80.5472 6.85057\\nQ 79.3522 6.85057, 78.7157 7.65468\\nQ 78.0902 8.44762, 78.0902 9.9665\\nQ 78.0902 11.53, 78.738 12.3342\\nQ 79.3969 13.1383, 80.6701 13.1383\\nQ 81.5412 13.1383, 82.5575 12.6134\\nL 82.8702 13.451\\nQ 82.457 13.719, 81.8316 13.8754\\nQ 81.2062 14.0317, 80.5137 14.0317\\nQ 78.7938 14.0317, 77.8669 12.9819\\nQ 76.9511 11.9321, 76.9511 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 84.0094 5.45455\\nL 85.0369 5.45455\\nL 85.0369 13.9312\\nL 84.0094 13.9312\\nL 84.0094 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 120.475 35.0949\\nQ 120.475 33.1293, 121.391 32.1019\\nQ 122.318 31.0632, 124.072 31.0632\\nQ 125.702 31.0632, 126.573 32.2135\\nL 125.836 32.8166\\nQ 125.2 31.979, 124.072 31.979\\nQ 122.877 31.979, 122.24 32.7831\\nQ 121.615 33.5761, 121.615 35.0949\\nQ 121.615 36.6585, 122.262 37.4626\\nQ 122.921 38.2667, 124.194 38.2667\\nQ 125.066 38.2667, 126.082 37.7418\\nL 126.395 38.5794\\nQ 125.981 38.8474, 125.356 39.0038\\nQ 124.73 39.1602, 124.038 39.1602\\nQ 122.318 39.1602, 121.391 38.1103\\nQ 120.475 37.0605, 120.475 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 127.534 30.583\\nL 128.561 30.583\\nL 128.561 39.0596\\nL 127.534 39.0596\\nL 127.534 30.583\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 76.9511 110.48\\nQ 76.9511 108.515, 77.8669 107.487\\nQ 78.7938 106.449, 80.5472 106.449\\nQ 82.1778 106.449, 83.0489 107.599\\nL 82.3118 108.202\\nQ 81.6752 107.364, 80.5472 107.364\\nQ 79.3522 107.364, 78.7157 108.168\\nQ 78.0902 108.961, 78.0902 110.48\\nQ 78.0902 112.044, 78.738 112.848\\nQ 79.3969 113.652, 80.6701 113.652\\nQ 81.5412 113.652, 82.5575 113.127\\nL 82.8702 113.965\\nQ 82.457 114.233, 81.8316 114.389\\nQ 81.2062 114.545, 80.5137 114.545\\nQ 78.7938 114.545, 77.8669 113.496\\nQ 76.9511 112.446, 76.9511 110.48\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 84.0094 105.968\\nL 85.0369 105.968\\nL 85.0369 114.445\\nL 84.0094 114.445\\nL 84.0094 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 157, "data-ID": 792, "data-Solubility": -5.64, "data-SMILES": "N#Cc(c(c(c(c1C#N)Cl)Cl)Cl)c1Cl", "mols2grid-tooltip": "<strong>Name</strong>: chlorothalonil<br><strong>SMILES</strong>: N#Cc(c(c(c(c1C#N)Cl)Cl)Cl)c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.64</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.941,87.6737 L 131.197,84.9352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.197,84.9352 L 126.454,82.1967' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.316,78.1677 L 124.316,71.1765' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.316,71.1765 L 124.316,64.1854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-1' d='M 109.787,89.3514 L 115.941,85.7984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-1' d='M 115.941,85.7984 L 122.095,82.2453' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 125.155,62.7324 L 108.948,57.2497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.477,65.6383 L 110.626,54.3438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.787,55.7967 L 109.787,39.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-10' d='M 109.787,55.7967 L 95.2579,64.1854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.787,39.0104 L 124.303,30.5982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.282,34.8454 L 120.443,28.9569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 95.2445,30.6441 L 109.787,39.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 124.303,30.5982 L 124.276,13.8209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.276,13.8209 L 109.733,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 120.421,15.4744 L 110.242,9.618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 109.733,5.45455 L 95.2176,13.8667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 95.2176,13.8667 L 95.2445,30.6441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 98.5771,16.378 L 98.5959,28.1221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 96.0967,62.7324 L 91.5428,60.1034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 91.5428,60.1034 L 86.9889,57.4743' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 94.4191,65.6384 L 89.8651,63.0093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8651,63.0093 L 85.3112,60.3803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 95.2579,64.1854 L 95.2579,80.9628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 95.2579,80.9628 L 80.7209,89.3559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-12 atom-23' d='M 94.419,82.4157 L 110.626,87.8985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-12 atom-23' d='M 96.0968,79.5098 L 108.948,90.8044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.7209,89.3559 L 66.176,80.9907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 76.8662,91.0099 L 66.6848,85.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-13' d='M 80.7466,106.133 L 80.7209,89.3559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 66.176,80.9907 L 51.6602,89.4029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 51.6602,89.4029 L 37.1098,81.0321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-15 atom-20' d='M 51.6602,89.4029 L 51.6871,106.18' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-15 atom-20' d='M 55.0197,91.9141 L 55.0385,103.658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 37.1098,81.0321 L 37.0977,75.6768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 37.0977,75.6768 L 37.0857,70.3214' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 37.1098,81.0321 L 32.1784,83.8919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 32.1784,83.8919 L 27.2469,86.7516' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 37.1098,81.0321 L 32.1649,78.1911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 32.1649,78.1911 L 27.2201,75.3502' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 51.6871,106.18 L 66.2297,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.2297,114.545 L 80.7466,106.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.7249,110.38 L 76.8867,104.492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 123.266 78.5871\\nL 124.823 81.1037\\nQ 124.977 81.352, 125.226 81.8016\\nQ 125.474 82.2513, 125.487 82.2781\\nL 125.487 78.5871\\nL 126.118 78.5871\\nL 126.118 83.3384\\nL 125.467 83.3384\\nL 123.796 80.5869\\nQ 123.602 80.2648, 123.394 79.8957\\nQ 123.192 79.5266, 123.132 79.4125\\nL 123.132 83.3384\\nL 122.514 83.3384\\nL 122.514 78.5871\\nL 123.266 78.5871\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 81.4524 57.4879\\nQ 81.4524 56.347, 82.0161 55.7095\\nQ 82.5798 55.0719, 83.6334 55.0719\\nQ 84.687 55.0719, 85.2508 55.7095\\nQ 85.8145 56.347, 85.8145 57.4879\\nQ 85.8145 58.6422, 85.244 59.2998\\nQ 84.6736 59.9508, 83.6334 59.9508\\nQ 82.5865 59.9508, 82.0161 59.2998\\nQ 81.4524 58.6489, 81.4524 57.4879\\nM 83.6334 59.4139\\nQ 84.3582 59.4139, 84.7474 58.9307\\nQ 85.1434 58.4408, 85.1434 57.4879\\nQ 85.1434 56.555, 84.7474 56.0853\\nQ 84.3582 55.6088, 83.6334 55.6088\\nQ 82.9086 55.6088, 82.5127 56.0786\\nQ 82.1235 56.5483, 82.1235 57.4879\\nQ 82.1235 58.4475, 82.5127 58.9307\\nQ 82.9086 59.4139, 83.6334 59.4139\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 35.6669 65.2345\\nL 38.4922 65.2345\\nL 38.4922 65.7781\\nL 36.3045 65.7781\\nL 36.3045 67.221\\nL 38.2506 67.221\\nL 38.2506 67.7713\\nL 36.3045 67.7713\\nL 36.3045 69.9859\\nL 35.6669 69.9859\\nL 35.6669 65.2345\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 24.0861 85.3897\\nL 26.9114 85.3897\\nL 26.9114 85.9333\\nL 24.7236 85.9333\\nL 24.7236 87.3762\\nL 26.6698 87.3762\\nL 26.6698 87.9265\\nL 24.7236 87.9265\\nL 24.7236 90.1411\\nL 24.0861 90.1411\\nL 24.0861 85.3897\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 24.0592 71.9701\\nL 26.8845 71.9701\\nL 26.8845 72.5137\\nL 24.6968 72.5137\\nL 24.6968 73.9565\\nL 26.6429 73.9565\\nL 26.6429 74.5068\\nL 24.6968 74.5068\\nL 24.6968 76.7214\\nL 24.0592 76.7214\\nL 24.0592 71.9701\\n' fill='#33CCCC'/>\\n</svg>\\n", "mols2grid-id": 158, "data-ID": 797, "data-Solubility": -4.44, "data-SMILES": "CN1C=C(c2ccccc2)C(=O)C(c3cc(C(F)(F)F)ccc3)=C1", "mols2grid-tooltip": "<strong>Name</strong>: fluridone<br><strong>SMILES</strong>: CN1C=C(c2ccccc2)C(=O)C(c3cc(C(F)(F)F)ccc3)=C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.44</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.383,114.545 L 135.411,94.5125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.411,94.5125 L 113.739,81.9402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.49,79.7694 L 105.685,83.6827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.685,83.6827 L 98.8798,87.5959' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.987,84.111 L 108.182,88.0243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 108.182,88.0243 L 101.376,91.9375' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.739,81.9402 L 113.754,71.4991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.754,71.4991 L 113.769,61.0579' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.46,54.9623 L 101.281,49.6379' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 101.281,49.6379 L 92.1016,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.1016,44.3134 L 92.1016,19.2722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 87.0933,40.5572 L 87.0933,23.0284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-5' d='M 70.4159,56.834 L 92.1016,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 92.1016,19.2722 L 70.4159,6.75168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.4159,6.75168 L 48.7303,19.2722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.6672,12.967 L 54.4873,21.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 48.7303,19.2722 L 40.536,14.5416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.536,14.5416 L 32.3417,9.81094' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 48.7303,19.2722 L 48.7303,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 48.7303,44.3134 L 40.536,49.044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 40.536,49.044 L 32.3417,53.7747' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 48.7303,44.3134 L 70.4159,56.834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 54.4873,41.8543 L 69.6672,50.6187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 93.1166 91.9467\\nQ 93.1166 90.2439, 93.9579 89.2923\\nQ 94.7993 88.3407, 96.3719 88.3407\\nQ 97.9445 88.3407, 98.7859 89.2923\\nQ 99.6272 90.2439, 99.6272 91.9467\\nQ 99.6272 93.6695, 98.7758 94.6511\\nQ 97.9245 95.6227, 96.3719 95.6227\\nQ 94.8093 95.6227, 93.9579 94.6511\\nQ 93.1166 93.6795, 93.1166 91.9467\\nM 96.3719 94.8214\\nQ 97.4537 94.8214, 98.0346 94.1002\\nQ 98.6256 93.369, 98.6256 91.9467\\nQ 98.6256 90.5544, 98.0346 89.8532\\nQ 97.4537 89.142, 96.3719 89.142\\nQ 95.2901 89.142, 94.6992 89.8432\\nQ 94.1182 90.5444, 94.1182 91.9467\\nQ 94.1182 93.379, 94.6992 94.1002\\nQ 95.2901 94.8214, 96.3719 94.8214\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 112.208 53.3399\\nL 114.532 57.0961\\nQ 114.762 57.4667, 115.133 58.1378\\nQ 115.503 58.8089, 115.523 58.8489\\nL 115.523 53.3399\\nL 116.465 53.3399\\nL 116.465 60.4315\\nL 115.493 60.4315\\nL 112.999 56.3248\\nQ 112.709 55.844, 112.398 55.2931\\nQ 112.098 54.7422, 112.008 54.5719\\nL 112.008 60.4315\\nL 111.086 60.4315\\nL 111.086 53.3399\\nL 112.208 53.3399\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 117.316 53.3399\\nL 118.278 53.3399\\nL 118.278 56.3548\\nL 121.904 56.3548\\nL 121.904 53.3399\\nL 122.865 53.3399\\nL 122.865 60.4315\\nL 121.904 60.4315\\nL 121.904 57.1562\\nL 118.278 57.1562\\nL 118.278 60.4315\\nL 117.316 60.4315\\nL 117.316 53.3399\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 24.589 9.50119\\nQ 24.589 7.7383, 25.4103 6.81678\\nQ 26.2417 5.88525, 27.8143 5.88525\\nQ 29.2767 5.88525, 30.0579 6.91695\\nL 29.3969 7.45784\\nQ 28.8259 6.7066, 27.8143 6.7066\\nQ 26.7425 6.7066, 26.1716 7.42779\\nQ 25.6106 8.13896, 25.6106 9.50119\\nQ 25.6106 10.9035, 26.1916 11.6247\\nQ 26.7826 12.3459, 27.9244 12.3459\\nQ 28.7057 12.3459, 29.6172 11.8751\\nL 29.8977 12.6263\\nQ 29.5271 12.8667, 28.9661 13.007\\nQ 28.4052 13.1472, 27.7842 13.1472\\nQ 26.2417 13.1472, 25.4103 12.2056\\nQ 24.589 11.2641, 24.589 9.50119\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 30.9194 5.45455\\nL 31.8409 5.45455\\nL 31.8409 13.057\\nL 30.9194 13.057\\nL 30.9194 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 24.589 54.5753\\nQ 24.589 52.8124, 25.4103 51.8908\\nQ 26.2417 50.9593, 27.8143 50.9593\\nQ 29.2767 50.9593, 30.0579 51.991\\nL 29.3969 52.5319\\nQ 28.8259 51.7807, 27.8143 51.7807\\nQ 26.7425 51.7807, 26.1716 52.5018\\nQ 25.6106 53.213, 25.6106 54.5753\\nQ 25.6106 55.9776, 26.1916 56.6987\\nQ 26.7826 57.4199, 27.9244 57.4199\\nQ 28.7057 57.4199, 29.6172 56.9492\\nL 29.8977 57.7004\\nQ 29.5271 57.9408, 28.9661 58.081\\nQ 28.4052 58.2212, 27.7842 58.2212\\nQ 26.2417 58.2212, 25.4103 57.2797\\nQ 24.589 56.3382, 24.589 54.5753\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 30.9194 50.5286\\nL 31.8409 50.5286\\nL 31.8409 58.1311\\nL 30.9194 58.1311\\nL 30.9194 50.5286\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 159, "data-ID": 802, "data-Solubility": -3.0, "data-SMILES": "CCC(=O)Nc1ccc(Cl)c(Cl)c1", "mols2grid-tooltip": "<strong>Name</strong>: propanil<br><strong>SMILES</strong>: CCC(=O)Nc1ccc(Cl)c(Cl)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: black\\">-3.0</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.356,39.9338 L 117.414,48.587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.414,48.587 L 98.6907,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.6907,37.8287 L 98.6907,16.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.3741,34.5913 L 94.3741,19.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-2' d='M 80,48.6201 L 98.6907,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.6907,16.2459 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80,5.45455 L 61.3093,16.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.3547,10.8115 L 66.2712,18.3655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.3093,16.2459 L 61.3093,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.3093,37.8287 L 42.5855,48.5885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 61.3093,37.8287 L 80,48.6201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 66.2712,35.7092 L 79.3547,43.2632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 42.5855,48.5885 L 27.6445,39.9338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80,48.6201 L 80.0186,57.6193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.0186,57.6193 L 80.0372,66.6184' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 77.1867,71.879 L 69.2854,76.4813' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.2854,76.4813 L 61.3841,81.0835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-10 atom-14' d='M 82.9025,71.8591 L 90.8318,76.4224' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-10 atom-14' d='M 90.8318,76.4224 L 98.7612,80.9857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 61.3841,81.0835 L 61.4123,90.0654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 61.4123,90.0654 L 61.4404,99.0473' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 58.2144,104.563 L 52.3733,107.965' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.3733,107.965 L 46.5323,111.367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 99.8436,82.8529 L 105.694,79.4617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 105.694,79.4617 L 111.544,76.0705' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 97.6788,79.1184 L 103.529,75.7272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 103.529,75.7272 L 109.38,72.336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 98.7612,80.9857 L 98.8058,102.58' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 98.8058,102.58 L 104.894,106.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 104.894,106.083 L 110.983,109.587' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 78.6935 67.1583\\nL 80.6964 70.3957\\nQ 80.895 70.7151, 81.2144 71.2936\\nQ 81.5338 71.872, 81.5511 71.9065\\nL 81.5511 67.1583\\nL 82.3626 67.1583\\nL 82.3626 73.2705\\nL 81.5252 73.2705\\nL 79.3755 69.731\\nQ 79.1252 69.3166, 78.8576 68.8417\\nQ 78.5986 68.3669, 78.5209 68.2202\\nL 78.5209 73.2705\\nL 77.7266 73.2705\\nL 77.7266 67.1583\\nL 78.6935 67.1583\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 58.646 102.695\\nQ 58.646 101.227, 59.3712 100.407\\nQ 60.0964 99.5871, 61.4518 99.5871\\nQ 62.8072 99.5871, 63.5323 100.407\\nQ 64.2575 101.227, 64.2575 102.695\\nQ 64.2575 104.18, 63.5237 105.026\\nQ 62.7899 105.863, 61.4518 105.863\\nQ 60.105 105.863, 59.3712 105.026\\nQ 58.646 104.189, 58.646 102.695\\nM 61.4518 105.173\\nQ 62.3841 105.173, 62.8849 104.551\\nQ 63.3942 103.921, 63.3942 102.695\\nQ 63.3942 101.495, 62.8849 100.891\\nQ 62.3841 100.278, 61.4518 100.278\\nQ 60.5194 100.278, 60.01 100.882\\nQ 59.5093 101.486, 59.5093 102.695\\nQ 59.5093 103.93, 60.01 104.551\\nQ 60.5194 105.173, 61.4518 105.173\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 110.894 72.3439\\nQ 110.894 70.8763, 111.619 70.0561\\nQ 112.344 69.236, 113.699 69.236\\nQ 115.055 69.236, 115.78 70.0561\\nQ 116.505 70.8763, 116.505 72.3439\\nQ 116.505 73.8288, 115.771 74.6749\\nQ 115.037 75.5123, 113.699 75.5123\\nQ 112.353 75.5123, 111.619 74.6749\\nQ 110.894 73.8374, 110.894 72.3439\\nM 113.699 74.8216\\nQ 114.632 74.8216, 115.132 74.2\\nQ 115.642 73.5698, 115.642 72.3439\\nQ 115.642 71.1439, 115.132 70.5396\\nQ 114.632 69.9266, 113.699 69.9266\\nQ 112.767 69.9266, 112.258 70.531\\nQ 111.757 71.1353, 111.757 72.3439\\nQ 111.757 73.5784, 112.258 74.2\\nQ 112.767 74.8216, 113.699 74.8216\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 111.414 111.403\\nQ 111.414 109.884, 112.122 109.089\\nQ 112.839 108.286, 114.194 108.286\\nQ 115.455 108.286, 116.128 109.176\\nL 115.558 109.642\\nQ 115.066 108.994, 114.194 108.994\\nQ 113.271 108.994, 112.778 109.616\\nQ 112.295 110.229, 112.295 111.403\\nQ 112.295 112.612, 112.796 113.233\\nQ 113.305 113.855, 114.289 113.855\\nQ 114.963 113.855, 115.748 113.449\\nL 115.99 114.097\\nQ 115.671 114.304, 115.187 114.425\\nQ 114.704 114.545, 114.168 114.545\\nQ 112.839 114.545, 112.122 113.734\\nQ 111.414 112.922, 111.414 111.403\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 116.871 107.915\\nL 117.665 107.915\\nL 117.665 114.468\\nL 116.871 114.468\\nL 116.871 107.915\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 160, "data-ID": 807, "data-Solubility": -3.26, "data-SMILES": "CCc1cccc(CC)c1N(COC)C(=O)CCl", "mols2grid-tooltip": "<strong>Name</strong>: alachlor<br><strong>SMILES</strong>: CCc1cccc(CC)c1N(COC)C(=O)CCl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.26</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.52,64.6987 L 73.505,49.7062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 73.505,49.7062 L 84.42,56.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.42,56.0039 L 95.335,62.3015' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 96.49 68.3587\\nQ 96.61 68.4037, 97.105 68.6137\\nQ 97.6 68.8237, 98.14 68.9587\\nQ 98.695 69.0787, 99.235 69.0787\\nQ 100.24 69.0787, 100.825 68.5987\\nQ 101.41 68.1037, 101.41 67.2487\\nQ 101.41 66.6637, 101.11 66.3037\\nQ 100.825 65.9437, 100.375 65.7487\\nQ 99.925 65.5537, 99.175 65.3287\\nQ 98.23 65.0437, 97.66 64.7737\\nQ 97.105 64.5037, 96.7 63.9337\\nQ 96.31 63.3637, 96.31 62.4037\\nQ 96.31 61.0687, 97.21 60.2437\\nQ 98.125 59.4187, 99.925 59.4187\\nQ 101.155 59.4187, 102.55 60.0037\\nL 102.205 61.1587\\nQ 100.93 60.6337, 99.97 60.6337\\nQ 98.935 60.6337, 98.365 61.0687\\nQ 97.795 61.4887, 97.81 62.2237\\nQ 97.81 62.7937, 98.095 63.1387\\nQ 98.395 63.4837, 98.815 63.6787\\nQ 99.25 63.8737, 99.97 64.0987\\nQ 100.93 64.3987, 101.5 64.6987\\nQ 102.07 64.9987, 102.475 65.6137\\nQ 102.895 66.2137, 102.895 67.2487\\nQ 102.895 68.7187, 101.905 69.5137\\nQ 100.93 70.2937, 99.295 70.2937\\nQ 98.35 70.2937, 97.63 70.0837\\nQ 96.925 69.8887, 96.085 69.5437\\nL 96.49 68.3587\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 104.17 59.3887\\nL 105.61 59.3887\\nL 105.61 63.9037\\nL 111.04 63.9037\\nL 111.04 59.3887\\nL 112.48 59.3887\\nL 112.48 70.0087\\nL 111.04 70.0087\\nL 111.04 65.1037\\nL 105.61 65.1037\\nL 105.61 70.0087\\nL 104.17 70.0087\\nL 104.17 59.3887\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 161, "data-ID": 812, "data-Solubility": -0.6, "data-SMILES": "CCS", "mols2grid-tooltip": "<strong>Name</strong>: ethanethiol<br><strong>SMILES</strong>: CCS<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 66.4899,77.0848 L 77.0936,70.9668' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0936,70.9668 L 87.6974,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.8233,68.0969 L 96.7383,74.3945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7383,74.3945 L 107.653,80.6921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 89.5715,61.6006 L 100.486,67.8982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.486,67.8982 L 111.401,74.1958' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 87.6974,64.8487 L 87.6974,52.8787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 87.6974,52.8787 L 87.6974,40.9087' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 42.9126 74.5312\\nL 44.3526 74.5312\\nL 44.3526 79.0462\\nL 49.7826 79.0462\\nL 49.7826 74.5312\\nL 51.2226 74.5312\\nL 51.2226 85.1512\\nL 49.7826 85.1512\\nL 49.7826 80.2462\\nL 44.3526 80.2462\\nL 44.3526 85.1512\\nL 42.9126 85.1512\\nL 42.9126 74.5312\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 51.7374 84.7786\\nQ 51.9948 84.1153, 52.6086 83.749\\nQ 53.2224 83.3728, 54.0738 83.3728\\nQ 55.1331 83.3728, 55.7271 83.947\\nQ 56.3211 84.5212, 56.3211 85.5409\\nQ 56.3211 86.5804, 55.5489 87.5506\\nQ 54.7866 88.5208, 53.2026 89.6692\\nL 56.4399 89.6692\\nL 56.4399 90.4612\\nL 51.7176 90.4612\\nL 51.7176 89.7979\\nQ 53.0244 88.8673, 53.7966 88.1743\\nQ 54.5787 87.4813, 54.9549 86.8576\\nQ 55.3311 86.2339, 55.3311 85.5904\\nQ 55.3311 84.9172, 54.9945 84.541\\nQ 54.6579 84.1648, 54.0738 84.1648\\nQ 53.5095 84.1648, 53.1333 84.3925\\nQ 52.7571 84.6202, 52.4898 85.1251\\nL 51.7374 84.7786\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 59.3649 74.5312\\nL 62.8449 80.1562\\nQ 63.1899 80.7112, 63.7449 81.7162\\nQ 64.2999 82.7212, 64.3299 82.7812\\nL 64.3299 74.5312\\nL 65.7399 74.5312\\nL 65.7399 85.1512\\nL 64.2849 85.1512\\nL 60.5499 79.0012\\nQ 60.1149 78.2812, 59.6499 77.4562\\nQ 59.1999 76.6312, 59.0649 76.3762\\nL 59.0649 85.1512\\nL 57.6849 85.1512\\nL 57.6849 74.5312\\nL 59.3649 74.5312\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 110.682 83.4862\\nQ 110.802 83.5312, 111.297 83.7412\\nQ 111.792 83.9512, 112.332 84.0862\\nQ 112.887 84.2062, 113.427 84.2062\\nQ 114.432 84.2062, 115.017 83.7262\\nQ 115.602 83.2312, 115.602 82.3762\\nQ 115.602 81.7912, 115.302 81.4312\\nQ 115.017 81.0712, 114.567 80.8762\\nQ 114.117 80.6812, 113.367 80.4562\\nQ 112.422 80.1712, 111.852 79.9012\\nQ 111.297 79.6312, 110.892 79.0612\\nQ 110.502 78.4912, 110.502 77.5312\\nQ 110.502 76.1962, 111.402 75.3712\\nQ 112.317 74.5462, 114.117 74.5462\\nQ 115.347 74.5462, 116.742 75.1312\\nL 116.397 76.2862\\nQ 115.122 75.7612, 114.162 75.7612\\nQ 113.127 75.7612, 112.557 76.1962\\nQ 111.987 76.6162, 112.002 77.3512\\nQ 112.002 77.9212, 112.287 78.2662\\nQ 112.587 78.6112, 113.007 78.8062\\nQ 113.442 79.0012, 114.162 79.2262\\nQ 115.122 79.5262, 115.692 79.8262\\nQ 116.262 80.1262, 116.667 80.7412\\nQ 117.087 81.3412, 117.087 82.3762\\nQ 117.087 83.8462, 116.097 84.6412\\nQ 115.122 85.4212, 113.487 85.4212\\nQ 112.542 85.4212, 111.822 85.2112\\nQ 111.117 85.0162, 110.277 84.6712\\nL 110.682 83.4862\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 85.3499 29.5387\\nL 88.8299 35.1638\\nQ 89.1749 35.7188, 89.7299 36.7237\\nQ 90.2849 37.7287, 90.3149 37.7888\\nL 90.3149 29.5387\\nL 91.7249 29.5387\\nL 91.7249 40.1587\\nL 90.2699 40.1587\\nL 86.5349 34.0087\\nQ 86.0999 33.2888, 85.6349 32.4637\\nQ 85.1849 31.6387, 85.0499 31.3837\\nL 85.0499 40.1587\\nL 83.6699 40.1587\\nL 83.6699 29.5387\\nL 85.3499 29.5387\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 92.9999 29.5387\\nL 94.4399 29.5387\\nL 94.4399 34.0537\\nL 99.8699 34.0537\\nL 99.8699 29.5387\\nL 101.31 29.5387\\nL 101.31 40.1587\\nL 99.8699 40.1587\\nL 99.8699 35.2537\\nL 94.4399 35.2537\\nL 94.4399 40.1587\\nL 92.9999 40.1587\\nL 92.9999 29.5387\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 101.825 39.7861\\nQ 102.082 39.1228, 102.696 38.7565\\nQ 103.31 38.3803, 104.161 38.3803\\nQ 105.22 38.3803, 105.814 38.9545\\nQ 106.408 39.5288, 106.408 40.5485\\nQ 106.408 41.5879, 105.636 42.5581\\nQ 104.874 43.5284, 103.29 44.6767\\nL 106.527 44.6767\\nL 106.527 45.4688\\nL 101.805 45.4688\\nL 101.805 44.8055\\nQ 103.112 43.8749, 103.884 43.1818\\nQ 104.666 42.4888, 105.042 41.8651\\nQ 105.418 41.2415, 105.418 40.5979\\nQ 105.418 39.9248, 105.082 39.5485\\nQ 104.745 39.1724, 104.161 39.1724\\nQ 103.597 39.1724, 103.221 39.4001\\nQ 102.844 39.6277, 102.577 40.1326\\nL 101.825 39.7861\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 162, "data-ID": 817, "data-Solubility": 0.32, "data-SMILES": "NC(=S)N", "mols2grid-tooltip": "<strong>Name</strong>: thiourea<br><strong>SMILES</strong>: NC(=S)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.32</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 137.645,114.545 L 131.655,111.087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.655,111.087 L 125.666,107.629' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.353,102.006 L 122.347,92.821' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.347,92.821 L 122.341,83.6362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.445,85.547 L 129.433,82.0874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 129.433,82.0874 L 135.421,78.6278' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.237,81.7253 L 127.225,78.2657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.225,78.2657 L 133.213,74.8061' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 122.341,83.6362 L 114.24,78.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 114.24,78.9596 L 106.14,74.2831' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.215,68.9191 L 103.211,61.5893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.211,61.5893 L 103.207,54.2595' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.547,53.8376 L 109.351,56.6083' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.351,56.6083 L 114.156,59.379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 106.752,50.0141 L 111.556,52.7849' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 111.556,52.7849 L 116.361,55.5556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 106.754,51.0138 L 111.554,48.2401' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 111.554,48.2401 L 116.355,45.4664' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 104.545,47.1921 L 109.346,44.4184' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 109.346,44.4184 L 114.147,41.6447' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 100.648,49.0401 L 92.3648,44.2578' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 92.3648,44.2578 L 84.0812,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 84.0812,39.4755 L 84.0812,17.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 79.6674,36.1652 L 79.6674,20.7172' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 64.9698,50.5098 L 84.0812,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 84.0812,17.4069 L 64.9698,6.3726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 64.9698,6.3726 L 45.8584,17.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 64.31,11.8501 L 50.932,19.5741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 45.8584,17.4069 L 39.6189,13.8047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 39.6189,13.8047 L 33.3793,10.2026' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 45.8584,17.4069 L 45.8584,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 45.8584,39.4755 L 64.9698,50.5098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 50.932,37.3083 L 64.31,45.0323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 119.487 105.736\\nQ 119.487 104.235, 120.228 103.396\\nQ 120.97 102.558, 122.355 102.558\\nQ 123.741 102.558, 124.483 103.396\\nQ 125.224 104.235, 125.224 105.736\\nQ 125.224 107.254, 124.474 108.119\\nQ 123.724 108.975, 122.355 108.975\\nQ 120.978 108.975, 120.228 108.119\\nQ 119.487 107.263, 119.487 105.736\\nM 122.355 108.269\\nQ 123.309 108.269, 123.821 107.634\\nQ 124.342 106.989, 124.342 105.736\\nQ 124.342 104.509, 123.821 103.891\\nQ 123.309 103.264, 122.355 103.264\\nQ 121.402 103.264, 120.881 103.882\\nQ 120.369 104.5, 120.369 105.736\\nQ 120.369 106.998, 120.881 107.634\\nQ 121.402 108.269, 122.355 108.269\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 134.758 74.822\\nQ 134.758 73.3213, 135.499 72.4827\\nQ 136.241 71.6441, 137.627 71.6441\\nQ 139.013 71.6441, 139.754 72.4827\\nQ 140.496 73.3213, 140.496 74.822\\nQ 140.496 76.3403, 139.745 77.2054\\nQ 138.995 78.0617, 137.627 78.0617\\nQ 136.25 78.0617, 135.499 77.2054\\nQ 134.758 76.3491, 134.758 74.822\\nM 137.627 77.3555\\nQ 138.58 77.3555, 139.092 76.7199\\nQ 139.613 76.0755, 139.613 74.822\\nQ 139.613 73.595, 139.092 72.9771\\nQ 138.58 72.3503, 137.627 72.3503\\nQ 136.674 72.3503, 136.153 72.9682\\nQ 135.641 73.5862, 135.641 74.822\\nQ 135.641 76.0843, 136.153 76.7199\\nQ 136.674 77.3555, 137.627 77.3555\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 95.2243 69.4711\\nL 96.0718 69.4711\\nL 96.0718 72.1282\\nL 99.2673 72.1282\\nL 99.2673 69.4711\\nL 100.115 69.4711\\nL 100.115 75.7209\\nL 99.2673 75.7209\\nL 99.2673 72.8344\\nL 96.0718 72.8344\\nL 96.0718 75.7209\\nL 95.2243 75.7209\\nL 95.2243 69.4711\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 101.836 69.4711\\nL 103.884 72.7814\\nQ 104.087 73.108, 104.414 73.6994\\nQ 104.74 74.2909, 104.758 74.3262\\nL 104.758 69.4711\\nL 105.588 69.4711\\nL 105.588 75.7209\\nL 104.731 75.7209\\nL 102.533 72.1017\\nQ 102.277 71.678, 102.004 71.1925\\nQ 101.739 70.7069, 101.66 70.5569\\nL 101.66 75.7209\\nL 100.847 75.7209\\nL 100.847 69.4711\\nL 101.836 69.4711\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 101.439 52.6607\\nQ 101.509 52.6872, 101.801 52.8108\\nQ 102.092 52.9344, 102.41 53.0138\\nQ 102.736 53.0844, 103.054 53.0844\\nQ 103.646 53.0844, 103.99 52.802\\nQ 104.334 52.5107, 104.334 52.0075\\nQ 104.334 51.6632, 104.158 51.4514\\nQ 103.99 51.2395, 103.725 51.1248\\nQ 103.46 51.01, 103.019 50.8776\\nQ 102.463 50.7099, 102.127 50.551\\nQ 101.801 50.3921, 101.562 50.0566\\nQ 101.333 49.7212, 101.333 49.1562\\nQ 101.333 48.3706, 101.863 47.8851\\nQ 102.401 47.3996, 103.46 47.3996\\nQ 104.184 47.3996, 105.005 47.7438\\nL 104.802 48.4236\\nQ 104.052 48.1146, 103.487 48.1146\\nQ 102.878 48.1146, 102.542 48.3706\\nQ 102.207 48.6178, 102.216 49.0503\\nQ 102.216 49.3857, 102.383 49.5888\\nQ 102.56 49.7918, 102.807 49.9066\\nQ 103.063 50.0213, 103.487 50.1537\\nQ 104.052 50.3303, 104.387 50.5068\\nQ 104.723 50.6834, 104.961 51.0453\\nQ 105.208 51.3984, 105.208 52.0075\\nQ 105.208 52.8726, 104.626 53.3404\\nQ 104.052 53.7995, 103.09 53.7995\\nQ 102.533 53.7995, 102.11 53.6759\\nQ 101.695 53.5611, 101.2 53.3581\\nL 101.439 52.6607\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 115.629 59.3534\\nQ 115.629 57.8527, 116.37 57.0141\\nQ 117.112 56.1755, 118.498 56.1755\\nQ 119.884 56.1755, 120.625 57.0141\\nQ 121.367 57.8527, 121.367 59.3534\\nQ 121.367 60.8717, 120.616 61.7368\\nQ 119.866 62.5931, 118.498 62.5931\\nQ 117.121 62.5931, 116.37 61.7368\\nQ 115.629 60.8805, 115.629 59.3534\\nM 118.498 61.8869\\nQ 119.451 61.8869, 119.963 61.2513\\nQ 120.484 60.6069, 120.484 59.3534\\nQ 120.484 58.1264, 119.963 57.5085\\nQ 119.451 56.8817, 118.498 56.8817\\nQ 117.544 56.8817, 117.024 57.4996\\nQ 116.512 58.1175, 116.512 59.3534\\nQ 116.512 60.6157, 117.024 61.2513\\nQ 117.544 61.8869, 118.498 61.8869\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 115.622 41.7015\\nQ 115.622 40.2008, 116.363 39.3622\\nQ 117.105 38.5236, 118.49 38.5236\\nQ 119.876 38.5236, 120.618 39.3622\\nQ 121.359 40.2008, 121.359 41.7015\\nQ 121.359 43.2198, 120.609 44.0849\\nQ 119.859 44.9411, 118.49 44.9411\\nQ 117.113 44.9411, 116.363 44.0849\\nQ 115.622 43.2286, 115.622 41.7015\\nM 118.49 44.2349\\nQ 119.444 44.2349, 119.956 43.5994\\nQ 120.477 42.955, 120.477 41.7015\\nQ 120.477 40.4745, 119.956 39.8565\\nQ 119.444 39.2298, 118.49 39.2298\\nQ 117.537 39.2298, 117.016 39.8477\\nQ 116.504 40.4656, 116.504 41.7015\\nQ 116.504 42.9638, 117.016 43.5994\\nQ 117.537 44.2349, 118.49 44.2349\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 19.5042 5.45455\\nL 20.3516 5.45455\\nL 20.3516 8.1116\\nL 23.5471 8.1116\\nL 23.5471 5.45455\\nL 24.3946 5.45455\\nL 24.3946 11.7044\\nL 23.5471 11.7044\\nL 23.5471 8.8178\\nL 20.3516 8.8178\\nL 20.3516 11.7044\\nL 19.5042 11.7044\\nL 19.5042 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 24.6975 11.4851\\nQ 24.849 11.0947, 25.2102 10.8792\\nQ 25.5715 10.6578, 26.0725 10.6578\\nQ 26.6959 10.6578, 27.0455 10.9957\\nQ 27.395 11.3336, 27.395 11.9337\\nQ 27.395 12.5454, 26.9406 13.1164\\nQ 26.492 13.6874, 25.5598 14.3632\\nL 27.4649 14.3632\\nL 27.4649 14.8293\\nL 24.6859 14.8293\\nL 24.6859 14.4389\\nQ 25.4549 13.8913, 25.9094 13.4835\\nQ 26.3696 13.0756, 26.591 12.7086\\nQ 26.8124 12.3415, 26.8124 11.9628\\nQ 26.8124 11.5667, 26.6143 11.3453\\nQ 26.4162 11.1239, 26.0725 11.1239\\nQ 25.7404 11.1239, 25.519 11.2579\\nQ 25.2976 11.3919, 25.1403 11.689\\nL 24.6975 11.4851\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 29.1863 5.45455\\nL 31.2342 8.76483\\nQ 31.4373 9.09145, 31.7639 9.68289\\nQ 32.0905 10.2743, 32.1082 10.3096\\nL 32.1082 5.45455\\nL 32.9379 5.45455\\nL 32.9379 11.7044\\nL 32.0817 11.7044\\nL 29.8837 8.08512\\nQ 29.6277 7.6614, 29.354 7.1759\\nQ 29.0892 6.69039, 29.0097 6.54032\\nL 29.0097 11.7044\\nL 28.1976 11.7044\\nL 28.1976 5.45455\\nL 29.1863 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 163, "data-ID": 822, "data-Solubility": -1.66, "data-SMILES": "COC(=O)NS(=O)(=O)c1ccc(N)cc1", "mols2grid-tooltip": "<strong>Name</strong>: asulam<br><strong>SMILES</strong>: COC(=O)NS(=O)(=O)c1ccc(N)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.66</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.8048 L 16.7503,53.3366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.7503,53.3366 L 26.2279,47.8683' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.8766,47.9691 L 47.3628,54.0188' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.3628,54.0188 L 57.849,60.0685' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.2309,67.9449 L 58.2309,76.3106' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.2309,76.3106 L 58.2309,84.6763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.2134,67.9449 L 65.2134,76.3106' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.2134,76.3106 L 65.2134,84.6763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 57.6758,64.647 L 46.9481,70.8613' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 46.9481,70.8613 L 36.2204,77.0755' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 65.7516,59.9784 L 78.8656,52.4126' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 78.8656,52.4126 L 91.9796,44.8468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 30.9128,86.004 L 30.9211,97.0433' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 30.9211,97.0433 L 30.9294,108.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.9796,44.8468 L 91.9796,33.8075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.9796,33.8075 L 91.9796,22.7682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 91.9796,44.8468 L 122.237,62.3031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.237,62.3031 L 132.078,56.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 132.078,56.6253 L 141.918,50.9476' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 122.237,62.3031 L 132.074,67.9852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 132.074,67.9852 L 141.911,73.6673' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 122.237,62.3031 L 122.237,73.5693' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 122.237,73.5693 L 122.237,84.8355' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 26.9261 44.8748\\nQ 26.9261 42.5007, 28.0992 41.174\\nQ 29.2722 39.8474, 31.4647 39.8474\\nQ 33.6572 39.8474, 34.8303 41.174\\nQ 36.0033 42.5007, 36.0033 44.8748\\nQ 36.0033 47.2767, 34.8163 48.6453\\nQ 33.6293 49.9999, 31.4647 49.9999\\nQ 29.2862 49.9999, 28.0992 48.6453\\nQ 26.9261 47.2907, 26.9261 44.8748\\nM 31.4647 48.8827\\nQ 32.9729 48.8827, 33.7829 47.8772\\nQ 34.6068 46.8578, 34.6068 44.8748\\nQ 34.6068 42.9336, 33.7829 41.9561\\nQ 32.9729 40.9646, 31.4647 40.9646\\nQ 29.9565 40.9646, 29.1326 41.9421\\nQ 28.3226 42.9197, 28.3226 44.8748\\nQ 28.3226 46.8718, 29.1326 47.8772\\nQ 29.9565 48.8827, 31.4647 48.8827\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 61.4848 57.3595\\nQ 63.1745 57.3595, 64.0264 58.1275\\nQ 64.8783 58.8816, 64.8783 60.2642\\nQ 64.8783 61.6327, 63.9985 62.4148\\nQ 63.1326 63.1829, 61.4848 63.1829\\nL 59.9067 63.1829\\nL 59.9067 67.2467\\nL 58.5661 67.2467\\nL 58.5661 57.3595\\nL 61.4848 57.3595\\nM 61.4848 62.0657\\nQ 62.4484 62.0657, 62.9651 61.6048\\nQ 63.4818 61.144, 63.4818 60.2642\\nQ 63.4818 59.3844, 62.9651 58.9375\\nQ 62.4623 58.4767, 61.4848 58.4767\\nL 59.9067 58.4767\\nL 59.9067 62.0657\\nL 61.4848 62.0657\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 57.1836 90.2609\\nQ 57.1836 87.8869, 58.3566 86.5602\\nQ 59.5297 85.2335, 61.7222 85.2335\\nQ 63.9147 85.2335, 65.0877 86.5602\\nQ 66.2608 87.8869, 66.2608 90.2609\\nQ 66.2608 92.6629, 65.0738 94.0315\\nQ 63.8867 95.3861, 61.7222 95.3861\\nQ 59.5436 95.3861, 58.3566 94.0315\\nQ 57.1836 92.6769, 57.1836 90.2609\\nM 61.7222 94.2689\\nQ 63.2304 94.2689, 64.0404 93.2634\\nQ 64.8643 92.244, 64.8643 90.2609\\nQ 64.8643 88.3198, 64.0404 87.3423\\nQ 63.2304 86.3507, 61.7222 86.3507\\nQ 60.214 86.3507, 59.39 87.3283\\nQ 58.5801 88.3058, 58.5801 90.2609\\nQ 58.5801 92.2579, 59.39 93.2634\\nQ 60.214 94.2689, 61.7222 94.2689\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 26.3698 80.1806\\nQ 26.3698 77.8065, 27.5429 76.4798\\nQ 28.7159 75.1532, 30.9085 75.1532\\nQ 33.101 75.1532, 34.274 76.4798\\nQ 35.4471 77.8065, 35.4471 80.1806\\nQ 35.4471 82.5825, 34.26 83.9511\\nQ 33.073 85.3057, 30.9085 85.3057\\nQ 28.7299 85.3057, 27.5429 83.9511\\nQ 26.3698 82.5965, 26.3698 80.1806\\nM 30.9085 84.1885\\nQ 32.4167 84.1885, 33.2266 83.183\\nQ 34.0506 82.1636, 34.0506 80.1806\\nQ 34.0506 78.2394, 33.2266 77.2619\\nQ 32.4167 76.2704, 30.9085 76.2704\\nQ 29.4002 76.2704, 28.5763 77.2479\\nQ 27.7663 78.2255, 27.7663 80.1806\\nQ 27.7663 82.1775, 28.5763 83.183\\nQ 29.4002 84.1885, 30.9085 84.1885\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 87.441 16.9448\\nQ 87.441 14.5708, 88.6141 13.2441\\nQ 89.7871 11.9174, 91.9796 11.9174\\nQ 94.1721 11.9174, 95.3452 13.2441\\nQ 96.5182 14.5708, 96.5182 16.9448\\nQ 96.5182 19.3468, 95.3312 20.7154\\nQ 94.1442 22.07, 91.9796 22.07\\nQ 89.8011 22.07, 88.6141 20.7154\\nQ 87.441 19.3608, 87.441 16.9448\\nM 91.9796 20.9528\\nQ 93.4878 20.9528, 94.2978 19.9473\\nQ 95.1217 18.9278, 95.1217 16.9448\\nQ 95.1217 15.0037, 94.2978 14.0261\\nQ 93.4878 13.0346, 91.9796 13.0346\\nQ 90.4714 13.0346, 89.6475 14.0122\\nQ 88.8375 14.9897, 88.8375 16.9448\\nQ 88.8375 18.9418, 89.6475 19.9473\\nQ 90.4714 20.9528, 91.9796 20.9528\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 97.7053 12.0291\\nL 99.0459 12.0291\\nL 99.0459 16.2326\\nL 104.101 16.2326\\nL 104.101 12.0291\\nL 105.442 12.0291\\nL 105.442 21.9163\\nL 104.101 21.9163\\nL 104.101 17.3498\\nL 99.0459 17.3498\\nL 99.0459 21.9163\\nL 97.7053 21.9163\\nL 97.7053 12.0291\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 142.617 48.6872\\nQ 142.617 46.2294, 143.762 44.9446\\nQ 144.921 43.6458, 147.113 43.6458\\nQ 149.152 43.6458, 150.242 45.0842\\nL 149.32 45.8383\\nQ 148.524 44.791, 147.113 44.791\\nQ 145.619 44.791, 144.823 45.7965\\nQ 144.041 46.788, 144.041 48.6872\\nQ 144.041 50.6423, 144.851 51.6478\\nQ 145.675 52.6533, 147.267 52.6533\\nQ 148.356 52.6533, 149.627 51.9969\\nL 150.018 53.0443\\nQ 149.501 53.3794, 148.719 53.5749\\nQ 147.937 53.7705, 147.071 53.7705\\nQ 144.921 53.7705, 143.762 52.4577\\nQ 142.617 51.145, 142.617 48.6872\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 151.442 43.0454\\nL 152.727 43.0454\\nL 152.727 53.6448\\nL 151.442 53.6448\\nL 151.442 43.0454\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 142.61 76.6148\\nQ 142.61 74.157, 143.755 72.8722\\nQ 144.914 71.5735, 147.106 71.5735\\nQ 149.145 71.5735, 150.235 73.0119\\nL 149.313 73.766\\nQ 148.517 72.7186, 147.106 72.7186\\nQ 145.612 72.7186, 144.816 73.7241\\nQ 144.034 74.7156, 144.034 76.6148\\nQ 144.034 78.5699, 144.844 79.5754\\nQ 145.668 80.5809, 147.26 80.5809\\nQ 148.349 80.5809, 149.62 79.9245\\nL 150.011 80.9719\\nQ 149.494 81.3071, 148.712 81.5026\\nQ 147.93 81.6981, 147.064 81.6981\\nQ 144.914 81.6981, 143.755 80.3854\\nQ 142.61 79.0727, 142.61 76.6148\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 151.436 70.973\\nL 152.72 70.973\\nL 152.72 81.5724\\nL 151.436 81.5724\\nL 151.436 70.973\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 118.425 90.5752\\nQ 118.425 88.1173, 119.57 86.8325\\nQ 120.729 85.5338, 122.921 85.5338\\nQ 124.96 85.5338, 126.05 86.9722\\nL 125.128 87.7263\\nQ 124.332 86.6789, 122.921 86.6789\\nQ 121.427 86.6789, 120.631 87.6844\\nQ 119.849 88.6759, 119.849 90.5752\\nQ 119.849 92.5303, 120.659 93.5357\\nQ 121.483 94.5412, 123.075 94.5412\\nQ 124.164 94.5412, 125.435 93.8849\\nL 125.826 94.9322\\nQ 125.309 95.2674, 124.527 95.4629\\nQ 123.745 95.6584, 122.879 95.6584\\nQ 120.729 95.6584, 119.57 94.3457\\nQ 118.425 93.033, 118.425 90.5752\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 127.25 84.9333\\nL 128.535 84.9333\\nL 128.535 95.5327\\nL 127.25 95.5327\\nL 127.25 84.9333\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 164, "data-ID": 827, "data-Solubility": -0.22, "data-SMILES": "COP(=O)(OC)C(O)C(Cl)(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: trichlorfon<br><strong>SMILES</strong>: COP(=O)(OC)C(O)C(Cl)(Cl)Cl<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.22</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.757,112.12 L 124.766,105.515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.766,105.515 L 124.776,98.9107' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.543,93.5317 L 115.282,89.8996' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.282,89.8996 L 109.021,86.2674' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.356,84.4386 L 98.3903,87.2942' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.3903,87.2942 L 93.4242,90.1498' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.439,88.06 L 100.473,90.9156' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.473,90.9156 L 95.5066,93.7712' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 106.693,88.4135 L 106.67,95.6026' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 106.67,95.6026 L 106.647,102.792' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 106.709,81.4432 L 106.719,74.4933' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 106.719,74.4933 L 106.729,67.5434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.504,108.026 L 97.8237,111.286' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.8237,111.286 L 92.1438,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.496,62.1468 L 96.076,57.8425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 96.076,57.8425 L 88.6556,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 88.6556,53.5382 L 88.6556,32.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.4782,50.4051 L 84.4782,35.7841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-7' d='M 70.5674,63.9818 L 88.6556,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.6556,32.651 L 70.5674,22.2074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 70.5674,22.2074 L 52.4791,32.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 69.9429,27.3917 L 57.2811,34.7022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 52.4791,32.651 L 44.6493,28.1093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 44.6493,28.1093 L 36.8196,23.5675' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-13' d='M 52.4791,32.651 L 52.4791,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.4053,18.7973 L 34.4147,12.1259' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.4147,12.1259 L 34.4242,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 52.4791,53.5382 L 38.007,61.8931' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 52.4791,53.5382 L 70.5674,63.9818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 57.2811,51.487 L 69.9429,58.7975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 122.065 95.4267\\nQ 122.065 94.0064, 122.767 93.2127\\nQ 123.469 92.419, 124.781 92.419\\nQ 126.092 92.419, 126.794 93.2127\\nQ 127.496 94.0064, 127.496 95.4267\\nQ 127.496 96.8638, 126.786 97.6825\\nQ 126.076 98.493, 124.781 98.493\\nQ 123.477 98.493, 122.767 97.6825\\nQ 122.065 96.8721, 122.065 95.4267\\nM 124.781 97.8246\\nQ 125.683 97.8246, 126.168 97.223\\nQ 126.661 96.6131, 126.661 95.4267\\nQ 126.661 94.2654, 126.168 93.6806\\nQ 125.683 93.0874, 124.781 93.0874\\nQ 123.878 93.0874, 123.385 93.6722\\nQ 122.901 94.257, 122.901 95.4267\\nQ 122.901 96.6215, 123.385 97.223\\nQ 123.878 97.8246, 124.781 97.8246\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 106.562 81.9656\\nQ 107.572 81.9656, 108.082 82.4252\\nQ 108.592 82.8763, 108.592 83.7035\\nQ 108.592 84.5222, 108.065 84.9901\\nQ 107.547 85.4496, 106.562 85.4496\\nL 105.617 85.4496\\nL 105.617 87.8809\\nL 104.815 87.8809\\nL 104.815 81.9656\\nL 106.562 81.9656\\nM 106.562 84.7812\\nQ 107.138 84.7812, 107.447 84.5055\\nQ 107.756 84.2298, 107.756 83.7035\\nQ 107.756 83.1771, 107.447 82.9097\\nQ 107.146 82.634, 106.562 82.634\\nL 105.617 82.634\\nL 105.617 84.7812\\nL 106.562 84.7812\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 90.5466 95.2833\\nQ 90.6135 95.3084, 90.8892 95.4253\\nQ 91.1649 95.5423, 91.4657 95.6175\\nQ 91.7748 95.6843, 92.0756 95.6843\\nQ 92.6353 95.6843, 92.9612 95.417\\nQ 93.287 95.1413, 93.287 94.665\\nQ 93.287 94.3392, 93.1199 94.1387\\nQ 92.9612 93.9382, 92.7105 93.8296\\nQ 92.4599 93.7209, 92.0422 93.5956\\nQ 91.5158 93.4369, 91.1983 93.2865\\nQ 90.8892 93.1361, 90.6636 92.8186\\nQ 90.4464 92.5011, 90.4464 91.9664\\nQ 90.4464 91.2228, 90.9477 90.7633\\nQ 91.4573 90.3038, 92.4599 90.3038\\nQ 93.145 90.3038, 93.922 90.6296\\nL 93.7298 91.273\\nQ 93.0197 90.9805, 92.485 90.9805\\nQ 91.9085 90.9805, 91.591 91.2228\\nQ 91.2735 91.4568, 91.2819 91.8662\\nQ 91.2819 92.1836, 91.4406 92.3758\\nQ 91.6077 92.568, 91.8416 92.6766\\nQ 92.0839 92.7852, 92.485 92.9105\\nQ 93.0197 93.0776, 93.3372 93.2447\\nQ 93.6546 93.4118, 93.8802 93.7544\\nQ 94.1142 94.0886, 94.1142 94.665\\nQ 94.1142 95.4838, 93.5627 95.9266\\nQ 93.0197 96.3611, 92.109 96.3611\\nQ 91.5826 96.3611, 91.1816 96.2441\\nQ 90.7889 96.1355, 90.321 95.9433\\nL 90.5466 95.2833\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 103.921 106.245\\nQ 103.921 104.825, 104.623 104.031\\nQ 105.325 103.237, 106.637 103.237\\nQ 107.948 103.237, 108.65 104.031\\nQ 109.352 104.825, 109.352 106.245\\nQ 109.352 107.682, 108.642 108.501\\nQ 107.932 109.311, 106.637 109.311\\nQ 105.333 109.311, 104.623 108.501\\nQ 103.921 107.69, 103.921 106.245\\nM 106.637 108.643\\nQ 107.539 108.643, 108.024 108.041\\nQ 108.517 107.431, 108.517 106.245\\nQ 108.517 105.084, 108.024 104.499\\nQ 107.539 103.906, 106.637 103.906\\nQ 105.734 103.906, 105.241 104.49\\nQ 104.757 105.075, 104.757 106.245\\nQ 104.757 107.44, 105.241 108.041\\nQ 105.734 108.643, 106.637 108.643\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 104.019 64.0417\\nQ 104.019 62.6213, 104.721 61.8276\\nQ 105.422 61.0339, 106.734 61.0339\\nQ 108.046 61.0339, 108.748 61.8276\\nQ 109.45 62.6213, 109.45 64.0417\\nQ 109.45 65.4787, 108.739 66.2975\\nQ 108.029 67.1079, 106.734 67.1079\\nQ 105.431 67.1079, 104.721 66.2975\\nQ 104.019 65.4871, 104.019 64.0417\\nM 106.734 66.4395\\nQ 107.637 66.4395, 108.121 65.838\\nQ 108.614 65.2281, 108.614 64.0417\\nQ 108.614 62.8803, 108.121 62.2955\\nQ 107.637 61.7023, 106.734 61.7023\\nQ 105.832 61.7023, 105.339 62.2871\\nQ 104.854 62.872, 104.854 64.0417\\nQ 104.854 65.2364, 105.339 65.838\\nQ 105.832 66.4395, 106.734 66.4395\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 32.7295 24.1945\\nQ 32.7964 24.2196, 33.0721 24.3365\\nQ 33.3478 24.4535, 33.6486 24.5287\\nQ 33.9577 24.5955, 34.2585 24.5955\\nQ 34.8183 24.5955, 35.1441 24.3282\\nQ 35.4699 24.0525, 35.4699 23.5763\\nQ 35.4699 23.2504, 35.3028 23.0499\\nQ 35.1441 22.8494, 34.8935 22.7408\\nQ 34.6428 22.6322, 34.2251 22.5068\\nQ 33.6987 22.3481, 33.3812 22.1977\\nQ 33.0721 22.0473, 32.8465 21.7298\\nQ 32.6293 21.4123, 32.6293 20.8776\\nQ 32.6293 20.134, 33.1306 19.6745\\nQ 33.6402 19.215, 34.6428 19.215\\nQ 35.3279 19.215, 36.1049 19.5409\\nL 35.9128 20.1842\\nQ 35.2026 19.8918, 34.6679 19.8918\\nQ 34.0914 19.8918, 33.7739 20.134\\nQ 33.4564 20.368, 33.4648 20.7774\\nQ 33.4648 21.0949, 33.6235 21.287\\nQ 33.7906 21.4792, 34.0246 21.5878\\nQ 34.2668 21.6964, 34.6679 21.8217\\nQ 35.2026 21.9888, 35.5201 22.1559\\nQ 35.8376 22.323, 36.0631 22.6656\\nQ 36.2971 22.9998, 36.2971 23.5763\\nQ 36.2971 24.395, 35.7457 24.8378\\nQ 35.2026 25.2723, 34.2919 25.2723\\nQ 33.7656 25.2723, 33.3645 25.1553\\nQ 32.9718 25.0467, 32.504 24.8545\\nL 32.7295 24.1945\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 165, "data-ID": 832, "data-Solubility": -4.57, "data-SMILES": "COP(=S)(OC)Oc1ccc(SC)c(C)c1", "mols2grid-tooltip": "<strong>Name</strong>: fenthion<br><strong>SMILES</strong>: COP(=S)(OC)Oc1ccc(SC)c(C)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.57</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.01,112.184 L 131.019,105.756' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.019,105.756 L 131.028,99.3279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.882,94.0925 L 121.788,90.5573' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.788,90.5573 L 115.694,87.0221' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.181,85.242 L 105.347,88.0214' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.347,88.0214 L 100.513,90.8008' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.207,88.7668 L 107.374,91.5462' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.374,91.5462 L 102.54,94.3256' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.428,89.1109 L 113.406,96.1082' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.406,96.1082 L 113.384,103.105' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 113.443,82.3266 L 113.453,75.5621' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 113.453,75.5621 L 113.463,68.7977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.324,108.2 L 104.796,111.373' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.796,111.373 L 99.2672,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 110.317,63.5451 L 103.094,59.3557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.094,59.3557 L 95.8721,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 95.8721,55.1663 L 95.8721,34.8365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 91.8062,52.1168 L 91.8062,37.886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-7' d='M 78.2665,65.3311 L 95.8721,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 95.8721,34.8365 L 78.2665,24.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 78.2665,24.6716 L 60.661,34.8365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 77.6587,29.7175 L 65.3348,36.8329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 60.661,34.8365 L 53.2089,30.5138' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 53.2089,30.5138 L 45.7568,26.1911' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-14' d='M 60.661,34.8365 L 60.661,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.0695,21.3443 L 43.0764,16.5176' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.0764,16.5176 L 43.0832,11.6909' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 39.4614,24.3567 L 35.1948,26.8104' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 35.1948,26.8104 L 30.9281,29.264' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 41.4884,27.8814 L 37.2217,30.335' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 37.2217,30.335 L 32.9551,32.7887' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 60.661,55.1663 L 46.5751,63.2982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 60.661,55.1663 L 78.2665,65.3311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 65.3348,53.1698 L 77.6587,60.2852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 128.39 95.9369\\nQ 128.39 94.5545, 129.073 93.782\\nQ 129.756 93.0094, 131.033 93.0094\\nQ 132.31 93.0094, 132.993 93.782\\nQ 133.676 94.5545, 133.676 95.9369\\nQ 133.676 97.3356, 132.985 98.1326\\nQ 132.294 98.9213, 131.033 98.9213\\nQ 129.765 98.9213, 129.073 98.1326\\nQ 128.39 97.3438, 128.39 95.9369\\nM 131.033 98.2708\\nQ 131.911 98.2708, 132.383 97.6853\\nQ 132.863 97.0917, 132.863 95.9369\\nQ 132.863 94.8066, 132.383 94.2374\\nQ 131.911 93.66, 131.033 93.66\\nQ 130.155 93.66, 129.675 94.2292\\nQ 129.203 94.7985, 129.203 95.9369\\nQ 129.203 97.0998, 129.675 97.6853\\nQ 130.155 98.2708, 131.033 98.2708\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 113.3 82.8351\\nQ 114.284 82.8351, 114.78 83.2823\\nQ 115.276 83.7215, 115.276 84.5265\\nQ 115.276 85.3234, 114.764 85.7788\\nQ 114.26 86.2261, 113.3 86.2261\\nL 112.381 86.2261\\nL 112.381 88.5925\\nL 111.601 88.5925\\nL 111.601 82.8351\\nL 113.3 82.8351\\nM 113.3 85.5755\\nQ 113.861 85.5755, 114.162 85.3072\\nQ 114.463 85.0388, 114.463 84.5265\\nQ 114.463 84.0142, 114.162 83.754\\nQ 113.869 83.4856, 113.3 83.4856\\nL 112.381 83.4856\\nL 112.381 85.5755\\nL 113.3 85.5755\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 97.7127 95.7973\\nQ 97.7777 95.8217, 98.0461 95.9356\\nQ 98.3144 96.0494, 98.6072 96.1226\\nQ 98.908 96.1877, 99.2008 96.1877\\nQ 99.7456 96.1877, 100.063 95.9274\\nQ 100.38 95.6591, 100.38 95.1956\\nQ 100.38 94.8784, 100.217 94.6833\\nQ 100.063 94.4881, 99.8188 94.3824\\nQ 99.5749 94.2767, 99.1683 94.1547\\nQ 98.656 94.0002, 98.3469 93.8538\\nQ 98.0461 93.7074, 97.8265 93.3984\\nQ 97.6151 93.0894, 97.6151 92.569\\nQ 97.6151 91.8452, 98.103 91.398\\nQ 98.599 90.9507, 99.5749 90.9507\\nQ 100.242 90.9507, 100.998 91.2679\\nL 100.811 91.894\\nQ 100.12 91.6094, 99.5993 91.6094\\nQ 99.0382 91.6094, 98.7291 91.8452\\nQ 98.4201 92.0729, 98.4283 92.4714\\nQ 98.4283 92.7804, 98.5828 92.9674\\nQ 98.7454 93.1545, 98.9731 93.2602\\nQ 99.2089 93.3659, 99.5993 93.4879\\nQ 100.12 93.6505, 100.429 93.8132\\nQ 100.738 93.9758, 100.957 94.3092\\nQ 101.185 94.6345, 101.185 95.1956\\nQ 101.185 95.9925, 100.648 96.4235\\nQ 100.12 96.8464, 99.2333 96.8464\\nQ 98.721 96.8464, 98.3307 96.7325\\nQ 97.9485 96.6268, 97.4931 96.4398\\nL 97.7127 95.7973\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 110.73 106.466\\nQ 110.73 105.084, 111.414 104.311\\nQ 112.097 103.539, 113.373 103.539\\nQ 114.65 103.539, 115.333 104.311\\nQ 116.016 105.084, 116.016 106.466\\nQ 116.016 107.865, 115.325 108.662\\nQ 114.634 109.451, 113.373 109.451\\nQ 112.105 109.451, 111.414 108.662\\nQ 110.73 107.873, 110.73 106.466\\nM 113.373 108.8\\nQ 114.252 108.8, 114.723 108.215\\nQ 115.203 107.621, 115.203 106.466\\nQ 115.203 105.336, 114.723 104.767\\nQ 114.252 104.189, 113.373 104.189\\nQ 112.495 104.189, 112.015 104.759\\nQ 111.544 105.328, 111.544 106.466\\nQ 111.544 107.629, 112.015 108.215\\nQ 112.495 108.8, 113.373 108.8\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 110.825 65.3894\\nQ 110.825 64.007, 111.508 63.2345\\nQ 112.192 62.4619, 113.468 62.4619\\nQ 114.745 62.4619, 115.428 63.2345\\nQ 116.111 64.007, 116.111 65.3894\\nQ 116.111 66.7881, 115.42 67.585\\nQ 114.729 68.3738, 113.468 68.3738\\nQ 112.2 68.3738, 111.508 67.585\\nQ 110.825 66.7962, 110.825 65.3894\\nM 113.468 67.7233\\nQ 114.346 67.7233, 114.818 67.1378\\nQ 115.298 66.5442, 115.298 65.3894\\nQ 115.298 64.2591, 114.818 63.6899\\nQ 114.346 63.1125, 113.468 63.1125\\nQ 112.59 63.1125, 112.11 63.6817\\nQ 111.639 64.251, 111.639 65.3894\\nQ 111.639 66.5523, 112.11 67.1378\\nQ 112.59 67.7233, 113.468 67.7233\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 41.7922 21.7509\\nL 43.6788 24.8004\\nQ 43.8659 25.1012, 44.1667 25.6461\\nQ 44.4676 26.1909, 44.4839 26.2234\\nL 44.4839 21.7509\\nL 45.2483 21.7509\\nL 45.2483 27.5083\\nL 44.4595 27.5083\\nL 42.4346 24.1742\\nQ 42.1988 23.7839, 41.9467 23.3366\\nQ 41.7028 22.8894, 41.6296 22.7511\\nL 41.6296 27.5083\\nL 40.8815 27.5083\\nL 40.8815 21.7509\\nL 41.7922 21.7509\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 45.7313 22.7887\\nL 46.7457 22.7887\\nL 46.7457 21.7206\\nL 47.1965 21.7206\\nL 47.1965 22.7887\\nL 48.2377 22.7887\\nL 48.2377 23.1751\\nL 47.1965 23.1751\\nL 47.1965 24.2485\\nL 46.7457 24.2485\\nL 46.7457 23.1751\\nL 45.7313 23.1751\\nL 45.7313 22.7887\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 40.445 8.38203\\nQ 40.445 6.99961, 41.1281 6.22708\\nQ 41.8112 5.45455, 43.0879 5.45455\\nQ 44.3646 5.45455, 45.0477 6.22708\\nQ 45.7308 6.99961, 45.7308 8.38203\\nQ 45.7308 9.78072, 45.0396 10.5776\\nQ 44.3484 11.3664, 43.0879 11.3664\\nQ 41.8193 11.3664, 41.1281 10.5776\\nQ 40.445 9.78885, 40.445 8.38203\\nM 43.0879 10.7159\\nQ 43.9662 10.7159, 44.4378 10.1304\\nQ 44.9176 9.53676, 44.9176 8.38203\\nQ 44.9176 7.2517, 44.4378 6.68246\\nQ 43.9662 6.1051, 43.0879 6.1051\\nQ 42.2097 6.1051, 41.7299 6.67433\\nQ 41.2582 7.24357, 41.2582 8.38203\\nQ 41.2582 9.5449, 41.7299 10.1304\\nQ 42.2097 10.7159, 43.0879 10.7159\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 45.9991 6.39427\\nL 47.9688 6.39427\\nL 47.9688 6.82363\\nL 45.9991 6.82363\\nL 45.9991 6.39427\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 26.324 32.7534\\nQ 26.324 31.3709, 27.0071 30.5984\\nQ 27.6901 29.8259, 28.9669 29.8259\\nQ 30.2436 29.8259, 30.9266 30.5984\\nQ 31.6097 31.3709, 31.6097 32.7534\\nQ 31.6097 34.1521, 30.9185 34.949\\nQ 30.2273 35.7378, 28.9669 35.7378\\nQ 27.6983 35.7378, 27.0071 34.949\\nQ 26.324 34.1602, 26.324 32.7534\\nM 28.9669 35.0872\\nQ 29.8451 35.0872, 30.3167 34.5017\\nQ 30.7965 33.9081, 30.7965 32.7534\\nQ 30.7965 31.623, 30.3167 31.0538\\nQ 29.8451 30.4764, 28.9669 30.4764\\nQ 28.0886 30.4764, 27.6088 31.0457\\nQ 27.1372 31.6149, 27.1372 32.7534\\nQ 27.1372 33.9162, 27.6088 34.5017\\nQ 28.0886 35.0872, 28.9669 35.0872\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 166, "data-ID": 837, "data-Solubility": -4.04, "data-SMILES": "COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1", "mols2grid-tooltip": "<strong>Name</strong>: fenitrothion<br><strong>SMILES</strong>: COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.04</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 152.727,75.0263 L 145.853,79.0083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 145.853,79.0083 L 138.979,82.9902' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.246,82.935 L 123.619,78.5532' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.619,78.5532 L 115.993,74.1714' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.709,68.4536 L 115.698,62.4493' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.698,62.4493 L 115.688,56.445' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.638,68.4625 L 110.627,62.4582' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.627,62.4582 L 110.617,56.4539' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 116.119,70.8462 L 123.899,66.3217' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 123.899,66.3217 L 131.678,61.7972' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 110.254,74.25 L 102.665,78.6459' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 102.665,78.6459 L 95.0748,83.0419' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.525,55.416 L 135.504,47.3434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.504,47.3434 L 135.483,39.2708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.299,83.0111 L 78.2665,77.8211' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.2665,77.8211 L 69.2339,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.2339,72.6312 L 69.2339,47.2775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 64.1632,68.8282 L 64.1632,51.0805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-7' d='M 47.2776,85.3081 L 69.2339,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 69.2339,47.2775 L 47.2776,34.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 47.2776,34.6006 L 47.2776,26.6826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 47.2776,26.6826 L 47.2776,18.7646' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 47.2776,34.6006 L 25.3212,47.2775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 46.5196,40.8935 L 31.1501,49.7673' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 25.3212,47.2775 L 17.0322,42.4922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 17.0322,42.4922 L 8.74327,37.7068' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 25.3212,47.2775 L 25.3212,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 25.3212,72.6312 L 47.2776,85.3081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 31.1501,70.1414 L 46.5196,79.0152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 47.2776,85.3081 L 47.2776,93.4898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 47.2776,93.4898 L 47.2776,101.671' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 131.88 85.2135\\nQ 131.88 83.4894, 132.732 82.526\\nQ 133.583 81.5625, 135.176 81.5625\\nQ 136.768 81.5625, 137.62 82.526\\nQ 138.472 83.4894, 138.472 85.2135\\nQ 138.472 86.9578, 137.61 87.9517\\nQ 136.748 88.9354, 135.176 88.9354\\nQ 133.594 88.9354, 132.732 87.9517\\nQ 131.88 86.968, 131.88 85.2135\\nM 135.176 88.1241\\nQ 136.271 88.1241, 136.859 87.3939\\nQ 137.458 86.6536, 137.458 85.2135\\nQ 137.458 83.8038, 136.859 83.0939\\nQ 136.271 82.3739, 135.176 82.3739\\nQ 134.08 82.3739, 133.482 83.0838\\nQ 132.894 83.7937, 132.894 85.2135\\nQ 132.894 86.6637, 133.482 87.3939\\nQ 134.08 88.1241, 135.176 88.1241\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 113.008 68.9651\\nQ 114.235 68.9651, 114.854 69.5229\\nQ 115.472 70.0705, 115.472 71.0745\\nQ 115.472 72.0684, 114.834 72.6363\\nQ 114.205 73.1941, 113.008 73.1941\\nL 111.862 73.1941\\nL 111.862 76.1453\\nL 110.888 76.1453\\nL 110.888 68.9651\\nL 113.008 68.9651\\nM 113.008 72.3828\\nQ 113.708 72.3828, 114.083 72.0481\\nQ 114.458 71.7134, 114.458 71.0745\\nQ 114.458 70.4356, 114.083 70.1111\\nQ 113.718 69.7764, 113.008 69.7764\\nL 111.862 69.7764\\nL 111.862 72.3828\\nL 113.008 72.3828\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 111.117 54.7366\\nQ 111.198 54.767, 111.532 54.909\\nQ 111.867 55.0509, 112.232 55.1422\\nQ 112.607 55.2234, 112.973 55.2234\\nQ 113.652 55.2234, 114.048 54.8988\\nQ 114.443 54.5642, 114.443 53.9861\\nQ 114.443 53.5906, 114.24 53.3472\\nQ 114.048 53.1038, 113.743 52.9719\\nQ 113.439 52.8401, 112.932 52.688\\nQ 112.293 52.4953, 111.908 52.3127\\nQ 111.532 52.1302, 111.259 51.7448\\nQ 110.995 51.3594, 110.995 50.7104\\nQ 110.995 49.8078, 111.603 49.25\\nQ 112.222 48.6922, 113.439 48.6922\\nQ 114.271 48.6922, 115.214 49.0877\\nL 114.981 49.8686\\nQ 114.119 49.5137, 113.47 49.5137\\nQ 112.77 49.5137, 112.384 49.8078\\nQ 111.999 50.0917, 112.009 50.5887\\nQ 112.009 50.9741, 112.202 51.2073\\nQ 112.405 51.4406, 112.689 51.5724\\nQ 112.983 51.7042, 113.47 51.8564\\nQ 114.119 52.0592, 114.504 52.262\\nQ 114.889 52.4649, 115.163 52.8807\\nQ 115.447 53.2863, 115.447 53.9861\\nQ 115.447 54.98, 114.778 55.5175\\nQ 114.119 56.0448, 113.013 56.0448\\nQ 112.374 56.0448, 111.887 55.9028\\nQ 111.411 55.771, 110.843 55.5377\\nL 111.117 54.7366\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 132.24 59.5741\\nQ 132.24 57.85, 133.092 56.8866\\nQ 133.944 55.9231, 135.536 55.9231\\nQ 137.128 55.9231, 137.98 56.8866\\nQ 138.832 57.85, 138.832 59.5741\\nQ 138.832 61.3184, 137.97 62.3123\\nQ 137.108 63.296, 135.536 63.296\\nQ 133.954 63.296, 133.092 62.3123\\nQ 132.24 61.3285, 132.24 59.5741\\nM 135.536 62.4847\\nQ 136.631 62.4847, 137.219 61.7545\\nQ 137.818 61.0142, 137.818 59.5741\\nQ 137.818 58.1644, 137.219 57.4545\\nQ 136.631 56.7344, 135.536 56.7344\\nQ 134.44 56.7344, 133.842 57.4443\\nQ 133.254 58.1542, 133.254 59.5741\\nQ 133.254 61.0243, 133.842 61.7545\\nQ 134.44 62.4847, 135.536 62.4847\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 87.9332 85.2895\\nQ 87.9332 83.5655, 88.7851 82.602\\nQ 89.637 81.6386, 91.2292 81.6386\\nQ 92.8214 81.6386, 93.6733 82.602\\nQ 94.5252 83.5655, 94.5252 85.2895\\nQ 94.5252 87.0339, 93.6631 88.0277\\nQ 92.8011 89.0115, 91.2292 89.0115\\nQ 89.6471 89.0115, 88.7851 88.0277\\nQ 87.9332 87.044, 87.9332 85.2895\\nM 91.2292 88.2001\\nQ 92.3245 88.2001, 92.9127 87.47\\nQ 93.511 86.7296, 93.511 85.2895\\nQ 93.511 83.8799, 92.9127 83.17\\nQ 92.3245 82.4499, 91.2292 82.4499\\nQ 90.1339 82.4499, 89.5356 83.1598\\nQ 88.9473 83.8697, 88.9473 85.2895\\nQ 88.9473 86.7398, 89.5356 87.47\\nQ 90.1339 88.2001, 91.2292 88.2001\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 44.509 14.5661\\nQ 44.509 12.7811, 45.3406 11.8481\\nQ 46.1823 10.905, 47.7745 10.905\\nQ 49.2552 10.905, 50.0462 11.9495\\nL 49.3769 12.4972\\nQ 48.7988 11.7366, 47.7745 11.7366\\nQ 46.6894 11.7366, 46.1113 12.4668\\nQ 45.5434 13.1868, 45.5434 14.5661\\nQ 45.5434 15.9859, 46.1316 16.7161\\nQ 46.7299 17.4462, 47.8861 17.4462\\nQ 48.6771 17.4462, 49.6 16.9696\\nL 49.884 17.7302\\nQ 49.5087 17.9736, 48.9408 18.1156\\nQ 48.3729 18.2576, 47.7441 18.2576\\nQ 46.1823 18.2576, 45.3406 17.3043\\nQ 44.509 16.351, 44.509 14.5661\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 50.9184 10.4689\\nL 51.8514 10.4689\\nL 51.8514 18.1663\\nL 50.9184 18.1663\\nL 50.9184 10.4689\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 7.27273 33.5307\\nL 8.23617 33.5307\\nL 8.23617 40.7413\\nL 7.27273 40.7413\\nL 7.27273 33.5307\\n' fill='#A01EEF'/>\\n<path class='atom-15' d='M 44.509 105.84\\nQ 44.509 104.055, 45.3406 103.122\\nQ 46.1823 102.179, 47.7745 102.179\\nQ 49.2552 102.179, 50.0462 103.223\\nL 49.3769 103.771\\nQ 48.7988 103.01, 47.7745 103.01\\nQ 46.6894 103.01, 46.1113 103.74\\nQ 45.5434 104.46, 45.5434 105.84\\nQ 45.5434 107.259, 46.1316 107.99\\nQ 46.7299 108.72, 47.8861 108.72\\nQ 48.6771 108.72, 49.6 108.243\\nL 49.884 109.004\\nQ 49.5087 109.247, 48.9408 109.389\\nQ 48.3729 109.531, 47.7441 109.531\\nQ 46.1823 109.531, 45.3406 108.578\\nQ 44.509 107.625, 44.509 105.84\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 50.9184 101.742\\nL 51.8514 101.742\\nL 51.8514 109.44\\nL 50.9184 109.44\\nL 50.9184 101.742\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 167, "data-ID": 842, "data-Solubility": -6.62, "data-SMILES": "COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl", "mols2grid-tooltip": "<strong>Name</strong>: iodofenphos<br><strong>SMILES</strong>: COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.62</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 35.7843,83.1571 L 35.7843,95.7874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-0' d='M 46.4961,76.922 L 35.7843,83.1571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.7843,95.7874 L 32.3277,97.7644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.3277,97.7644 L 28.8711,99.7414' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.7843,95.7874 L 46.6564,102.183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.6564,102.183 L 57.6879,95.628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.6879,95.628 L 68.7203,102.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-4' d='M 57.6879,82.9967 L 57.6879,95.628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.7203,102.023 L 68.7551,106.074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.7551,106.074 L 68.7898,110.124' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 68.7203,102.023 L 79.5915,95.4676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.5915,95.4676 L 83.0783,97.4079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.0783,97.4079 L 86.5651,99.3482' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 79.5915,95.4676 L 79.432,82.8373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 79.432,82.8373 L 90.3041,76.6023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-9' d='M 68.56,76.7617 L 79.432,82.8373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 90.3041,76.6023 L 112.368,76.7617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-10' d='M 90.3041,63.9711 L 90.3041,76.6023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.368,76.7617 L 112.368,63.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 112.368,63.8116 L 101.336,57.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 101.336,57.4163 L 101.314,44.2656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-21' d='M 101.336,57.4163 L 90.3041,63.9711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 101.314,44.2656 L 92.1999,39.0266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 101.314,44.2656 L 112.686,37.6661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 112.686,37.6661 L 112.665,24.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 112.665,24.518 L 124.037,17.9177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 125.351,17.9155 L 125.345,13.8974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 125.345,13.8974 L 125.338,9.87942' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 122.723,17.9199 L 122.716,13.9018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 122.716,13.9018 L 122.71,9.8838' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-20' d='M 124.037,17.9177 L 127.488,19.9011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-20' d='M 127.488,19.9011 L 130.938,21.8846' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 90.3041,63.9711 L 90.2804,53.4582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-23' d='M 90.3041,63.9711 L 79.432,57.5757' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 79.432,57.5757 L 68.4005,63.9711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 68.4005,63.9711 L 68.56,76.7617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-26' d='M 68.56,76.7617 L 57.6879,82.9967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 57.6879,82.9967 L 57.5652,72.4847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-26 atom-28' d='M 57.6879,82.9967 L 46.4961,76.922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 21.0843 98.907\\nL 21.6603 98.907\\nL 21.6603 100.713\\nL 23.8323 100.713\\nL 23.8323 98.907\\nL 24.4083 98.907\\nL 24.4083 103.155\\nL 23.8323 103.155\\nL 23.8323 101.193\\nL 21.6603 101.193\\nL 21.6603 103.155\\nL 21.0843 103.155\\nL 21.0843 98.907\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 24.7083 101.019\\nQ 24.7083 99.999, 25.2123 99.429\\nQ 25.7163 98.859, 26.6583 98.859\\nQ 27.6003 98.859, 28.1043 99.429\\nQ 28.6083 99.999, 28.6083 101.019\\nQ 28.6083 102.051, 28.0983 102.639\\nQ 27.5883 103.221, 26.6583 103.221\\nQ 25.7223 103.221, 25.2123 102.639\\nQ 24.7083 102.057, 24.7083 101.019\\nM 26.6583 102.741\\nQ 27.3063 102.741, 27.6543 102.309\\nQ 28.0083 101.871, 28.0083 101.019\\nQ 28.0083 100.185, 27.6543 99.765\\nQ 27.3063 99.339, 26.6583 99.339\\nQ 26.0103 99.339, 25.6563 99.759\\nQ 25.3083 100.179, 25.3083 101.019\\nQ 25.3083 101.877, 25.6563 102.309\\nQ 26.0103 102.741, 26.6583 102.741\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 66.8605 112.547\\nQ 66.8605 111.527, 67.3645 110.957\\nQ 67.8685 110.387, 68.8105 110.387\\nQ 69.7525 110.387, 70.2565 110.957\\nQ 70.7605 111.527, 70.7605 112.547\\nQ 70.7605 113.579, 70.2505 114.167\\nQ 69.7405 114.749, 68.8105 114.749\\nQ 67.8745 114.749, 67.3645 114.167\\nQ 66.8605 113.585, 66.8605 112.547\\nM 68.8105 114.269\\nQ 69.4585 114.269, 69.8065 113.837\\nQ 70.1605 113.399, 70.1605 112.547\\nQ 70.1605 111.713, 69.8065 111.293\\nQ 69.4585 110.867, 68.8105 110.867\\nQ 68.1625 110.867, 67.8085 111.287\\nQ 67.4605 111.707, 67.4605 112.547\\nQ 67.4605 113.405, 67.8085 113.837\\nQ 68.1625 114.269, 68.8105 114.269\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 71.2705 110.435\\nL 71.8465 110.435\\nL 71.8465 112.241\\nL 74.0185 112.241\\nL 74.0185 110.435\\nL 74.5945 110.435\\nL 74.5945 114.683\\nL 74.0185 114.683\\nL 74.0185 112.721\\nL 71.8465 112.721\\nL 71.8465 114.683\\nL 71.2705 114.683\\nL 71.2705 110.435\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 86.828 100.592\\nQ 86.828 99.5715, 87.332 99.0015\\nQ 87.836 98.4315, 88.778 98.4315\\nQ 89.72 98.4315, 90.224 99.0015\\nQ 90.728 99.5715, 90.728 100.592\\nQ 90.728 101.624, 90.218 102.212\\nQ 89.708 102.794, 88.778 102.794\\nQ 87.842 102.794, 87.332 102.212\\nQ 86.828 101.63, 86.828 100.592\\nM 88.778 102.314\\nQ 89.426 102.314, 89.774 101.882\\nQ 90.128 101.444, 90.128 100.592\\nQ 90.128 99.7575, 89.774 99.3375\\nQ 89.426 98.9115, 88.778 98.9115\\nQ 88.13 98.9115, 87.776 99.3315\\nQ 87.428 99.7515, 87.428 100.592\\nQ 87.428 101.45, 87.776 101.882\\nQ 88.13 102.314, 88.778 102.314\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 91.238 98.4795\\nL 91.814 98.4795\\nL 91.814 100.286\\nL 93.986 100.286\\nL 93.986 98.4795\\nL 94.562 98.4795\\nL 94.562 102.728\\nL 93.986 102.728\\nL 93.986 100.766\\nL 91.814 100.766\\nL 91.814 102.728\\nL 91.238 102.728\\nL 91.238 98.4795\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 122.07 7.41679\\nQ 122.07 6.39679, 122.574 5.82679\\nQ 123.078 5.25679, 124.02 5.25679\\nQ 124.962 5.25679, 125.466 5.82679\\nQ 125.97 6.39679, 125.97 7.41679\\nQ 125.97 8.44879, 125.46 9.03679\\nQ 124.95 9.61879, 124.02 9.61879\\nQ 123.084 9.61879, 122.574 9.03679\\nQ 122.07 8.45479, 122.07 7.41679\\nM 124.02 9.13879\\nQ 124.668 9.13879, 125.016 8.70679\\nQ 125.37 8.26879, 125.37 7.41679\\nQ 125.37 6.58279, 125.016 6.16279\\nQ 124.668 5.73679, 124.02 5.73679\\nQ 123.372 5.73679, 123.018 6.15679\\nQ 122.67 6.57679, 122.67 7.41679\\nQ 122.67 8.27479, 123.018 8.70679\\nQ 123.372 9.13879, 124.02 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 131.201 23.1686\\nQ 131.201 22.1486, 131.705 21.5786\\nQ 132.209 21.0086, 133.151 21.0086\\nQ 134.093 21.0086, 134.597 21.5786\\nQ 135.101 22.1486, 135.101 23.1686\\nQ 135.101 24.2006, 134.591 24.7886\\nQ 134.081 25.3706, 133.151 25.3706\\nQ 132.215 25.3706, 131.705 24.7886\\nQ 131.201 24.2066, 131.201 23.1686\\nM 133.151 24.8906\\nQ 133.799 24.8906, 134.147 24.4586\\nQ 134.501 24.0206, 134.501 23.1686\\nQ 134.501 22.3346, 134.147 21.9146\\nQ 133.799 21.4886, 133.151 21.4886\\nQ 132.503 21.4886, 132.149 21.9086\\nQ 131.801 22.3286, 131.801 23.1686\\nQ 131.801 24.0266, 132.149 24.4586\\nQ 132.503 24.8906, 133.151 24.8906\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 135.611 21.0566\\nL 136.187 21.0566\\nL 136.187 22.8626\\nL 138.359 22.8626\\nL 138.359 21.0566\\nL 138.935 21.0566\\nL 138.935 25.3046\\nL 138.359 25.3046\\nL 138.359 23.3426\\nL 136.187 23.3426\\nL 136.187 25.3046\\nL 135.611 25.3046\\nL 135.611 21.0566\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 168, "data-ID": 848, "data-Solubility": -4.35, "data-SMILES": "C1C(O)CC2C(O)C(O)C3C4CCC(C(C)CCC(=O)O)C4(C)CCC3C2(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: hyocholic_acid<br><strong>SMILES</strong>: C1C(O)CC2C(O)C(O)C3C4CCC(C(C)CCC(=O)O)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.35</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.66,72.5025 L 118.66,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.66,56.8762 L 118.66,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-0 atom-6' d='M 113.695,81.6166 L 99.94,89.5583' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-0 atom-6' d='M 99.94,89.5583 L 86.185,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.66,41.25 L 86.185,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.185,22.5 L 72.43,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.43,30.4417 L 58.675,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.71,47.4975 L 53.71,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.71,63.1237 L 53.71,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.71,78.75 L 27.7275,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 86.185,97.5 L 53.71,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.312 73.44\\nL 119.792 79.065\\nQ 120.137 79.62, 120.692 80.625\\nQ 121.247 81.63, 121.277 81.69\\nL 121.277 73.44\\nL 122.687 73.44\\nL 122.687 84.06\\nL 121.232 84.06\\nL 117.497 77.91\\nQ 117.062 77.19, 116.597 76.365\\nQ 116.147 75.54, 116.012 75.285\\nL 116.012 84.06\\nL 114.632 84.06\\nL 114.632 73.44\\nL 116.312 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 123.962 73.44\\nL 125.402 73.44\\nL 125.402 77.955\\nL 130.832 77.955\\nL 130.832 73.44\\nL 132.272 73.44\\nL 132.272 84.06\\nL 130.832 84.06\\nL 130.832 79.155\\nL 125.402 79.155\\nL 125.402 84.06\\nL 123.962 84.06\\nL 123.962 73.44\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 40.1275 35.94\\nL 41.5675 35.94\\nL 41.5675 40.455\\nL 46.9975 40.455\\nL 46.9975 35.94\\nL 48.4375 35.94\\nL 48.4375 46.56\\nL 46.9975 46.56\\nL 46.9975 41.655\\nL 41.5675 41.655\\nL 41.5675 46.56\\nL 40.1275 46.56\\nL 40.1275 35.94\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 51.3625 35.94\\nL 54.8425 41.565\\nQ 55.1875 42.12, 55.7425 43.125\\nQ 56.2975 44.13, 56.3275 44.19\\nL 56.3275 35.94\\nL 57.7375 35.94\\nL 57.7375 46.56\\nL 56.2825 46.56\\nL 52.5475 40.41\\nQ 52.1125 39.69, 51.6475 38.865\\nQ 51.1975 38.04, 51.0625 37.785\\nL 51.0625 46.56\\nL 49.6825 46.56\\nL 49.6825 35.94\\nL 51.3625 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 169, "data-ID": 853, "data-Solubility": 0.74, "data-SMILES": "N(CCNC1C)C1", "mols2grid-tooltip": "<strong>Name</strong>: 2-methylpiperazine<br><strong>SMILES</strong>: N(CCNC1C)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.74</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.376,104.824 L 131.171,100.065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.171,100.065 L 122.967,95.306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.337,110.062 L 128.133,105.303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 128.133,105.303 L 119.929,100.544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.448,97.9248 L 121.466,85.3016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.466,85.3016 L 121.485,72.6783' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 121.448,97.9248 L 100.451,109.998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 117.483,65.3088 L 106.386,58.8716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 106.386,58.8716 L 95.2886,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.2886,52.4344 L 95.2886,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.2337,47.8933 L 89.2337,26.7011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 95.2886,52.4344 L 69.0709,67.5716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 95.2886,22.16 L 69.0709,7.02276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.0709,7.02276 L 42.8533,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.1658,14.537 L 49.8134,25.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 42.8533,22.16 L 42.8533,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 42.8533,22.16 L 32.9465,16.4407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 32.9465,16.4407 L 23.0397,10.7214' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 69.0709,67.5716 L 42.8533,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 68.1658,60.0574 L 49.8134,49.4614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 138.462 110.101\\nQ 138.462 108.043, 139.479 106.892\\nQ 140.496 105.742, 142.398 105.742\\nQ 144.299 105.742, 145.316 106.892\\nQ 146.333 108.043, 146.333 110.101\\nQ 146.333 112.184, 145.304 113.371\\nQ 144.275 114.545, 142.398 114.545\\nQ 140.509 114.545, 139.479 113.371\\nQ 138.462 112.196, 138.462 110.101\\nM 142.398 113.577\\nQ 143.705 113.577, 144.408 112.705\\nQ 145.122 111.821, 145.122 110.101\\nQ 145.122 108.418, 144.408 107.57\\nQ 143.705 106.71, 142.398 106.71\\nQ 141.09 106.71, 140.375 107.558\\nQ 139.673 108.406, 139.673 110.101\\nQ 139.673 111.833, 140.375 112.705\\nQ 141.09 113.577, 142.398 113.577\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 119.597 63.3473\\nL 122.406 67.8885\\nQ 122.685 68.3366, 123.133 69.1479\\nQ 123.581 69.9593, 123.605 70.0077\\nL 123.605 63.3473\\nL 124.744 63.3473\\nL 124.744 71.9211\\nL 123.569 71.9211\\nL 120.554 66.9561\\nQ 120.202 66.3748, 119.827 65.7087\\nQ 119.464 65.0427, 119.355 64.8368\\nL 119.355 71.9211\\nL 118.241 71.9211\\nL 118.241 63.3473\\nL 119.597 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.773 63.3473\\nL 126.935 63.3473\\nL 126.935 66.9924\\nL 131.319 66.9924\\nL 131.319 63.3473\\nL 132.482 63.3473\\nL 132.482 71.9211\\nL 131.319 71.9211\\nL 131.319 67.9612\\nL 126.935 67.9612\\nL 126.935 71.9211\\nL 125.773 71.9211\\nL 125.773 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 13.6667 10.3469\\nQ 13.6667 8.21557, 14.6597 7.10147\\nQ 15.6648 5.97527, 17.566 5.97527\\nQ 19.3341 5.97527, 20.2786 7.22257\\nL 19.4794 7.8765\\nQ 18.7891 6.96827, 17.566 6.96827\\nQ 16.2703 6.96827, 15.58 7.84017\\nQ 14.9019 8.69997, 14.9019 10.3469\\nQ 14.9019 12.0423, 15.6043 12.9142\\nQ 16.3187 13.7861, 17.6992 13.7861\\nQ 18.6438 13.7861, 19.7458 13.2169\\nL 20.0849 14.1251\\nQ 19.6368 14.4158, 18.9587 14.5853\\nQ 18.2805 14.7549, 17.5297 14.7549\\nQ 15.6648 14.7549, 14.6597 13.6165\\nQ 13.6667 12.4782, 13.6667 10.3469\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 21.3201 5.45455\\nL 22.4342 5.45455\\nL 22.4342 14.6459\\nL 21.3201 14.6459\\nL 21.3201 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 170, "data-ID": 858, "data-Solubility": -2.84, "data-SMILES": "O=C(Nc(ccc(c1)Cl)c1)C", "mols2grid-tooltip": "<strong>Name</strong>: 4-chloroacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(c1)Cl)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.84</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 136.426,106.749 L 129.847,102.933' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.847,102.933 L 123.267,99.1163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 133.99,110.95 L 127.411,107.133' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.411,107.133 L 120.831,103.317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.049,101.216 L 122.064,91.0932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.064,91.0932 L 122.079,80.9699' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-1 atom-12' d='M 122.049,101.216 L 105.211,110.899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.87,75.0599 L 109.97,69.8975' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.97,69.8975 L 101.071,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.071,64.7352 L 101.071,40.4564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.215,61.0934 L 96.215,44.0982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 101.071,64.7352 L 80.0453,76.8745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 101.071,40.4564 L 80.0453,28.317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.0453,28.317 L 59.0199,40.4564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 79.3194,34.3431 L 64.6017,42.8407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.0199,40.4564 L 59.0199,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 59.0199,40.4564 L 50.096,35.3289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 50.096,35.3289 L 41.1721,30.2014' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 80.0453,76.8745 L 59.0199,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 79.3194,70.8485 L 64.6017,62.3509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 34.8642,30.146 L 30.3814,32.7427' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 30.3814,32.7427 L 25.8986,35.3394' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 40.3783,24.4266 L 40.3682,18.6623' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 40.3682,18.6623 L 40.3581,12.898' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 35.5226,24.4351 L 35.5125,18.6708' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 35.5125,18.6708 L 35.5024,12.9065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.694 110.981\\nQ 135.694 109.33, 136.51 108.408\\nQ 137.325 107.485, 138.85 107.485\\nQ 140.375 107.485, 141.191 108.408\\nQ 142.006 109.33, 142.006 110.981\\nQ 142.006 112.652, 141.181 113.603\\nQ 140.355 114.545, 138.85 114.545\\nQ 137.335 114.545, 136.51 113.603\\nQ 135.694 112.661, 135.694 110.981\\nM 138.85 113.769\\nQ 139.899 113.769, 140.462 113.069\\nQ 141.035 112.36, 141.035 110.981\\nQ 141.035 109.631, 140.462 108.952\\nQ 139.899 108.262, 138.85 108.262\\nQ 137.801 108.262, 137.228 108.942\\nQ 136.665 109.622, 136.665 110.981\\nQ 136.665 112.37, 137.228 113.069\\nQ 137.801 113.769, 138.85 113.769\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 120.565 73.4868\\nL 122.818 77.1287\\nQ 123.041 77.488, 123.401 78.1387\\nQ 123.76 78.7893, 123.779 78.8282\\nL 123.779 73.4868\\nL 124.692 73.4868\\nL 124.692 80.3626\\nL 123.75 80.3626\\nL 121.332 76.3809\\nQ 121.051 75.9147, 120.749 75.3806\\nQ 120.458 74.8465, 120.371 74.6814\\nL 120.371 80.3626\\nL 119.477 80.3626\\nL 119.477 73.4868\\nL 120.565 73.4868\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.518 73.4868\\nL 126.45 73.4868\\nL 126.45 76.41\\nL 129.966 76.41\\nL 129.966 73.4868\\nL 130.898 73.4868\\nL 130.898 80.3626\\nL 129.966 80.3626\\nL 129.966 77.1869\\nL 126.45 77.1869\\nL 126.45 80.3626\\nL 125.518 80.3626\\nL 125.518 73.4868\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 36.4374 24.9164\\nL 38.6905 28.5582\\nQ 38.9139 28.9175, 39.2732 29.5682\\nQ 39.6325 30.2189, 39.652 30.2577\\nL 39.652 24.9164\\nL 40.5648 24.9164\\nL 40.5648 31.7921\\nL 39.6228 31.7921\\nL 37.2047 27.8104\\nQ 36.923 27.3443, 36.622 26.8101\\nQ 36.3306 26.276, 36.2432 26.1109\\nL 36.2432 31.7921\\nL 35.3498 31.7921\\nL 35.3498 24.9164\\nL 36.4374 24.9164\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 41.1417 26.1558\\nL 42.3531 26.1558\\nL 42.3531 24.8803\\nL 42.8915 24.8803\\nL 42.8915 26.1558\\nL 44.135 26.1558\\nL 44.135 26.6173\\nL 42.8915 26.6173\\nL 42.8915 27.8992\\nL 42.3531 27.8992\\nL 42.3531 26.6173\\nL 41.1417 26.6173\\nL 41.1417 26.1558\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 17.9937 38.1095\\nQ 17.9937 36.4585, 18.8095 35.5359\\nQ 19.6252 34.6133, 21.1499 34.6133\\nQ 22.6746 34.6133, 23.4904 35.5359\\nQ 24.3062 36.4585, 24.3062 38.1095\\nQ 24.3062 39.7798, 23.4807 40.7316\\nQ 22.6552 41.6736, 21.1499 41.6736\\nQ 19.6349 41.6736, 18.8095 40.7316\\nQ 17.9937 39.7896, 17.9937 38.1095\\nM 21.1499 40.8967\\nQ 22.1988 40.8967, 22.762 40.1974\\nQ 23.335 39.4885, 23.335 38.1095\\nQ 23.335 36.7596, 22.762 36.0798\\nQ 22.1988 35.3902, 21.1499 35.3902\\nQ 20.1011 35.3902, 19.5281 36.0701\\nQ 18.9648 36.7499, 18.9648 38.1095\\nQ 18.9648 39.4982, 19.5281 40.1974\\nQ 20.1011 40.8967, 21.1499 40.8967\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 24.6266 35.7356\\nL 26.979 35.7356\\nL 26.979 36.2484\\nL 24.6266 36.2484\\nL 24.6266 35.7356\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 34.7671 8.95069\\nQ 34.7671 7.29973, 35.5828 6.37714\\nQ 36.3986 5.45455, 37.9233 5.45455\\nQ 39.448 5.45455, 40.2638 6.37714\\nQ 41.0795 7.29973, 41.0795 8.95069\\nQ 41.0795 10.6211, 40.2541 11.5728\\nQ 39.4286 12.5148, 37.9233 12.5148\\nQ 36.4083 12.5148, 35.5828 11.5728\\nQ 34.7671 10.6308, 34.7671 8.95069\\nM 37.9233 11.7379\\nQ 38.9721 11.7379, 39.5354 11.0387\\nQ 40.1084 10.3297, 40.1084 8.95069\\nQ 40.1084 7.60079, 39.5354 6.92098\\nQ 38.9721 6.23147, 37.9233 6.23147\\nQ 36.8745 6.23147, 36.3015 6.91127\\nQ 35.7382 7.59108, 35.7382 8.95069\\nQ 35.7382 10.3394, 36.3015 11.0387\\nQ 36.8745 11.7379, 37.9233 11.7379\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 171, "data-ID": 863, "data-Solubility": -2.69, "data-SMILES": "O=C(Nc(ccc(c1)N(=O)=O)c1)C", "mols2grid-tooltip": "<strong>Name</strong>: 4-nitroacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(c1)N(=O)=O)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.69</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 43.1869,95.7122 L 48.2342,96.7874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 48.2342,96.7874 L 53.2814,97.8625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 58.0979,95.6875 L 62.2358,91.1006' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.2358,91.1006 L 66.3736,86.5137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.3736,86.5137 L 61.3391,71.422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 68.6468,83.2397 L 65.1227,72.6755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-2' d='M 82.2038,89.8232 L 66.3736,86.5137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 61.3391,71.422 L 72.0125,59.2716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.0125,59.2716 L 87.6576,62.6428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.6868,62.8981 L 84.6384,65.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 87.6576,62.6428 L 100.485,53.4858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 92.6921,77.7345 L 87.6576,62.6428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 100.485,53.4858 L 105.72,57.1878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.72,57.1878 L 110.955,60.8898' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-6 atom-14' d='M 100.485,53.4858 L 100.453,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.533,65.3854 L 110.558,71.4663' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.558,71.4663 L 108.583,77.5472' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 107.297,78.4931 L 110.123,82.3336' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 110.123,82.3336 L 112.948,86.1741' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 109.869,76.6013 L 112.694,80.4418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 112.694,80.4418 L 115.519,84.2823' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 108.583,77.5472 L 92.6921,77.7345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 92.6921,77.7345 L 82.2038,89.8232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 88.7075,77.4557 L 81.3657,85.9178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 82.2038,89.8232 L 84.3054,96.0447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 84.3054,96.0447 L 86.4069,102.266' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 84.9638,107.626 L 81.9248,111.086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 81.9248,111.086 L 78.8858,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 100.453,37.5162 L 106.312,34.1211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 106.312,34.1211 L 112.172,30.726' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-14' d='M 86.4913,29.501 L 100.453,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 116.319,30.673 L 120.834,33.2752' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 120.834,33.2752 L 125.35,35.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 114.286,26.84 L 114.286,20.1554' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 114.286,20.1554 L 114.286,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 114.286,13.4708 L 100.453,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 100.453,5.45455 L 86.4913,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 86.4913,13.4708 L 72.917,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 82.8318,15.0172 L 73.3298,9.40587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-19' d='M 86.4913,29.501 L 86.4913,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 72.917,5.45455 L 59.0842,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 59.0842,13.4708 L 52.7577,11.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 52.7577,11.4158 L 46.4311,9.36077' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-21' d='M 59.0842,29.501 L 59.0842,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-21' d='M 62.2767,27.0965 L 62.2767,15.8753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-23' d='M 41.9754,11.3119 L 38.3129,16.3989' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-23' d='M 38.3129,16.3989 L 34.6504,21.4859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-24' d='M 34.6504,21.4859 L 38.3381,26.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-24' d='M 38.3381,26.6075 L 42.0258,31.7291' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 46.4311,33.6101 L 52.7577,31.5556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 52.7577,31.5556 L 59.0842,29.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 59.0842,29.501 L 72.917,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 72.917,37.5162 L 86.4913,29.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 73.33,33.5649 L 82.832,27.9543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 53.6007 98.3853\\nQ 53.6007 97.2999, 54.137 96.6933\\nQ 54.6733 96.0868, 55.6758 96.0868\\nQ 56.6782 96.0868, 57.2145 96.6933\\nQ 57.7508 97.2999, 57.7508 98.3853\\nQ 57.7508 99.4835, 57.2081 100.109\\nQ 56.6654 100.729, 55.6758 100.729\\nQ 54.6797 100.729, 54.137 100.109\\nQ 53.6007 99.4899, 53.6007 98.3853\\nM 55.6758 100.218\\nQ 56.3653 100.218, 56.7356 99.7581\\nQ 57.1124 99.292, 57.1124 98.3853\\nQ 57.1124 97.4978, 56.7356 97.0509\\nQ 56.3653 96.5976, 55.6758 96.5976\\nQ 54.9862 96.5976, 54.6095 97.0445\\nQ 54.2392 97.4915, 54.2392 98.3853\\nQ 54.2392 99.2984, 54.6095 99.7581\\nQ 54.9862 100.218, 55.6758 100.218\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 111.351 62.6503\\nQ 111.351 61.5648, 111.887 60.9583\\nQ 112.423 60.3517, 113.426 60.3517\\nQ 114.428 60.3517, 114.965 60.9583\\nQ 115.501 61.5648, 115.501 62.6503\\nQ 115.501 63.7485, 114.958 64.3742\\nQ 114.416 64.9935, 113.426 64.9935\\nQ 112.43 64.9935, 111.887 64.3742\\nQ 111.351 63.7548, 111.351 62.6503\\nM 113.426 64.4827\\nQ 114.115 64.4827, 114.486 64.023\\nQ 114.862 63.5569, 114.862 62.6503\\nQ 114.862 61.7628, 114.486 61.3158\\nQ 114.115 60.8625, 113.426 60.8625\\nQ 112.736 60.8625, 112.36 61.3094\\nQ 111.989 61.7564, 111.989 62.6503\\nQ 111.989 63.5633, 112.36 64.023\\nQ 112.736 64.4827, 113.426 64.4827\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 114.075 87.846\\nQ 114.075 86.7606, 114.611 86.154\\nQ 115.148 85.5475, 116.15 85.5475\\nQ 117.153 85.5475, 117.689 86.154\\nQ 118.225 86.7606, 118.225 87.846\\nQ 118.225 88.9442, 117.682 89.57\\nQ 117.14 90.1893, 116.15 90.1893\\nQ 115.154 90.1893, 114.611 89.57\\nQ 114.075 88.9506, 114.075 87.846\\nM 116.15 89.6785\\nQ 116.84 89.6785, 117.21 89.2188\\nQ 117.587 88.7527, 117.587 87.846\\nQ 117.587 86.9585, 117.21 86.5116\\nQ 116.84 86.0583, 116.15 86.0583\\nQ 115.461 86.0583, 115.084 86.5052\\nQ 114.714 86.9522, 114.714 87.846\\nQ 114.714 88.7591, 115.084 89.2188\\nQ 115.461 89.6785, 116.15 89.6785\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 85.2388 104.964\\nQ 85.2388 103.878, 85.7751 103.272\\nQ 86.3114 102.665, 87.3139 102.665\\nQ 88.3163 102.665, 88.8526 103.272\\nQ 89.389 103.878, 89.389 104.964\\nQ 89.389 106.062, 88.8462 106.688\\nQ 88.3035 107.307, 87.3139 107.307\\nQ 86.3178 107.307, 85.7751 106.688\\nQ 85.2388 106.068, 85.2388 104.964\\nM 87.3139 106.796\\nQ 88.0034 106.796, 88.3738 106.337\\nQ 88.7505 105.871, 88.7505 104.964\\nQ 88.7505 104.076, 88.3738 103.629\\nQ 88.0034 103.176, 87.3139 103.176\\nQ 86.6243 103.176, 86.2476 103.623\\nQ 85.8773 104.07, 85.8773 104.964\\nQ 85.8773 105.877, 86.2476 106.337\\nQ 86.6243 106.796, 87.3139 106.796\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 113.286 27.2408\\nL 114.768 29.6351\\nQ 114.915 29.8714, 115.151 30.2992\\nQ 115.387 30.7269, 115.4 30.7525\\nL 115.4 27.2408\\nL 116 27.2408\\nL 116 31.7613\\nL 115.381 31.7613\\nL 113.791 29.1435\\nQ 113.606 28.837, 113.408 28.4859\\nQ 113.216 28.1347, 113.159 28.0261\\nL 113.159 31.7613\\nL 112.571 31.7613\\nL 112.571 27.2408\\nL 113.286 27.2408\\n' fill='#0000FF'/>\\n<path class='atom-22' d='M 41.8834 8.57036\\nQ 41.8834 7.48494, 42.4197 6.87837\\nQ 42.956 6.27181, 43.9584 6.27181\\nQ 44.9609 6.27181, 45.4972 6.87837\\nQ 46.0335 7.48494, 46.0335 8.57036\\nQ 46.0335 9.66856, 45.4908 10.2943\\nQ 44.9481 10.9136, 43.9584 10.9136\\nQ 42.9624 10.9136, 42.4197 10.2943\\nQ 41.8834 9.67495, 41.8834 8.57036\\nM 43.9584 10.4028\\nQ 44.648 10.4028, 45.0183 9.94311\\nQ 45.395 9.47702, 45.395 8.57036\\nQ 45.395 7.68287, 45.0183 7.23593\\nQ 44.648 6.7826, 43.9584 6.7826\\nQ 43.2689 6.7826, 42.8922 7.22954\\nQ 42.5218 7.67648, 42.5218 8.57036\\nQ 42.5218 9.4834, 42.8922 9.94311\\nQ 43.2689 10.4028, 43.9584 10.4028\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 41.8834 34.4259\\nQ 41.8834 33.3405, 42.4197 32.7339\\nQ 42.956 32.1274, 43.9584 32.1274\\nQ 44.9609 32.1274, 45.4972 32.7339\\nQ 46.0335 33.3405, 46.0335 34.4259\\nQ 46.0335 35.5241, 45.4908 36.1498\\nQ 44.9481 36.7692, 43.9584 36.7692\\nQ 42.9624 36.7692, 42.4197 36.1498\\nQ 41.8834 35.5305, 41.8834 34.4259\\nM 43.9584 36.2584\\nQ 44.648 36.2584, 45.0183 35.7987\\nQ 45.395 35.3326, 45.395 34.4259\\nQ 45.395 33.5384, 45.0183 33.0915\\nQ 44.648 32.6382, 43.9584 32.6382\\nQ 43.2689 32.6382, 42.8922 33.0851\\nQ 42.5218 33.532, 42.5218 34.4259\\nQ 42.5218 35.339, 42.8922 35.7987\\nQ 43.2689 36.2584, 43.9584 36.2584\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 172, "data-ID": 868, "data-Solubility": -4.11, "data-SMILES": "COc2ccc1C(OC(=O)c1c2OC)C4N(C)CCc5cc3OCOc3cc45", "mols2grid-tooltip": "<strong>Name</strong>: hydrastine<br><strong>SMILES</strong>: COc2ccc1C(OC(=O)c1c2OC)C4N(C)CCc5cc3OCOc3cc45<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.11</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.023,107.464 L 127.643,102.849' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.643,102.849 L 124.262,98.2341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.935,109.727 L 124.554,105.112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.554,105.112 L 121.173,100.497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.718,99.3654 L 131.752,81.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-1' d='M 106.26,101.974 L 114.489,100.67' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-1' d='M 114.489,100.67 L 122.718,99.3654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.752,81.2959 L 128.143,73.9814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 128.143,73.9814 L 124.533,66.6668' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.787,61.08 L 112.301,61.3553' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.301,61.3553 L 103.815,61.6305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.045,64.8363 L 112.301,61.3553' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.301,61.3553 L 104.557,57.8743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.186,59.7524 L 97.8404,41.6803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-4 atom-11' d='M 104.186,59.7524 L 94.2247,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.8404,41.6803 L 79.06,37.9919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.7612,37.37 L 82.615,34.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 110.433,27.2572 L 97.8404,41.6803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.06,37.9919 L 72.8624,19.879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.8624,19.879 L 85.4503,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 77.6354,20.2328 L 86.447,10.1357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 85.4503,5.45455 L 104.236,9.14426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 104.236,9.14426 L 110.433,27.2572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 101.543,13.1007 L 105.881,25.7798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 94.2247,71.5669 L 75.2286,61.8366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 89.6298,73.5151 L 76.3325,66.7039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 94.2247,91.025 L 94.2247,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 75.2286,61.8366 L 58.087,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 58.087,71.5669 L 58.087,91.025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 61.9158,74.4856 L 61.9158,88.1063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-18' d='M 58.087,71.5669 L 51.0535,67.523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-18' d='M 51.0535,67.523 L 44.02,63.479' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 58.087,91.025 L 75.2286,100.755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 75.2286,100.755 L 94.2247,91.025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 76.3325,95.888 L 89.6298,89.0767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 94.2247,91.025 L 97.6848,95.1602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 97.6848,95.1602 L 101.145,99.2953' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 39.0462,63.4342 L 35.5118,65.4812' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 35.5118,65.4812 L 31.9773,67.5282' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 43.3947,58.9249 L 43.3875,54.3797' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 43.3875,54.3797 L 43.3803,49.8345' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 39.5659,58.931 L 39.5587,54.3858' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 39.5587,54.3858 L 39.5515,49.8406' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.279 111.735\\nQ 129.279 110.433, 129.922 109.706\\nQ 130.565 108.978, 131.768 108.978\\nQ 132.97 108.978, 133.613 109.706\\nQ 134.256 110.433, 134.256 111.735\\nQ 134.256 113.052, 133.605 113.803\\nQ 132.955 114.545, 131.768 114.545\\nQ 130.573 114.545, 129.922 113.803\\nQ 129.279 113.06, 129.279 111.735\\nM 131.768 113.933\\nQ 132.595 113.933, 133.039 113.381\\nQ 133.491 112.822, 133.491 111.735\\nQ 133.491 110.671, 133.039 110.135\\nQ 132.595 109.591, 131.768 109.591\\nQ 130.941 109.591, 130.489 110.127\\nQ 130.045 110.663, 130.045 111.735\\nQ 130.045 112.83, 130.489 113.381\\nQ 130.941 113.933, 131.768 113.933\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 121.751 60.7479\\nL 123.528 63.6195\\nQ 123.704 63.9028, 123.987 64.4159\\nQ 124.271 64.929, 124.286 64.9596\\nL 124.286 60.7479\\nL 125.006 60.7479\\nL 125.006 66.1695\\nL 124.263 66.1695\\nL 122.356 63.0299\\nQ 122.134 62.6623, 121.897 62.2411\\nQ 121.667 61.82, 121.598 61.6898\\nL 121.598 66.1695\\nL 120.894 66.1695\\nL 120.894 60.7479\\nL 121.751 60.7479\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 96.7888 99.6654\\nL 97.5239 99.6654\\nL 97.5239 101.97\\nL 100.296 101.97\\nL 100.296 99.6654\\nL 101.031 99.6654\\nL 101.031 105.087\\nL 100.296 105.087\\nL 100.296 102.583\\nL 97.5239 102.583\\nL 97.5239 105.087\\nL 96.7888 105.087\\nL 96.7888 99.6654\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 102.524 99.6654\\nL 104.301 102.537\\nQ 104.477 102.82, 104.76 103.333\\nQ 105.044 103.846, 105.059 103.877\\nL 105.059 99.6654\\nL 105.779 99.6654\\nL 105.779 105.087\\nL 105.036 105.087\\nL 103.129 101.947\\nQ 102.907 101.58, 102.67 101.159\\nQ 102.44 100.737, 102.371 100.607\\nL 102.371 105.087\\nL 101.667 105.087\\nL 101.667 99.6654\\nL 102.524 99.6654\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 40.2868 59.3108\\nL 42.0634 62.1824\\nQ 42.2395 62.4658, 42.5228 62.9788\\nQ 42.8061 63.4919, 42.8215 63.5225\\nL 42.8215 59.3108\\nL 43.5413 59.3108\\nL 43.5413 64.7324\\nL 42.7985 64.7324\\nL 40.8917 61.5928\\nQ 40.6697 61.2252, 40.4323 60.8041\\nQ 40.2025 60.3829, 40.1336 60.2527\\nL 40.1336 64.7324\\nL 39.4291 64.7324\\nL 39.4291 59.3108\\nL 40.2868 59.3108\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 43.9961 60.2881\\nL 44.9514 60.2881\\nL 44.9514 59.2823\\nL 45.3759 59.2823\\nL 45.3759 60.2881\\nL 46.3564 60.2881\\nL 46.3564 60.652\\nL 45.3759 60.652\\nL 45.3759 61.6628\\nL 44.9514 61.6628\\nL 44.9514 60.652\\nL 43.9961 60.652\\nL 43.9961 60.2881\\n' fill='#0000FF'/>\\n<path class='atom-19' d='M 25.7436 69.7125\\nQ 25.7436 68.4107, 26.3869 67.6832\\nQ 27.0301 66.9557, 28.2324 66.9557\\nQ 29.4346 66.9557, 30.0779 67.6832\\nQ 30.7211 68.4107, 30.7211 69.7125\\nQ 30.7211 71.0296, 30.0702 71.78\\nQ 29.4193 72.5228, 28.2324 72.5228\\nQ 27.0378 72.5228, 26.3869 71.78\\nQ 25.7436 71.0372, 25.7436 69.7125\\nM 28.2324 71.9102\\nQ 29.0594 71.9102, 29.5035 71.3589\\nQ 29.9553 70.7998, 29.9553 69.7125\\nQ 29.9553 68.648, 29.5035 68.112\\nQ 29.0594 67.5683, 28.2324 67.5683\\nQ 27.4053 67.5683, 26.9535 68.1043\\nQ 26.5094 68.6404, 26.5094 69.7125\\nQ 26.5094 70.8075, 26.9535 71.3589\\nQ 27.4053 71.9102, 28.2324 71.9102\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 30.9738 67.8406\\nL 32.8286 67.8406\\nL 32.8286 68.2449\\nL 30.9738 68.2449\\nL 30.9738 67.8406\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 38.9722 46.7216\\nQ 38.9722 45.4198, 39.6155 44.6924\\nQ 40.2587 43.9649, 41.461 43.9649\\nQ 42.6632 43.9649, 43.3064 44.6924\\nQ 43.9497 45.4198, 43.9497 46.7216\\nQ 43.9497 48.0387, 43.2988 48.7892\\nQ 42.6479 49.532, 41.461 49.532\\nQ 40.2664 49.532, 39.6155 48.7892\\nQ 38.9722 48.0464, 38.9722 46.7216\\nM 41.461 48.9194\\nQ 42.288 48.9194, 42.7321 48.368\\nQ 43.1839 47.809, 43.1839 46.7216\\nQ 43.1839 45.6572, 42.7321 45.1212\\nQ 42.288 44.5775, 41.461 44.5775\\nQ 40.6339 44.5775, 40.1821 45.1135\\nQ 39.738 45.6496, 39.738 46.7216\\nQ 39.738 47.8167, 40.1821 48.368\\nQ 40.6339 48.9194, 41.461 48.9194\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 173, "data-ID": 873, "data-Solubility": -3.8, "data-SMILES": "O=C3CN=C(c1ccccc1)c2cc(ccc2N3)N(=O)=O", "mols2grid-tooltip": "<strong>Name</strong>: nitrazepam<br><strong>SMILES</strong>: O=C3CN=C(c1ccccc1)c2cc(ccc2N3)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.4203,109.533 L 84.6105,106.179' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.6105,106.179 L 78.8006,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 78.8006,102.824 L 78.8006,81.4201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 74.5198,99.6138 L 74.5198,84.6307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-1 atom-16' d='M 78.8006,102.824 L 60.2645,113.527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.8006,81.4201 L 60.2645,70.7179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 78.8006,81.4201 L 97.3254,70.6736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.2645,70.7179 L 41.7283,81.4201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.6245,76.0305 L 46.6492,83.5221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 41.7283,81.4201 L 41.7283,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 41.7283,81.4201 L 34.7241,77.3764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 34.7241,77.3764 L 27.7199,73.3328' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 60.2645,113.527 L 41.7283,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 59.6245,108.214 L 46.6492,100.722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 97.3254,70.6736 L 97.2954,49.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.2954,49.2579 L 115.795,38.49' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.9168,43.9429 L 110.866,36.4055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 97.2954,49.2579 L 78.7207,38.6185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 115.795,38.49 L 121.619,41.8252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 121.619,41.8252 L 127.443,45.1604' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 115.795,38.49 L 115.72,17.0857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.72,17.0857 L 97.147,6.44771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 110.807,19.2047 L 97.8054,11.7581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 97.147,6.44771 L 78.648,17.2141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 78.648,17.2141 L 71.6295,13.1943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 71.6295,13.1943 L 64.611,9.17448' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 78.7207,38.6185 L 78.648,17.2141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 82.9907,35.3933 L 82.9397,20.4102' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 90.8484 111.403\\nQ 90.8484 109.948, 91.5676 109.134\\nQ 92.2868 108.321, 93.631 108.321\\nQ 94.9752 108.321, 95.6944 109.134\\nQ 96.4136 109.948, 96.4136 111.403\\nQ 96.4136 112.876, 95.6858 113.715\\nQ 94.9581 114.545, 93.631 114.545\\nQ 92.2954 114.545, 91.5676 113.715\\nQ 90.8484 112.884, 90.8484 111.403\\nM 93.631 113.861\\nQ 94.5557 113.861, 95.0523 113.244\\nQ 95.5574 112.619, 95.5574 111.403\\nQ 95.5574 110.213, 95.0523 109.614\\nQ 94.5557 109.006, 93.631 109.006\\nQ 92.7063 109.006, 92.2012 109.605\\nQ 91.7046 110.205, 91.7046 111.403\\nQ 91.7046 112.628, 92.2012 113.244\\nQ 92.7063 113.861, 93.631 113.861\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 97.1413 108.39\\nL 97.9633 108.39\\nL 97.9633 110.967\\nL 101.063 110.967\\nL 101.063 108.39\\nL 101.885 108.39\\nL 101.885 114.451\\nL 101.063 114.451\\nL 101.063 111.652\\nL 97.9633 111.652\\nL 97.9633 114.451\\nL 97.1413 114.451\\nL 97.1413 108.39\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 21.093 73.0681\\nQ 21.093 71.5612, 21.7951 70.7735\\nQ 22.5057 69.9773, 23.8499 69.9773\\nQ 25.0999 69.9773, 25.7678 70.8591\\nL 25.2027 71.3215\\nQ 24.7147 70.6794, 23.8499 70.6794\\nQ 22.9338 70.6794, 22.4458 71.2958\\nQ 21.9663 71.9037, 21.9663 73.0681\\nQ 21.9663 74.2667, 22.4629 74.8832\\nQ 22.9681 75.4996, 23.9441 75.4996\\nQ 24.6119 75.4996, 25.391 75.0972\\nL 25.6308 75.7393\\nQ 25.314 75.9448, 24.8345 76.0647\\nQ 24.3551 76.1846, 23.8242 76.1846\\nQ 22.5057 76.1846, 21.7951 75.3797\\nQ 21.093 74.5749, 21.093 73.0681\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 26.5041 69.6091\\nL 27.2918 69.6091\\nL 27.2918 76.1075\\nL 26.5041 76.1075\\nL 26.5041 69.6091\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 127.871 47.0161\\nQ 127.871 45.5606, 128.59 44.7473\\nQ 129.309 43.9339, 130.653 43.9339\\nQ 131.998 43.9339, 132.717 44.7473\\nQ 133.436 45.5606, 133.436 47.0161\\nQ 133.436 48.4887, 132.708 49.3278\\nQ 131.98 50.1583, 130.653 50.1583\\nQ 129.318 50.1583, 128.59 49.3278\\nQ 127.871 48.4973, 127.871 47.0161\\nM 130.653 49.4733\\nQ 131.578 49.4733, 132.075 48.8569\\nQ 132.58 48.2319, 132.58 47.0161\\nQ 132.58 45.826, 132.075 45.2267\\nQ 131.578 44.6188, 130.653 44.6188\\nQ 129.729 44.6188, 129.224 45.2181\\nQ 128.727 45.8175, 128.727 47.0161\\nQ 128.727 48.2404, 129.224 48.8569\\nQ 129.729 49.4733, 130.653 49.4733\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 134.164 44.0024\\nL 134.986 44.0024\\nL 134.986 46.5795\\nL 138.085 46.5795\\nL 138.085 44.0024\\nL 138.907 44.0024\\nL 138.907 50.0641\\nL 138.085 50.0641\\nL 138.085 47.2644\\nL 134.986 47.2644\\nL 134.986 50.0641\\nL 134.164 50.0641\\nL 134.164 44.0024\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 57.9842 8.91349\\nQ 57.9842 7.40662, 58.6862 6.61894\\nQ 59.3969 5.8227, 60.7411 5.8227\\nQ 61.9911 5.8227, 62.6589 6.70456\\nL 62.0938 7.16689\\nQ 61.6058 6.52476, 60.7411 6.52476\\nQ 59.825 6.52476, 59.3369 7.14121\\nQ 58.8575 7.74909, 58.8575 8.91349\\nQ 58.8575 10.1121, 59.3541 10.7286\\nQ 59.8592 11.345, 60.8352 11.345\\nQ 61.5031 11.345, 62.2822 10.9426\\nL 62.5219 11.5848\\nQ 62.2051 11.7902, 61.7257 11.9101\\nQ 61.2462 12.03, 60.7154 12.03\\nQ 59.3969 12.03, 58.6862 11.2252\\nQ 57.9842 10.4204, 57.9842 8.91349\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 63.3952 5.45455\\nL 64.1829 5.45455\\nL 64.1829 11.9529\\nL 63.3952 11.9529\\nL 63.3952 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 174, "data-ID": 878, "data-Solubility": -3.95, "data-SMILES": "Oc(c(cc(c1)Cl)Cc(c(O)ccc2Cl)c2)c1", "mols2grid-tooltip": "<strong>Name</strong>: dichlorphen<br><strong>SMILES</strong>: Oc(c(cc(c1)Cl)Cc(c(O)ccc2Cl)c2)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.95</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 126.875,83.0246 L 118.981,78.4673' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.981,78.4673 L 111.087,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.087,73.91 L 111.087,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.503,69.7219 L 105.503,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-1' d='M 86.9076,87.8702 L 111.087,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.087,45.9895 L 118.956,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.956,41.4467 L 126.825,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 111.087,45.9895 L 86.9076,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.9076,32.0293 L 86.9076,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.9076,23.3097 L 86.9076,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 86.9076,32.0293 L 76.6664,37.9422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 76.6664,37.9422 L 66.4251,43.8552' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 86.6273,38.6391 L 79.4585,42.7782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 79.4585,42.7782 L 72.2896,46.9172' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 62.7285,50.6411 L 62.7285,62.2755' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 62.7285,62.2755 L 62.7285,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 62.7285,73.91 L 38.5065,87.8293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 62.7285,73.91 L 86.9076,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 69.1474,71.1681 L 86.0728,80.9403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 38.5065,87.8293 L 38.491,96.7192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 38.491,96.7192 L 38.4754,105.609' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 39.906,85.4133 L 32.3358,81.0282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 32.3358,81.0282 L 24.7657,76.6432' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 37.107,90.2453 L 29.5369,85.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 29.5369,85.8602 L 21.9667,81.4751' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.9076,87.8702 L 86.9076,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.9076,96.8802 L 86.9076,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.684 81.1246\\nL 131.275 85.3127\\nQ 131.532 85.7259, 131.945 86.4742\\nQ 132.358 87.2225, 132.381 87.2671\\nL 132.381 81.1246\\nL 133.431 81.1246\\nL 133.431 89.0317\\nL 132.347 89.0317\\nL 129.566 84.4528\\nQ 129.242 83.9167, 128.896 83.3024\\nQ 128.561 82.6882, 128.461 82.4983\\nL 128.461 89.0317\\nL 127.433 89.0317\\nL 127.433 81.1246\\nL 128.684 81.1246\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 134.38 81.1246\\nL 135.452 81.1246\\nL 135.452 84.4863\\nL 139.495 84.4863\\nL 139.495 81.1246\\nL 140.567 81.1246\\nL 140.567 89.0317\\nL 139.495 89.0317\\nL 139.495 85.3797\\nL 135.452 85.3797\\nL 135.452 89.0317\\nL 134.38 89.0317\\nL 134.38 81.1246\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 140.95 88.7543\\nQ 141.142 88.2604, 141.599 87.9877\\nQ 142.056 87.7076, 142.69 87.7076\\nQ 143.479 87.7076, 143.921 88.1351\\nQ 144.363 88.5627, 144.363 89.3219\\nQ 144.363 90.0958, 143.788 90.8182\\nQ 143.221 91.5405, 142.041 92.3956\\nL 144.452 92.3956\\nL 144.452 92.9853\\nL 140.936 92.9853\\nL 140.936 92.4914\\nQ 141.909 91.7985, 142.484 91.2826\\nQ 143.066 90.7666, 143.346 90.3022\\nQ 143.626 89.8378, 143.626 89.3587\\nQ 143.626 88.8575, 143.375 88.5774\\nQ 143.125 88.2973, 142.69 88.2973\\nQ 142.27 88.2973, 141.99 88.4668\\nQ 141.71 88.6364, 141.511 89.0123\\nL 140.95 88.7543\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 127.383 35.0949\\nQ 127.383 33.1293, 128.299 32.1019\\nQ 129.226 31.0632, 130.979 31.0632\\nQ 132.61 31.0632, 133.481 32.2135\\nL 132.744 32.8166\\nQ 132.107 31.979, 130.979 31.979\\nQ 129.784 31.979, 129.148 32.7831\\nQ 128.522 33.5761, 128.522 35.0949\\nQ 128.522 36.6585, 129.17 37.4626\\nQ 129.829 38.2667, 131.102 38.2667\\nQ 131.973 38.2667, 132.989 37.7418\\nL 133.302 38.5794\\nQ 132.889 38.8474, 132.263 39.0038\\nQ 131.638 39.1602, 130.946 39.1602\\nQ 129.226 39.1602, 128.299 38.1103\\nQ 127.383 37.0605, 127.383 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 134.441 30.583\\nL 135.469 30.583\\nL 135.469 39.0596\\nL 134.441 39.0596\\nL 134.441 30.583\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 83.8587 9.9665\\nQ 83.8587 8.00089, 84.7745 6.97342\\nQ 85.7014 5.93478, 87.4548 5.93478\\nQ 89.0854 5.93478, 89.9565 7.0851\\nL 89.2194 7.68818\\nQ 88.5828 6.85057, 87.4548 6.85057\\nQ 86.2598 6.85057, 85.6233 7.65468\\nQ 84.9978 8.44762, 84.9978 9.9665\\nQ 84.9978 11.53, 85.6456 12.3342\\nQ 86.3045 13.1383, 87.5777 13.1383\\nQ 88.4488 13.1383, 89.4651 12.6134\\nL 89.7778 13.451\\nQ 89.3646 13.719, 88.7392 13.8754\\nQ 88.1138 14.0317, 87.4213 14.0317\\nQ 85.7014 14.0317, 84.7745 12.9819\\nQ 83.8587 11.9321, 83.8587 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 90.917 5.45455\\nL 91.9445 5.45455\\nL 91.9445 13.9312\\nL 90.917 13.9312\\nL 90.917 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 60.9806 42.036\\nL 63.5717 46.224\\nQ 63.8285 46.6373, 64.2418 47.3855\\nQ 64.655 48.1338, 64.6773 48.1785\\nL 64.6773 42.036\\nL 65.7271 42.036\\nL 65.7271 49.943\\nL 64.6438 49.943\\nL 61.8629 45.3641\\nQ 61.5391 44.828, 61.1928 44.2138\\nQ 60.8578 43.5995, 60.7573 43.4096\\nL 60.7573 49.943\\nL 59.7298 49.943\\nL 59.7298 42.036\\nL 60.9806 42.036\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 34.8378 110.188\\nQ 34.8378 108.289, 35.7759 107.228\\nQ 36.714 106.167, 38.4674 106.167\\nQ 40.2208 106.167, 41.159 107.228\\nQ 42.0971 108.289, 42.0971 110.188\\nQ 42.0971 112.109, 41.1478 113.203\\nQ 40.1985 114.287, 38.4674 114.287\\nQ 36.7252 114.287, 35.7759 113.203\\nQ 34.8378 112.12, 34.8378 110.188\\nM 38.4674 113.393\\nQ 39.6736 113.393, 40.3213 112.589\\nQ 40.9803 111.774, 40.9803 110.188\\nQ 40.9803 108.636, 40.3213 107.854\\nQ 39.6736 107.061, 38.4674 107.061\\nQ 37.2613 107.061, 36.6023 107.843\\nQ 35.9546 108.624, 35.9546 110.188\\nQ 35.9546 111.785, 36.6023 112.589\\nQ 37.2613 113.393, 38.4674 113.393\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 43.0464 106.257\\nL 44.1185 106.257\\nL 44.1185 109.618\\nL 48.1614 109.618\\nL 48.1614 106.257\\nL 49.2336 106.257\\nL 49.2336 114.164\\nL 48.1614 114.164\\nL 48.1614 110.512\\nL 44.1185 110.512\\nL 44.1185 114.164\\nL 43.0464 114.164\\nL 43.0464 106.257\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 15.5484 76.6555\\nQ 15.5484 74.7569, 16.4866 73.6959\\nQ 17.4247 72.6349, 19.1781 72.6349\\nQ 20.9315 72.6349, 21.8696 73.6959\\nQ 22.8078 74.7569, 22.8078 76.6555\\nQ 22.8078 78.5764, 21.8585 79.6709\\nQ 20.9092 80.7542, 19.1781 80.7542\\nQ 17.4359 80.7542, 16.4866 79.6709\\nQ 15.5484 78.5876, 15.5484 76.6555\\nM 19.1781 79.8608\\nQ 20.3843 79.8608, 21.032 79.0567\\nQ 21.6909 78.2414, 21.6909 76.6555\\nQ 21.6909 75.1031, 21.032 74.3213\\nQ 20.3843 73.5284, 19.1781 73.5284\\nQ 17.9719 73.5284, 17.313 74.3102\\nQ 16.6653 75.092, 16.6653 76.6555\\nQ 16.6653 78.2526, 17.313 79.0567\\nQ 17.9719 79.8608, 19.1781 79.8608\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 83.8587 110.48\\nQ 83.8587 108.515, 84.7745 107.487\\nQ 85.7014 106.449, 87.4548 106.449\\nQ 89.0854 106.449, 89.9565 107.599\\nL 89.2194 108.202\\nQ 88.5828 107.364, 87.4548 107.364\\nQ 86.2598 107.364, 85.6233 108.168\\nQ 84.9978 108.961, 84.9978 110.48\\nQ 84.9978 112.044, 85.6456 112.848\\nQ 86.3045 113.652, 87.5777 113.652\\nQ 88.4488 113.652, 89.4651 113.127\\nL 89.7778 113.965\\nQ 89.3646 114.233, 88.7392 114.389\\nQ 88.1138 114.545, 87.4213 114.545\\nQ 85.7014 114.545, 84.7745 113.496\\nQ 83.8587 112.446, 83.8587 110.48\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 90.917 105.968\\nL 91.9445 105.968\\nL 91.9445 114.445\\nL 90.917 114.445\\nL 90.917 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 175, "data-ID": 883, "data-Solubility": -2.75, "data-SMILES": "Nc1c(Cl)c(Cl)nc(C(O)=O)c1Cl", "mols2grid-tooltip": "<strong>Name</strong>: picloram<br><strong>SMILES</strong>: Nc1c(Cl)c(Cl)nc(C(O)=O)c1Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.227,107.007 L 124.238,99.2802' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.238,99.2802 L 124.249,91.5536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.374,107 L 119.385,99.2733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.385,99.2733 L 119.396,91.5467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.822,91.5502 L 128.417,87.7579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.417,87.7579 L 135.012,83.9657' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 121.822,91.5502 L 100.82,79.3666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.82,79.3666 L 93.951,83.3165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 93.951,83.3165 L 87.0819,87.2665' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 100.82,79.3666 L 100.856,55.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.856,55.0868 L 79.852,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.852,42.9032 L 79.852,18.6363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.9986,39.2631 L 74.9986,22.2763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-6 atom-12' d='M 79.852,42.9032 L 58.8369,55.0366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.852,18.6363 L 58.8369,6.50287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.8369,6.50287 L 37.8218,18.6363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.1113,12.526 L 43.4008,21.0194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 37.8218,18.6363 L 31.2349,14.8337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 31.2349,14.8337 L 24.6481,11.031' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 37.8218,18.6363 L 37.8218,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-11' d='M 58.8369,55.0366 L 37.8218,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-11' d='M 58.1113,49.0135 L 43.4008,40.5201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.64 110.983\\nQ 118.64 109.333, 119.456 108.411\\nQ 120.271 107.489, 121.795 107.489\\nQ 123.319 107.489, 124.134 108.411\\nQ 124.95 109.333, 124.95 110.983\\nQ 124.95 112.653, 124.124 113.604\\nQ 123.299 114.545, 121.795 114.545\\nQ 120.281 114.545, 119.456 113.604\\nQ 118.64 112.662, 118.64 110.983\\nM 121.795 113.769\\nQ 122.843 113.769, 123.406 113.07\\nQ 123.979 112.361, 123.979 110.983\\nQ 123.979 109.634, 123.406 108.954\\nQ 122.843 108.265, 121.795 108.265\\nQ 120.747 108.265, 120.174 108.945\\nQ 119.611 109.624, 119.611 110.983\\nQ 119.611 112.371, 120.174 113.07\\nQ 120.747 113.769, 121.795 113.769\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.498 81.892\\nQ 135.498 80.2418, 136.313 79.3197\\nQ 137.128 78.3975, 138.652 78.3975\\nQ 140.176 78.3975, 140.992 79.3197\\nQ 141.807 80.2418, 141.807 81.892\\nQ 141.807 83.5615, 140.982 84.5128\\nQ 140.157 85.4543, 138.652 85.4543\\nQ 137.138 85.4543, 136.313 84.5128\\nQ 135.498 83.5712, 135.498 81.892\\nM 138.652 84.6778\\nQ 139.701 84.6778, 140.264 83.9789\\nQ 140.836 83.2703, 140.836 81.892\\nQ 140.836 80.5427, 140.264 79.8632\\nQ 139.701 79.1741, 138.652 79.1741\\nQ 137.604 79.1741, 137.031 79.8535\\nQ 136.468 80.533, 136.468 81.892\\nQ 136.468 83.28, 137.031 83.9789\\nQ 137.604 84.6778, 138.652 84.6778\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 142.632 78.4752\\nL 143.564 78.4752\\nL 143.564 81.3969\\nL 147.078 81.3969\\nL 147.078 78.4752\\nL 148.01 78.4752\\nL 148.01 85.3476\\nL 147.078 85.3476\\nL 147.078 82.1734\\nL 143.564 82.1734\\nL 143.564 85.3476\\nL 142.632 85.3476\\nL 142.632 78.4752\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 71.8246 85.608\\nL 72.7565 85.608\\nL 72.7565 88.5298\\nL 76.2703 88.5298\\nL 76.2703 85.608\\nL 77.2022 85.608\\nL 77.2022 92.4804\\nL 76.2703 92.4804\\nL 76.2703 89.3063\\nL 72.7565 89.3063\\nL 72.7565 92.4804\\nL 71.8246 92.4804\\nL 71.8246 85.608\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 77.5353 92.2393\\nQ 77.7019 91.81, 78.0991 91.573\\nQ 78.4963 91.3296, 79.0472 91.3296\\nQ 79.7327 91.3296, 80.1171 91.7011\\nQ 80.5015 92.0727, 80.5015 92.7326\\nQ 80.5015 93.4053, 80.0018 94.0331\\nQ 79.5085 94.6609, 78.4834 95.4041\\nL 80.5784 95.4041\\nL 80.5784 95.9166\\nL 77.5225 95.9166\\nL 77.5225 95.4874\\nQ 78.3681 94.8851, 78.8678 94.4367\\nQ 79.3739 93.9882, 79.6174 93.5846\\nQ 79.8608 93.181, 79.8608 92.7646\\nQ 79.8608 92.329, 79.643 92.0855\\nQ 79.4252 91.8421, 79.0472 91.8421\\nQ 78.6821 91.8421, 78.4386 91.9894\\nQ 78.1952 92.1368, 78.0222 92.4635\\nL 77.5353 92.2393\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 82.4712 85.608\\nL 84.7231 89.2481\\nQ 84.9464 89.6072, 85.3055 90.2576\\nQ 85.6647 90.9079, 85.6841 90.9467\\nL 85.6841 85.608\\nL 86.5965 85.608\\nL 86.5965 92.4804\\nL 85.655 92.4804\\nL 83.238 88.5006\\nQ 82.9565 88.0347, 82.6556 87.5008\\nQ 82.3644 86.967, 82.277 86.8019\\nL 82.277 92.4804\\nL 81.384 92.4804\\nL 81.384 85.608\\nL 82.4712 85.608\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 11.9905 5.5322\\nL 12.9223 5.5322\\nL 12.9223 8.45393\\nL 16.4362 8.45393\\nL 16.4362 5.5322\\nL 17.368 5.5322\\nL 17.368 12.4046\\nL 16.4362 12.4046\\nL 16.4362 9.23047\\nL 12.9223 9.23047\\nL 12.9223 12.4046\\nL 11.9905 12.4046\\nL 11.9905 5.5322\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 17.8534 8.94897\\nQ 17.8534 7.29883, 18.6687 6.37669\\nQ 19.4841 5.45455, 21.008 5.45455\\nQ 22.532 5.45455, 23.3474 6.37669\\nQ 24.1627 7.29883, 24.1627 8.94897\\nQ 24.1627 10.6185, 23.3377 11.5698\\nQ 22.5126 12.5114, 21.008 12.5114\\nQ 19.4938 12.5114, 18.6687 11.5698\\nQ 17.8534 10.6282, 17.8534 8.94897\\nM 21.008 11.7348\\nQ 22.0564 11.7348, 22.6194 11.0359\\nQ 23.1921 10.3273, 23.1921 8.94897\\nQ 23.1921 7.59974, 22.6194 6.92026\\nQ 22.0564 6.23109, 21.008 6.23109\\nQ 19.9597 6.23109, 19.387 6.91056\\nQ 18.824 7.59003, 18.824 8.94897\\nQ 18.824 10.337, 19.387 11.0359\\nQ 19.9597 11.7348, 21.008 11.7348\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 176, "data-ID": 888, "data-Solubility": -2.57, "data-SMILES": "O=C(O)C(N)Cc(ccc(O)c1)c1", "mols2grid-tooltip": "<strong>Name</strong>: L-tyrosine<br><strong>SMILES</strong>: O=C(O)C(N)Cc(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.2917 L 22.1687,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.1687,49.6972 L 22.1687,32.4996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 22.1687,49.6972 L 30.0608,54.2503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.0608,54.2503 L 37.953,58.8035' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8069,64.0274 L 40.8254,72.9908' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8254,72.9908 L 40.8439,81.9542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-3 atom-7' d='M 43.646,58.8035 L 51.5381,54.2503' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-3 atom-7' d='M 51.5381,54.2503 L 59.4302,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8439,81.9542 L 55.7499,90.5329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 40.8439,81.9542 L 25.9651,90.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 61.5799,49.6972 L 61.5799,42.8998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 61.5799,42.8998 L 61.5799,36.1025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.2805,49.6972 L 57.2805,42.8998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.2805,42.8998 L 57.2805,36.1025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 59.4302,49.6972 L 67.5008,54.3533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 67.5008,54.3533 L 75.5713,59.0094' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 80.5506,59.0094 L 88.6212,54.3533' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 88.6212,54.3533 L 96.6917,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 96.6917,49.6972 L 115.321,60.4457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.321,60.4457 L 115.321,67.3828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.321,67.3828 L 115.321,74.3199' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 116.395,62.3077 L 132.878,47.8352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 114.247,58.5837 L 135.026,51.5592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.952,49.6972 L 140.012,53.1933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 140.012,53.1933 L 146.072,56.6894' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 39.4538 57.4017\\nL 41.4487 60.6263\\nQ 41.6465 60.9444, 41.9646 61.5206\\nQ 42.2828 62.0967, 42.3 62.1311\\nL 42.3 57.4017\\nL 43.1083 57.4017\\nL 43.1083 63.4897\\nL 42.2742 63.4897\\nL 40.1331 59.9642\\nQ 39.8837 59.5514, 39.6171 59.0785\\nQ 39.3592 58.6056, 39.2818 58.4594\\nL 39.2818 63.4897\\nL 38.4907 63.4897\\nL 38.4907 57.4017\\nL 39.4538 57.4017\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 56.6356 32.5168\\nQ 56.6356 31.055, 57.3579 30.2381\\nQ 58.0802 29.4212, 59.4302 29.4212\\nQ 60.7802 29.4212, 61.5025 30.2381\\nQ 62.2248 31.055, 62.2248 32.5168\\nQ 62.2248 33.9958, 61.4939 34.8385\\nQ 60.763 35.6725, 59.4302 35.6725\\nQ 58.0888 35.6725, 57.3579 34.8385\\nQ 56.6356 34.0044, 56.6356 32.5168\\nM 59.4302 34.9846\\nQ 60.3589 34.9846, 60.8576 34.3655\\nQ 61.365 33.7378, 61.365 32.5168\\nQ 61.365 31.3215, 60.8576 30.7196\\nQ 60.3589 30.1091, 59.4302 30.1091\\nQ 58.5016 30.1091, 57.9942 30.711\\nQ 57.4955 31.3129, 57.4955 32.5168\\nQ 57.4955 33.7464, 57.9942 34.3655\\nQ 58.5016 34.9846, 59.4302 34.9846\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 76.3412 62.5352\\nQ 76.41 62.561, 76.6938 62.6814\\nQ 76.9775 62.8018, 77.2871 62.8792\\nQ 77.6052 62.948, 77.9148 62.948\\nQ 78.4909 62.948, 78.8263 62.6728\\nQ 79.1616 62.389, 79.1616 61.8989\\nQ 79.1616 61.5635, 78.9896 61.3572\\nQ 78.8263 61.1508, 78.5683 61.039\\nQ 78.3103 60.9272, 77.8804 60.7983\\nQ 77.3387 60.6349, 77.0119 60.4801\\nQ 76.6938 60.3253, 76.4616 59.9986\\nQ 76.238 59.6718, 76.238 59.1215\\nQ 76.238 58.3562, 76.754 57.8833\\nQ 77.2785 57.4103, 78.3103 57.4103\\nQ 79.0154 57.4103, 79.8151 57.7457\\nL 79.6174 58.4078\\nQ 78.8865 58.1068, 78.3361 58.1068\\nQ 77.7428 58.1068, 77.4161 58.3562\\nQ 77.0893 58.597, 77.0979 59.0183\\nQ 77.0979 59.3451, 77.2613 59.5428\\nQ 77.4333 59.7406, 77.674 59.8524\\nQ 77.9234 59.9642, 78.3361 60.0932\\nQ 78.8865 60.2651, 79.2132 60.4371\\nQ 79.54 60.6091, 79.7721 60.9616\\nQ 80.0129 61.3056, 80.0129 61.8989\\nQ 80.0129 62.7416, 79.4454 63.1973\\nQ 78.8865 63.6445, 77.9492 63.6445\\nQ 77.4075 63.6445, 76.9947 63.5241\\nQ 76.5906 63.4123, 76.109 63.2145\\nL 76.3412 62.5352\\n' fill='#CCCC00'/>\\n<path class='atom-12' d='M 112.974 77.854\\nQ 112.974 76.3406, 113.679 75.5495\\nQ 114.392 74.7498, 115.742 74.7498\\nQ 116.998 74.7498, 117.669 75.6355\\nL 117.101 76.0998\\nQ 116.611 75.4549, 115.742 75.4549\\nQ 114.822 75.4549, 114.332 76.074\\nQ 113.851 76.6846, 113.851 77.854\\nQ 113.851 79.0578, 114.349 79.6769\\nQ 114.857 80.296, 115.837 80.296\\nQ 116.508 80.296, 117.29 79.8919\\nL 117.531 80.5368\\nQ 117.213 80.7432, 116.731 80.8636\\nQ 116.25 80.984, 115.717 80.984\\nQ 114.392 80.984, 113.679 80.1757\\nQ 112.974 79.3674, 112.974 77.854\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 118.408 74.3801\\nL 119.199 74.3801\\nL 119.199 80.9066\\nL 118.408 80.9066\\nL 118.408 74.3801\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 146.502 58.5024\\nQ 146.502 56.989, 147.207 56.1979\\nQ 147.921 55.3982, 149.271 55.3982\\nQ 150.526 55.3982, 151.197 56.2839\\nL 150.629 56.7482\\nQ 150.139 56.1033, 149.271 56.1033\\nQ 148.35 56.1033, 147.86 56.7224\\nQ 147.379 57.3329, 147.379 58.5024\\nQ 147.379 59.7062, 147.878 60.3253\\nQ 148.385 60.9444, 149.365 60.9444\\nQ 150.036 60.9444, 150.818 60.5403\\nL 151.059 61.1852\\nQ 150.741 61.3916, 150.259 61.512\\nQ 149.778 61.6323, 149.245 61.6323\\nQ 147.921 61.6323, 147.207 60.8241\\nQ 146.502 60.0158, 146.502 58.5024\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 151.936 55.0285\\nL 152.727 55.0285\\nL 152.727 61.555\\nL 151.936 61.555\\nL 151.936 55.0285\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 177, "data-ID": 893, "data-Solubility": -4.08, "data-SMILES": "CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl", "mols2grid-tooltip": "<strong>Name</strong>: diallate<br><strong>SMILES</strong>: CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.08</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.235,36.1475 L 102.168,39.0614' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.168,39.0614 L 97.101,41.9753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.094,39.3803 L 104.027,42.2942' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.027,42.2942 L 98.9601,45.2081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.0306,43.5917 L 98.0192,51.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.0192,51.3516 L 98.0078,59.1116' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 98.0306,43.5917 L 81.8914,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.894,63.9249 L 107.517,67.7674' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.517,67.7674 L 114.141,71.61' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.141,71.61 L 114.115,90.2664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.115,90.2664 L 130.253,99.6282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 130.253,99.6282 L 130.232,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 81.8914,34.2299 L 81.8914,15.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.1621,31.4329 L 78.1621,18.3803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-13' d='M 81.8914,34.2299 L 65.7435,43.5531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 81.8914,15.5833 L 65.7435,6.26008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.7435,6.26008 L 49.5956,15.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.186,10.8882 L 53.8825,17.4145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 49.5956,15.5833 L 44.5343,12.6614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 44.5343,12.6614 L 39.473,9.73947' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 49.5956,15.5833 L 49.5956,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-12' d='M 65.7435,43.5531 L 49.5956,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-12' d='M 65.186,38.925 L 53.8825,32.3987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 108.537 36.1704\\nQ 108.537 34.9024, 109.164 34.1938\\nQ 109.79 33.4853, 110.961 33.4853\\nQ 112.132 33.4853, 112.759 34.1938\\nQ 113.385 34.9024, 113.385 36.1704\\nQ 113.385 37.4532, 112.751 38.1842\\nQ 112.117 38.9077, 110.961 38.9077\\nQ 109.798 38.9077, 109.164 38.1842\\nQ 108.537 37.4607, 108.537 36.1704\\nM 110.961 38.311\\nQ 111.767 38.311, 112.199 37.774\\nQ 112.64 37.2295, 112.64 36.1704\\nQ 112.64 35.1336, 112.199 34.6115\\nQ 111.767 34.0819, 110.961 34.0819\\nQ 110.156 34.0819, 109.716 34.604\\nQ 109.283 35.1261, 109.283 36.1704\\nQ 109.283 37.2369, 109.716 37.774\\nQ 110.156 38.311, 110.961 38.311\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 95.5792 62.2631\\nQ 95.5792 60.9951, 96.2057 60.2865\\nQ 96.8322 59.578, 98.0032 59.578\\nQ 99.1742 59.578, 99.8008 60.2865\\nQ 100.427 60.9951, 100.427 62.2631\\nQ 100.427 63.5459, 99.7933 64.2769\\nQ 99.1593 65.0004, 98.0032 65.0004\\nQ 96.8397 65.0004, 96.2057 64.2769\\nQ 95.5792 63.5534, 95.5792 62.2631\\nM 98.0032 64.4037\\nQ 98.8088 64.4037, 99.2414 63.8667\\nQ 99.6814 63.3222, 99.6814 62.2631\\nQ 99.6814 61.2263, 99.2414 60.7042\\nQ 98.8088 60.1747, 98.0032 60.1747\\nQ 97.1977 60.1747, 96.7576 60.6968\\nQ 96.325 61.2189, 96.325 62.2631\\nQ 96.325 63.3296, 96.7576 63.8667\\nQ 97.1977 64.4037, 98.0032 64.4037\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 29.747 5.51421\\nL 30.463 5.51421\\nL 30.463 7.75926\\nL 33.163 7.75926\\nL 33.163 5.51421\\nL 33.879 5.51421\\nL 33.879 10.7949\\nL 33.163 10.7949\\nL 33.163 8.35595\\nL 30.463 8.35595\\nL 30.463 10.7949\\nL 29.747 10.7949\\nL 29.747 5.51421\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 34.252 8.13965\\nQ 34.252 6.87168, 34.8785 6.16311\\nQ 35.505 5.45455, 36.676 5.45455\\nQ 37.847 5.45455, 38.4736 6.16311\\nQ 39.1001 6.87168, 39.1001 8.13965\\nQ 39.1001 9.42253, 38.4661 10.1535\\nQ 37.8321 10.877, 36.676 10.877\\nQ 35.5125 10.877, 34.8785 10.1535\\nQ 34.252 9.42999, 34.252 8.13965\\nM 36.676 10.2803\\nQ 37.4816 10.2803, 37.9142 9.74325\\nQ 38.3542 9.19877, 38.3542 8.13965\\nQ 38.3542 7.1029, 37.9142 6.5808\\nQ 37.4816 6.05123, 36.676 6.05123\\nQ 35.8705 6.05123, 35.4304 6.57334\\nQ 34.9978 7.09544, 34.9978 8.13965\\nQ 34.9978 9.20623, 35.4304 9.74325\\nQ 35.8705 10.2803, 36.676 10.2803\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 178, "data-ID": 898, "data-Solubility": -2.72, "data-SMILES": "O=C(OCCCC)c(ccc(O)c1)c1", "mols2grid-tooltip": "<strong>Name</strong>: butyl-p-hydroxybenzoate<br><strong>SMILES</strong>: O=C(OCCCC)c(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.72</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.855,52.9342 L 103.788,55.8484' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.788,55.8484 L 98.7202,58.7626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 110.714,56.1674 L 105.647,59.0816' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.647,59.0816 L 100.58,61.9958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6499,60.3792 L 99.6385,68.1399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6385,68.1399 L 99.6271,75.9007' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 99.6499,60.3792 L 83.509,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.513,80.7145 L 109.138,84.5574' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.138,84.5574 L 115.762,88.4003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.762,88.4003 L 115.736,107.059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 115.736,107.059 L 128.641,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 83.509,51.0164 L 83.509,32.368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.7793,48.2192 L 79.7793,35.1652' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-6 atom-14' d='M 83.509,51.0164 L 67.3595,60.3406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.509,32.368 L 67.3595,23.0438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 67.3595,23.0438 L 67.3595,17.1471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 67.3595,17.1471 L 67.3595,11.2505' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 67.3595,23.0438 L 51.2099,32.368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 66.8019,27.6724 L 55.4972,34.1993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 51.2099,32.368 L 46.1481,29.4457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 46.1481,29.4457 L 41.0863,26.5235' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 51.2099,32.368 L 51.2099,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 51.2099,51.0164 L 46.1481,53.9387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 46.1481,53.9387 L 41.0863,56.8609' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-12' d='M 67.3595,60.3406 L 51.2099,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-12' d='M 66.8019,55.712 L 55.4972,49.1851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.158 52.9571\\nQ 110.158 51.689, 110.784 50.9804\\nQ 111.411 50.2717, 112.582 50.2717\\nQ 113.753 50.2717, 114.38 50.9804\\nQ 115.006 51.689, 115.006 52.9571\\nQ 115.006 54.2401, 114.372 54.9711\\nQ 113.738 55.6947, 112.582 55.6947\\nQ 111.418 55.6947, 110.784 54.9711\\nQ 110.158 54.2476, 110.158 52.9571\\nM 112.582 55.0979\\nQ 113.388 55.0979, 113.82 54.5609\\nQ 114.26 54.0163, 114.26 52.9571\\nQ 114.26 51.9203, 113.82 51.3981\\nQ 113.388 50.8685, 112.582 50.8685\\nQ 111.776 50.8685, 111.336 51.3906\\nQ 110.904 51.9128, 110.904 52.9571\\nQ 110.904 54.0238, 111.336 54.5609\\nQ 111.776 55.0979, 112.582 55.0979\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 97.1982 79.0525\\nQ 97.1982 77.7844, 97.8248 77.0758\\nQ 98.4514 76.3671, 99.6225 76.3671\\nQ 100.794 76.3671, 101.42 77.0758\\nQ 102.047 77.7844, 102.047 79.0525\\nQ 102.047 80.3355, 101.413 81.0665\\nQ 100.779 81.7901, 99.6225 81.7901\\nQ 98.4589 81.7901, 97.8248 81.0665\\nQ 97.1982 80.343, 97.1982 79.0525\\nM 99.6225 81.1933\\nQ 100.428 81.1933, 100.861 80.6563\\nQ 101.301 80.1117, 101.301 79.0525\\nQ 101.301 78.0156, 100.861 77.4935\\nQ 100.428 76.9639, 99.6225 76.9639\\nQ 98.8169 76.9639, 98.3768 77.486\\nQ 97.9442 78.0082, 97.9442 79.0525\\nQ 97.9442 80.1192, 98.3768 80.6563\\nQ 98.8169 81.1933, 99.6225 81.1933\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 64.9352 8.13992\\nQ 64.9352 6.87183, 65.5618 6.16319\\nQ 66.1883 5.45455, 67.3595 5.45455\\nQ 68.5306 5.45455, 69.1572 6.16319\\nQ 69.7838 6.87183, 69.7838 8.13992\\nQ 69.7838 9.42293, 69.1497 10.154\\nQ 68.5157 10.8775, 67.3595 10.8775\\nQ 66.1958 10.8775, 65.5618 10.154\\nQ 64.9352 9.43039, 64.9352 8.13992\\nM 67.3595 10.2808\\nQ 68.1651 10.2808, 68.5977 9.74369\\nQ 69.0378 9.19915, 69.0378 8.13992\\nQ 69.0378 7.10307, 68.5977 6.58091\\nQ 68.1651 6.0513, 67.3595 6.0513\\nQ 66.5539 6.0513, 66.1137 6.57345\\nQ 65.6811 7.09561, 65.6811 8.13992\\nQ 65.6811 9.20661, 66.1137 9.74369\\nQ 66.5539 10.2808, 67.3595 10.2808\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 70.4178 5.51422\\nL 71.1339 5.51422\\nL 71.1339 7.75949\\nL 73.8342 7.75949\\nL 73.8342 5.51422\\nL 74.5503 5.51422\\nL 74.5503 10.7955\\nL 73.8342 10.7955\\nL 73.8342 8.35624\\nL 71.1339 8.35624\\nL 71.1339 10.7955\\nL 70.4178 10.7955\\nL 70.4178 5.51422\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 31.3593 22.2978\\nL 32.0754 22.2978\\nL 32.0754 24.5431\\nL 34.7757 24.5431\\nL 34.7757 22.2978\\nL 35.4918 22.2978\\nL 35.4918 27.5791\\nL 34.7757 27.5791\\nL 34.7757 25.1398\\nL 32.0754 25.1398\\nL 32.0754 27.5791\\nL 31.3593 27.5791\\nL 31.3593 22.2978\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 35.8647 24.9235\\nQ 35.8647 23.6554, 36.4913 22.9468\\nQ 37.1179 22.2381, 38.289 22.2381\\nQ 39.4601 22.2381, 40.0867 22.9468\\nQ 40.7133 23.6554, 40.7133 24.9235\\nQ 40.7133 26.2065, 40.0793 26.9376\\nQ 39.4452 27.6611, 38.289 27.6611\\nQ 37.1254 27.6611, 36.4913 26.9376\\nQ 35.8647 26.214, 35.8647 24.9235\\nM 38.289 27.0644\\nQ 39.0946 27.0644, 39.5273 26.5273\\nQ 39.9674 25.9828, 39.9674 24.9235\\nQ 39.9674 23.8867, 39.5273 23.3645\\nQ 39.0946 22.8349, 38.289 22.8349\\nQ 37.4834 22.8349, 37.0433 23.3571\\nQ 36.6107 23.8792, 36.6107 24.9235\\nQ 36.6107 25.9902, 37.0433 26.5273\\nQ 37.4834 27.0644, 38.289 27.0644\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 31.3593 55.865\\nL 32.0754 55.865\\nL 32.0754 58.1103\\nL 34.7757 58.1103\\nL 34.7757 55.865\\nL 35.4918 55.865\\nL 35.4918 61.1463\\nL 34.7757 61.1463\\nL 34.7757 58.707\\nL 32.0754 58.707\\nL 32.0754 61.1463\\nL 31.3593 61.1463\\nL 31.3593 55.865\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 35.8647 58.4907\\nQ 35.8647 57.2226, 36.4913 56.514\\nQ 37.1179 55.8053, 38.289 55.8053\\nQ 39.4601 55.8053, 40.0867 56.514\\nQ 40.7133 57.2226, 40.7133 58.4907\\nQ 40.7133 59.7737, 40.0793 60.5048\\nQ 39.4452 61.2283, 38.289 61.2283\\nQ 37.1254 61.2283, 36.4913 60.5048\\nQ 35.8647 59.7812, 35.8647 58.4907\\nM 38.289 60.6316\\nQ 39.0946 60.6316, 39.5273 60.0945\\nQ 39.9674 59.55, 39.9674 58.4907\\nQ 39.9674 57.4539, 39.5273 56.9317\\nQ 39.0946 56.4021, 38.289 56.4021\\nQ 37.4834 56.4021, 37.0433 56.9243\\nQ 36.6107 57.4464, 36.6107 58.4907\\nQ 36.6107 59.5574, 37.0433 60.0945\\nQ 37.4834 60.6316, 38.289 60.6316\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 179, "data-ID": 903, "data-Solubility": -1.78, "data-SMILES": "O=C(OCCC)c(cc(O)c(O)c1O)c1", "mols2grid-tooltip": "<strong>Name</strong>: propyl_gallate<br><strong>SMILES</strong>: O=C(OCCC)c(cc(O)c(O)c1O)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.78</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.512,114.545 L 120.81,107.756' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.81,107.756 L 120.833,90.8362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 120.833,90.8362 L 106.197,82.3457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 106.197,82.3457 L 106.221,65.4256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.221,65.4256 L 100.214,61.9408' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.214,61.9408 L 94.2066,58.4559' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5893,54.0905 L 91.5996,47.0528' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5996,47.0528 L 91.61,40.0151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 92.453,41.4811 L 97.0483,38.8384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.0483,38.8384 L 101.644,36.1957' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.7669,38.5491 L 95.3622,35.9064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.3622,35.9064 L 99.9575,33.2638' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 91.61,40.0151 L 76.9729,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 76.9729,31.5246 L 76.9729,14.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 73.5907,28.988 L 73.5907,17.1502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 62.3279,39.9801 L 76.9729,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 76.9729,14.6136 L 62.3279,6.15805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 62.3279,6.15805 L 47.6829,14.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 61.8223,10.3554 L 51.5708,16.2743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 47.6829,14.6136 L 42.9016,11.8533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 42.9016,11.8533 L 38.1203,9.09296' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 47.6829,14.6136 L 47.6829,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 47.6829,31.5246 L 62.3279,39.9801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 51.5708,29.8639 L 61.8223,35.7828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 89.3867 56.9487\\nQ 89.3867 55.7987, 89.9549 55.1561\\nQ 90.5231 54.5135, 91.5851 54.5135\\nQ 92.6472 54.5135, 93.2154 55.1561\\nQ 93.7836 55.7987, 93.7836 56.9487\\nQ 93.7836 58.1122, 93.2086 58.7751\\nQ 92.6336 59.4312, 91.5851 59.4312\\nQ 90.5299 59.4312, 89.9549 58.7751\\nQ 89.3867 58.1189, 89.3867 56.9487\\nM 91.5851 58.8901\\nQ 92.3157 58.8901, 92.708 58.403\\nQ 93.1071 57.9092, 93.1071 56.9487\\nQ 93.1071 56.0084, 92.708 55.5349\\nQ 92.3157 55.0546, 91.5851 55.0546\\nQ 90.8546 55.0546, 90.4555 55.5282\\nQ 90.0632 56.0017, 90.0632 56.9487\\nQ 90.0632 57.916, 90.4555 58.403\\nQ 90.8546 58.8901, 91.5851 58.8901\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 101.139 33.2845\\nQ 101.139 32.1345, 101.707 31.4919\\nQ 102.275 30.8493, 103.337 30.8493\\nQ 104.399 30.8493, 104.967 31.4919\\nQ 105.536 32.1345, 105.536 33.2845\\nQ 105.536 34.448, 104.961 35.1109\\nQ 104.386 35.767, 103.337 35.767\\nQ 102.282 35.767, 101.707 35.1109\\nQ 101.139 34.4547, 101.139 33.2845\\nM 103.337 35.2259\\nQ 104.068 35.2259, 104.46 34.7388\\nQ 104.859 34.245, 104.859 33.2845\\nQ 104.859 32.3442, 104.46 31.8707\\nQ 104.068 31.3905, 103.337 31.3905\\nQ 102.607 31.3905, 102.208 31.864\\nQ 101.815 32.3375, 101.815 33.2845\\nQ 101.815 34.2518, 102.208 34.7388\\nQ 102.607 35.2259, 103.337 35.2259\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 27.4879 5.45455\\nL 28.1372 5.45455\\nL 28.1372 7.49064\\nL 30.586 7.49064\\nL 30.586 5.45455\\nL 31.2354 5.45455\\nL 31.2354 10.2438\\nL 30.586 10.2438\\nL 30.586 8.03179\\nL 28.1372 8.03179\\nL 28.1372 10.2438\\nL 27.4879 10.2438\\nL 27.4879 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 31.4675 10.0757\\nQ 31.5836 9.7766, 31.8604 9.61142\\nQ 32.1372 9.44176, 32.5211 9.44176\\nQ 32.9988 9.44176, 33.2667 9.70071\\nQ 33.5346 9.95965, 33.5346 10.4195\\nQ 33.5346 10.8883, 33.1863 11.3258\\nQ 32.8426 11.7633, 32.1283 12.2812\\nL 33.5882 12.2812\\nL 33.5882 12.6384\\nL 31.4586 12.6384\\nL 31.4586 12.3392\\nQ 32.0479 11.9196, 32.3961 11.6071\\nQ 32.7488 11.2945, 32.9185 11.0133\\nQ 33.0881 10.732, 33.0881 10.4418\\nQ 33.0881 10.1382, 32.9363 9.96858\\nQ 32.7845 9.79893, 32.5211 9.79893\\nQ 32.2667 9.79893, 32.097 9.90161\\nQ 31.9274 10.0043, 31.8068 10.232\\nL 31.4675 10.0757\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 34.9072 5.45455\\nL 36.4766 7.9912\\nQ 36.6321 8.24149, 36.8824 8.6947\\nQ 37.1327 9.14792, 37.1462 9.17498\\nL 37.1462 5.45455\\nL 37.7821 5.45455\\nL 37.7821 10.2438\\nL 37.1259 10.2438\\nL 35.4416 7.47034\\nQ 35.2454 7.14565, 35.0357 6.77361\\nQ 34.8328 6.40156, 34.7719 6.28657\\nL 34.7719 10.2438\\nL 34.1496 10.2438\\nL 34.1496 5.45455\\nL 34.9072 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 180, "data-ID": 908, "data-Solubility": -3.26, "data-SMILES": "CCCCCOC(=O)c1ccc(N)cc1", "mols2grid-tooltip": "<strong>Name</strong>: pentyl-4-aminobenzoate<br><strong>SMILES</strong>: CCCCCOC(=O)c1ccc(N)cc1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.26</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 61.8374,49.4285 L 43.6427,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-0 atom-7' d='M 61.8374,49.4285 L 80.042,38.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-0 atom-7' d='M 66.6619,51.4986 L 79.4051,44.1696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 61.8374,49.4285 L 61.8066,70.4273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 43.6427,38.9235 L 43.6427,17.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 39.4429,35.7737 L 39.4429,21.0745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 43.6427,38.9235 L 25.4577,49.4229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.6427,17.9247 L 25.4577,7.42528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 25.4577,7.42528 L 7.27273,17.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 24.8299,12.6373 L 12.1004,19.9869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 7.27273,17.9247 L 7.27273,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 25.4577,49.4229 L 7.27273,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 24.8299,44.2109 L 12.1004,36.8613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.042,38.9585 L 98.2102,49.4859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 98.2102,49.4859 L 98.1766,70.4847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 94.0054,52.629 L 93.9819,67.3282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 98.1766,70.4847 L 116.355,81.0191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-16' d='M 98.1766,70.4847 L 79.9748,80.9561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 116.355,81.0191 L 134.575,70.5785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 121.176,83.0969 L 133.93,75.7885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 116.355,81.0191 L 116.29,102.018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 134.575,70.5785 L 152.727,81.1353' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 152.727,81.1353 L 152.66,102.134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 148.517,84.2717 L 148.47,98.9708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 152.66,102.134 L 134.442,112.575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 116.29,102.018 L 134.442,112.575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 121.124,99.971 L 133.83,107.361' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-16' d='M 61.8066,70.4273 L 79.9748,80.9561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-16' d='M 66.6376,68.3729 L 79.3554,75.7431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 181, "data-ID": 913, "data-Solubility": -7.11, "data-SMILES": "c(c(cccc1)c1)(ccc(c(cccc2)c2)c3)c3", "mols2grid-tooltip": "<strong>Name</strong>: p-terphenyl<br><strong>SMILES</strong>: c(c(cccc1)c1)(ccc(c(cccc2)c2)c3)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.11</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.782,104.824 L 116.578,100.065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.578,100.065 L 108.373,95.306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.744,110.062 L 113.54,105.303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.54,105.303 L 105.335,100.544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.854,97.9248 L 106.873,85.3016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.873,85.3016 L 106.891,72.6783' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 106.854,97.9248 L 85.8581,109.998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.89,65.3088 L 91.7927,58.8716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.7927,58.8716 L 80.6953,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.6953,52.4344 L 80.6953,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 74.6404,47.8933 L 74.6404,26.7011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 80.6953,52.4344 L 54.4776,67.5716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.6953,22.16 L 54.4776,7.02276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-8' d='M 80.6953,22.16 L 89.2276,17.2342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-8' d='M 89.2276,17.2342 L 97.76,12.3084' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.4776,7.02276 L 28.26,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 53.5725,14.537 L 35.2201,25.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 28.26,22.16 L 28.26,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 54.4776,67.5716 L 28.26,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 53.5725,60.0574 L 35.2201,49.4614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 123.869 110.101\\nQ 123.869 108.043, 124.886 106.892\\nQ 125.903 105.742, 127.804 105.742\\nQ 129.706 105.742, 130.723 106.892\\nQ 131.74 108.043, 131.74 110.101\\nQ 131.74 112.184, 130.711 113.371\\nQ 129.681 114.545, 127.804 114.545\\nQ 125.915 114.545, 124.886 113.371\\nQ 123.869 112.196, 123.869 110.101\\nM 127.804 113.577\\nQ 129.112 113.577, 129.815 112.705\\nQ 130.529 111.821, 130.529 110.101\\nQ 130.529 108.418, 129.815 107.57\\nQ 129.112 106.71, 127.804 106.71\\nQ 126.496 106.71, 125.782 107.558\\nQ 125.08 108.406, 125.08 110.101\\nQ 125.08 111.833, 125.782 112.705\\nQ 126.496 113.577, 127.804 113.577\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 105.004 63.3473\\nL 107.813 67.8885\\nQ 108.092 68.3366, 108.54 69.1479\\nQ 108.988 69.9593, 109.012 70.0077\\nL 109.012 63.3473\\nL 110.15 63.3473\\nL 110.15 71.9211\\nL 108.976 71.9211\\nL 105.96 66.9561\\nQ 105.609 66.3748, 105.234 65.7087\\nQ 104.87 65.0427, 104.761 64.8368\\nL 104.761 71.9211\\nL 103.647 71.9211\\nL 103.647 63.3473\\nL 105.004 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 111.18 63.3473\\nL 112.342 63.3473\\nL 112.342 66.9924\\nL 116.726 66.9924\\nL 116.726 63.3473\\nL 117.888 63.3473\\nL 117.888 71.9211\\nL 116.726 71.9211\\nL 116.726 67.9612\\nL 112.342 67.9612\\nL 112.342 71.9211\\nL 111.18 71.9211\\nL 111.18 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 98.3655 10.3469\\nQ 98.3655 8.21557, 99.3585 7.10147\\nQ 100.364 5.97527, 102.265 5.97527\\nQ 104.033 5.97527, 104.977 7.22257\\nL 104.178 7.8765\\nQ 103.488 6.96827, 102.265 6.96827\\nQ 100.969 6.96827, 100.279 7.84017\\nQ 99.6007 8.69997, 99.6007 10.3469\\nQ 99.6007 12.0423, 100.303 12.9142\\nQ 101.018 13.7861, 102.398 13.7861\\nQ 103.343 13.7861, 104.445 13.2169\\nL 104.784 14.1251\\nQ 104.336 14.4158, 103.657 14.5853\\nQ 102.979 14.7549, 102.229 14.7549\\nQ 100.364 14.7549, 99.3585 13.6165\\nQ 98.3655 12.4782, 98.3655 10.3469\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 106.019 5.45455\\nL 107.133 5.45455\\nL 107.133 14.6459\\nL 106.019 14.6459\\nL 106.019 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 182, "data-ID": 918, "data-Solubility": -1.4, "data-SMILES": "O=C(Nc(c(ccc1)Cl)c1)C", "mols2grid-tooltip": "<strong>Name</strong>: 2-chloroacetanilide<br><strong>SMILES</strong>: O=C(Nc(c(ccc1)Cl)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.4</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.2475,87.5413 L 96.2475,71.915' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.2475,71.915 L 96.2475,56.2888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 91.2825,96.6554 L 77.5275,104.597' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 77.5275,104.597 L 63.7725,112.539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.2475,56.2888 L 63.7725,37.5388' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 96.2475,56.2888 L 128.702,37.4613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 63.7725,37.5388 L 31.2975,56.2888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 31.2975,56.2888 L 31.2975,93.7888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-4' d='M 63.7725,112.539 L 31.2975,93.7888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 128.702,37.4613 L 128.66,7.46125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 93.9 88.4788\\nL 97.38 94.1038\\nQ 97.725 94.6588, 98.28 95.6638\\nQ 98.835 96.6688, 98.865 96.7288\\nL 98.865 88.4788\\nL 100.275 88.4788\\nL 100.275 99.0988\\nL 98.82 99.0988\\nL 95.085 92.9488\\nQ 94.65 92.2288, 94.185 91.4038\\nQ 93.735 90.5788, 93.6 90.3238\\nL 93.6 99.0988\\nL 92.22 99.0988\\nL 92.22 88.4788\\nL 93.9 88.4788\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 101.55 88.4788\\nL 102.99 88.4788\\nL 102.99 92.9938\\nL 108.42 92.9938\\nL 108.42 88.4788\\nL 109.86 88.4788\\nL 109.86 99.0988\\nL 108.42 99.0988\\nL 108.42 94.1938\\nL 102.99 94.1938\\nL 102.99 99.0988\\nL 101.55 99.0988\\nL 101.55 88.4788\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 183, "data-ID": 923, "data-Solubility": -1.5, "data-SMILES": "N(C(CCC1)CC)C1", "mols2grid-tooltip": "<strong>Name</strong>: coniine<br><strong>SMILES</strong>: N(C(CCC1)CC)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.5</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.684,74.423 L 134.66,68.6079' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.66,68.6079 L 124.635,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 149.052,81.6899 L 149.039,90.6127' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 149.039,90.6127 L 149.027,99.5354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.635,62.7927 L 124.635,34.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.991,58.5599 L 118.991,38.8068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 124.635,62.7927 L 100.197,76.9021' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.635,34.574 L 100.197,20.4646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.197,20.4646 L 75.7597,34.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.3534,27.4686 L 82.2472,37.3451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.7597,34.574 L 75.7597,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 75.7597,34.574 L 51.2789,20.5078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-5' d='M 100.197,76.9021 L 75.7597,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-5' d='M 99.3534,69.8981 L 82.2472,60.0215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.2789,20.5078 L 26.8471,34.6586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 28.2529,32.2118 L 8.67849,20.9657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.4414,37.1054 L 5.86697,25.8593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.39 76.983\\nQ 145.39 75.0641, 146.339 73.9918\\nQ 147.287 72.9195, 149.059 72.9195\\nQ 150.831 72.9195, 151.779 73.9918\\nQ 152.727 75.0641, 152.727 76.983\\nQ 152.727 78.9244, 151.768 80.0306\\nQ 150.808 81.1255, 149.059 81.1255\\nQ 147.298 81.1255, 146.339 80.0306\\nQ 145.39 78.9357, 145.39 76.983\\nM 149.059 80.2225\\nQ 150.278 80.2225, 150.933 79.4098\\nQ 151.599 78.5858, 151.599 76.983\\nQ 151.599 75.414, 150.933 74.6239\\nQ 150.278 73.8225, 149.059 73.8225\\nQ 147.84 73.8225, 147.174 74.6126\\nQ 146.519 75.4027, 146.519 76.983\\nQ 146.519 78.5971, 147.174 79.4098\\nQ 147.84 80.2225, 149.059 80.2225\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 184, "data-ID": 928, "data-Solubility": -2.92, "data-SMILES": "O(c(ccc(c1)CC=C)c1)C", "mols2grid-tooltip": "<strong>Name</strong>: estragole<br><strong>SMILES</strong>: O(c(ccc(c1)CC=C)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.92</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.239,75.0811 L 111.174,71.002' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.174,71.002 L 104.108,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.108,66.9229 L 104.108,41.8522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.0938,63.1622 L 99.0938,45.6128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 82.3968,79.4582 L 104.108,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 104.108,41.8522 L 111.174,37.773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.174,37.773 L 118.239,33.6939' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 104.108,41.8522 L 82.3968,29.3168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.3968,29.3168 L 82.3968,21.4872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.3968,21.4872 L 82.3968,13.6577' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 82.3968,29.3168 L 60.6855,41.8522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 81.6472,35.5395 L 66.4493,44.3142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 60.6855,41.8522 L 52.4816,37.1159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.4816,37.1159 L 44.2776,32.3797' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 60.6855,41.8522 L 60.6855,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 60.6855,66.9229 L 53.8805,70.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.8805,70.8515 L 47.0755,74.7801' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 60.6855,66.9229 L 82.3968,79.4582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 66.4493,64.4608 L 81.6472,73.2356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.3968,79.4582 L 82.4183,89.8916' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.4183,89.8916 L 82.4399,100.325' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.2092,106.706 L 93.0209,110.626' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 93.0209,110.626 L 99.8326,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.741 77.1968\\nQ 118.741 75.4318, 119.563 74.5092\\nQ 120.396 73.5766, 121.97 73.5766\\nQ 123.434 73.5766, 124.216 74.6095\\nL 123.554 75.1511\\nQ 122.983 74.3989, 121.97 74.3989\\nQ 120.897 74.3989, 120.325 75.121\\nQ 119.764 75.833, 119.764 77.1968\\nQ 119.764 78.6008, 120.345 79.3228\\nQ 120.937 80.0448, 122.08 80.0448\\nQ 122.863 80.0448, 123.775 79.5735\\nL 124.056 80.3256\\nQ 123.685 80.5663, 123.123 80.7067\\nQ 122.562 80.8471, 121.94 80.8471\\nQ 120.396 80.8471, 119.563 79.9045\\nQ 118.741 78.9618, 118.741 77.1968\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 125.079 73.1454\\nL 126.001 73.1454\\nL 126.001 80.7569\\nL 125.079 80.7569\\nL 125.079 73.1454\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 118.741 32.0696\\nQ 118.741 30.3046, 119.563 29.382\\nQ 120.396 28.4494, 121.97 28.4494\\nQ 123.434 28.4494, 124.216 29.4823\\nL 123.554 30.0238\\nQ 122.983 29.2717, 121.97 29.2717\\nQ 120.897 29.2717, 120.325 29.9937\\nQ 119.764 30.7057, 119.764 32.0696\\nQ 119.764 33.4735, 120.345 34.1956\\nQ 120.937 34.9176, 122.08 34.9176\\nQ 122.863 34.9176, 123.775 34.4463\\nL 124.056 35.1984\\nQ 123.685 35.4391, 123.123 35.5795\\nQ 122.562 35.7199, 121.94 35.7199\\nQ 120.396 35.7199, 119.563 34.7772\\nQ 118.741 33.8346, 118.741 32.0696\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 125.079 28.0182\\nL 126.001 28.0182\\nL 126.001 35.6296\\nL 125.079 35.6296\\nL 125.079 28.0182\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 79.659 9.50597\\nQ 79.659 7.74099, 80.4814 6.81839\\nQ 81.3137 5.88576, 82.8881 5.88576\\nQ 84.3523 5.88576, 85.1345 6.91867\\nL 84.4726 7.4602\\nQ 83.901 6.70808, 82.8881 6.70808\\nQ 81.8151 6.70808, 81.2435 7.43012\\nQ 80.6819 8.14212, 80.6819 9.50597\\nQ 80.6819 10.9099, 81.2636 11.632\\nQ 81.8552 12.354, 82.9985 12.354\\nQ 83.7807 12.354, 84.6932 11.8827\\nL 84.974 12.6348\\nQ 84.603 12.8755, 84.0414 13.0159\\nQ 83.4798 13.1563, 82.8581 13.1563\\nQ 81.3137 13.1563, 80.4814 12.2136\\nQ 79.659 11.2709, 79.659 9.50597\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 85.9969 5.45455\\nL 86.9195 5.45455\\nL 86.9195 13.066\\nL 85.9969 13.066\\nL 85.9969 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 36.5157 32.0696\\nQ 36.5157 30.3046, 37.3381 29.382\\nQ 38.1704 28.4494, 39.7448 28.4494\\nQ 41.209 28.4494, 41.9912 29.4823\\nL 41.3293 30.0238\\nQ 40.7577 29.2717, 39.7448 29.2717\\nQ 38.6718 29.2717, 38.1002 29.9937\\nQ 37.5386 30.7057, 37.5386 32.0696\\nQ 37.5386 33.4735, 38.1203 34.1956\\nQ 38.7119 34.9176, 39.8551 34.9176\\nQ 40.6374 34.9176, 41.5499 34.4463\\nL 41.8307 35.1984\\nQ 41.4597 35.4391, 40.8981 35.5795\\nQ 40.3365 35.7199, 39.7148 35.7199\\nQ 38.1704 35.7199, 37.3381 34.7772\\nQ 36.5157 33.8346, 36.5157 32.0696\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 42.8536 28.0182\\nL 43.7762 28.0182\\nL 43.7762 35.6296\\nL 42.8536 35.6296\\nL 42.8536 28.0182\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 33.9986 73.4412\\nL 34.9613 73.4412\\nL 34.9613 76.4597\\nL 38.5916 76.4597\\nL 38.5916 73.4412\\nL 39.5543 73.4412\\nL 39.5543 80.5412\\nL 38.5916 80.5412\\nL 38.5916 77.262\\nL 34.9613 77.262\\nL 34.9613 80.5412\\nL 33.9986 80.5412\\nL 33.9986 73.4412\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 40.0557 76.9712\\nQ 40.0557 75.2664, 40.8981 74.3137\\nQ 41.7405 73.361, 43.3149 73.361\\nQ 44.8893 73.361, 45.7317 74.3137\\nQ 46.5741 75.2664, 46.5741 76.9712\\nQ 46.5741 78.696, 45.7217 79.6788\\nQ 44.8693 80.6516, 43.3149 80.6516\\nQ 41.7505 80.6516, 40.8981 79.6788\\nQ 40.0557 78.7061, 40.0557 76.9712\\nM 43.3149 79.8493\\nQ 44.398 79.8493, 44.9796 79.1273\\nQ 45.5713 78.3952, 45.5713 76.9712\\nQ 45.5713 75.5773, 44.9796 74.8753\\nQ 44.398 74.1633, 43.3149 74.1633\\nQ 42.2318 74.1633, 41.6402 74.8652\\nQ 41.0585 75.5672, 41.0585 76.9712\\nQ 41.0585 78.4052, 41.6402 79.1273\\nQ 42.2318 79.8493, 43.3149 79.8493\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 79.1894 104.562\\nQ 79.1894 102.858, 80.0318 101.905\\nQ 80.8741 100.952, 82.4486 100.952\\nQ 84.023 100.952, 84.8654 101.905\\nQ 85.7078 102.858, 85.7078 104.562\\nQ 85.7078 106.287, 84.8554 107.27\\nQ 84.003 108.243, 82.4486 108.243\\nQ 80.8842 108.243, 80.0318 107.27\\nQ 79.1894 106.297, 79.1894 104.562\\nM 82.4486 107.44\\nQ 83.5316 107.44, 84.1133 106.718\\nQ 84.7049 105.986, 84.7049 104.562\\nQ 84.7049 103.168, 84.1133 102.466\\nQ 83.5316 101.754, 82.4486 101.754\\nQ 81.3655 101.754, 80.7738 102.456\\nQ 80.1922 103.158, 80.1922 104.562\\nQ 80.1922 105.996, 80.7738 106.718\\nQ 81.3655 107.44, 82.4486 107.44\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 185, "data-ID": 933, "data-Solubility": -4.02, "data-SMILES": "Clc1c(Cl)c(Cl)c(Cl)c(O)c1OC", "mols2grid-tooltip": "<strong>Name</strong>: tetrachloroguaiacol<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c(Cl)c(O)c1OC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.02</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.531,102.234 L 100.674,94.1729' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.674,94.1729 L 94.8171,86.1115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.141,106.15 L 95.2838,98.0888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.2838,98.0888 L 89.4271,90.0274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.1221,88.0694 L 96.3672,75.0035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.3672,75.0035 L 100.612,61.9376' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 92.1221,88.0694 L 58.8105,88.0694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.0049,53.1834 L 86.7356,44.9954' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.7356,44.9954 L 75.4663,36.8074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.7975,36.8074 L 78.7975,26.2943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.7975,26.2943 L 78.7975,15.7811' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1351,36.8074 L 72.1351,26.2943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1351,26.2943 L 72.1351,15.7811' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 75.4663,36.8074 L 63.9205,45.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 63.9205,45.1963 L 52.3747,53.5852' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 58.8105,88.0694 L 54.6044,75.1234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 54.6044,75.1234 L 50.3983,62.1775' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 103.455 109.655\\nQ 103.455 107.39, 104.574 106.124\\nQ 105.693 104.858, 107.785 104.858\\nQ 109.877 104.858, 110.996 106.124\\nQ 112.116 107.39, 112.116 109.655\\nQ 112.116 111.947, 110.983 113.253\\nQ 109.85 114.545, 107.785 114.545\\nQ 105.707 114.545, 104.574 113.253\\nQ 103.455 111.96, 103.455 109.655\\nM 107.785 113.479\\nQ 109.224 113.479, 109.997 112.52\\nQ 110.783 111.547, 110.783 109.655\\nQ 110.783 107.803, 109.997 106.87\\nQ 109.224 105.924, 107.785 105.924\\nQ 106.346 105.924, 105.56 106.857\\nQ 104.787 107.79, 104.787 109.655\\nQ 104.787 111.561, 105.56 112.52\\nQ 106.346 113.479, 107.785 113.479\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 100.33 51.671\\nL 103.421 56.6677\\nQ 103.728 57.1607, 104.221 58.0535\\nQ 104.714 58.9462, 104.74 58.9995\\nL 104.74 51.671\\nL 105.993 51.671\\nL 105.993 61.1048\\nL 104.701 61.1048\\nL 101.383 55.6417\\nQ 100.996 55.0022, 100.583 54.2693\\nQ 100.183 53.5364, 100.064 53.3099\\nL 100.064 61.1048\\nL 98.8377 61.1048\\nL 98.8377 51.671\\nL 100.33 51.671\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 107.126 51.671\\nL 108.405 51.671\\nL 108.405 55.6817\\nL 113.228 55.6817\\nL 113.228 51.671\\nL 114.507 51.671\\nL 114.507 61.1048\\nL 113.228 61.1048\\nL 113.228 56.7477\\nL 108.405 56.7477\\nL 108.405 61.1048\\nL 107.126 61.1048\\nL 107.126 51.671\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 72.8014 13.396\\nQ 72.908 13.436, 73.3477 13.6225\\nQ 73.7874 13.8091, 74.2671 13.929\\nQ 74.7601 14.0356, 75.2398 14.0356\\nQ 76.1325 14.0356, 76.6522 13.6092\\nQ 77.1718 13.1695, 77.1718 12.41\\nQ 77.1718 11.8903, 76.9054 11.5705\\nQ 76.6522 11.2508, 76.2524 11.0775\\nQ 75.8527 10.9043, 75.1865 10.7044\\nQ 74.347 10.4513, 73.8407 10.2114\\nQ 73.3477 9.97159, 72.9879 9.46526\\nQ 72.6415 8.95892, 72.6415 8.10615\\nQ 72.6415 6.92025, 73.441 6.1874\\nQ 74.2538 5.45455, 75.8527 5.45455\\nQ 76.9453 5.45455, 78.1845 5.97421\\nL 77.8781 7.0002\\nQ 76.7455 6.53384, 75.8927 6.53384\\nQ 74.9733 6.53384, 74.467 6.92025\\nQ 73.9606 7.29334, 73.9739 7.94625\\nQ 73.9739 8.45259, 74.2271 8.75905\\nQ 74.4936 9.06552, 74.8667 9.23874\\nQ 75.2531 9.41196, 75.8927 9.61183\\nQ 76.7455 9.87832, 77.2518 10.1448\\nQ 77.7581 10.4113, 78.1179 10.9576\\nQ 78.491 11.4906, 78.491 12.41\\nQ 78.491 13.7158, 77.6116 14.422\\nQ 76.7455 15.1149, 75.2931 15.1149\\nQ 74.4536 15.1149, 73.814 14.9284\\nQ 73.1878 14.7551, 72.4416 14.4487\\nL 72.8014 13.396\\n' fill='#CCCC00'/>\\n<path class='atom-5' d='M 45.8523 59.6258\\nQ 45.9589 59.6658, 46.3986 59.8523\\nQ 46.8383 60.0389, 47.318 60.1588\\nQ 47.811 60.2654, 48.2907 60.2654\\nQ 49.1835 60.2654, 49.7031 59.839\\nQ 50.2228 59.3993, 50.2228 58.6398\\nQ 50.2228 58.1201, 49.9563 57.8003\\nQ 49.7031 57.4805, 49.3034 57.3073\\nQ 48.9037 57.1341, 48.2374 56.9342\\nQ 47.398 56.6811, 46.8916 56.4412\\nQ 46.3986 56.2014, 46.0389 55.695\\nQ 45.6924 55.1887, 45.6924 54.3359\\nQ 45.6924 53.15, 46.4919 52.4172\\nQ 47.3047 51.6843, 48.9037 51.6843\\nQ 49.9963 51.6843, 51.2355 52.204\\nL 50.929 53.23\\nQ 49.7964 52.7636, 48.9436 52.7636\\nQ 48.0242 52.7636, 47.5179 53.15\\nQ 47.0116 53.5231, 47.0249 54.176\\nQ 47.0249 54.6824, 47.2781 54.9888\\nQ 47.5445 55.2953, 47.9176 55.4685\\nQ 48.3041 55.6417, 48.9436 55.8416\\nQ 49.7964 56.1081, 50.3027 56.3746\\nQ 50.8091 56.6411, 51.1688 57.1874\\nQ 51.5419 57.7204, 51.5419 58.6398\\nQ 51.5419 59.9456, 50.6625 60.6518\\nQ 49.7964 61.3447, 48.344 61.3447\\nQ 47.5046 61.3447, 46.865 61.1581\\nQ 46.2387 60.9849, 45.4926 60.6784\\nL 45.8523 59.6258\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 186, "data-ID": 938, "data-Solubility": -1.77, "data-SMILES": "O=C(NC(=S)S1)C1", "mols2grid-tooltip": "<strong>Name</strong>: Rhodanine<br><strong>SMILES</strong>: O=C(NC(=S)S1)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.77</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 114.92,104.805 L 106.835,93.677' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.835,93.677 L 98.75,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.75,82.5485 L 110.338,46.8835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.3552,74.8813 L 101.466,49.9158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 61.25,82.5485 L 98.75,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.338,46.8835 L 97.6512,37.666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.6512,37.666 L 84.965,28.4484' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-8' d='M 110.338,46.8835 L 123.872,42.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-8' d='M 123.872,42.4861 L 137.407,38.0887' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.035,28.4484 L 62.3488,37.666' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.3488,37.666 L 49.6625,46.8835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.6625,46.8835 L 61.25,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.5336,49.9158 L 66.6448,74.8813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 49.6625,46.8835 L 36.1275,42.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 36.1275,42.4861 L 22.5925,38.0887' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 61.25,82.5485 L 53.165,93.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 53.165,93.677 L 45.08,104.805' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 115.67 101.486\\nL 117.095 101.486\\nL 117.095 112.151\\nL 115.67 112.151\\nL 115.67 101.486\\n' fill='#A01EEF'/>\\n<path class='atom-3' d='M 77.6525 19.531\\nL 81.1325 25.156\\nQ 81.4775 25.711, 82.0325 26.716\\nQ 82.5875 27.721, 82.6175 27.781\\nL 82.6175 19.531\\nL 84.0275 19.531\\nL 84.0275 30.151\\nL 82.5725 30.151\\nL 78.8375 24.001\\nQ 78.4025 23.281, 77.9375 22.456\\nQ 77.4875 21.631, 77.3525 21.376\\nL 77.3525 30.151\\nL 75.9725 30.151\\nL 75.9725 19.531\\nL 77.6525 19.531\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 75.845 7.849\\nL 77.285 7.849\\nL 77.285 12.364\\nL 82.715 12.364\\nL 82.715 7.849\\nL 84.155 7.849\\nL 84.155 18.469\\nL 82.715 18.469\\nL 82.715 13.564\\nL 77.285 13.564\\nL 77.285 18.469\\nL 75.845 18.469\\nL 75.845 7.849\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 42.905 101.486\\nL 44.33 101.486\\nL 44.33 112.151\\nL 42.905 112.151\\nL 42.905 101.486\\n' fill='#A01EEF'/>\\n<path class='atom-7' d='M 20.4175 32.281\\nL 21.8425 32.281\\nL 21.8425 42.946\\nL 20.4175 42.946\\nL 20.4175 32.281\\n' fill='#A01EEF'/>\\n<path class='atom-8' d='M 138.157 32.281\\nL 139.583 32.281\\nL 139.583 42.946\\nL 138.157 42.946\\nL 138.157 32.281\\n' fill='#A01EEF'/>\\n</svg>\\n", "mols2grid-id": 187, "data-ID": 943, "data-Solubility": -3.46, "data-SMILES": "Ic1c(nc(c1I)I)I", "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5-Tetraiodpyrrol<br><strong>SMILES</strong>: Ic1c(nc(c1I)I)I<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.46</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.437,75.1575 L 119.437,59.5313' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.437,59.5313 L 119.437,43.905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 86.9624,100.155 L 100.717,92.2133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 100.717,92.2133 L 114.472,84.2716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.312,47.1526 L 131.491,41.2763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.491,41.2763 L 141.67,35.4' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.562,40.6574 L 127.741,34.7811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.741,34.7811 L 137.92,28.9048' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 119.437,43.905 L 105.682,35.9633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.682,35.9633 L 91.9274,28.0216' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.1224,24.774 L 68.2424,35.9633' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.2424,35.9633 L 56.3624,47.1526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 83.8725,31.2692 L 68.2424,35.9633' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.2424,35.9633 L 52.6124,40.6574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 54.4874,43.905 L 43.8849,37.7841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.8849,37.7841 L 33.2824,31.6631' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 54.4874,43.905 L 54.4874,81.405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.6124,84.6526 L 88.8374,96.9074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.3624,78.1574 L 85.0874,103.403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.09 76.095\\nL 120.57 81.72\\nQ 120.915 82.275, 121.47 83.28\\nQ 122.025 84.285, 122.055 84.345\\nL 122.055 76.095\\nL 123.465 76.095\\nL 123.465 86.715\\nL 122.01 86.715\\nL 118.275 80.565\\nQ 117.84 79.845, 117.375 79.02\\nQ 116.925 78.195, 116.79 77.94\\nL 116.79 86.715\\nL 115.41 86.715\\nL 115.41 76.095\\nL 117.09 76.095\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 124.74 76.095\\nL 126.18 76.095\\nL 126.18 80.61\\nL 131.61 80.61\\nL 131.61 76.095\\nL 133.05 76.095\\nL 133.05 86.715\\nL 131.61 86.715\\nL 131.61 81.81\\nL 126.18 81.81\\nL 126.18 86.715\\nL 124.74 86.715\\nL 124.74 76.095\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 140.545 28.935\\nQ 140.545 26.385, 141.805 24.96\\nQ 143.065 23.535, 145.42 23.535\\nQ 147.775 23.535, 149.035 24.96\\nQ 150.295 26.385, 150.295 28.935\\nQ 150.295 31.515, 149.02 32.985\\nQ 147.745 34.44, 145.42 34.44\\nQ 143.08 34.44, 141.805 32.985\\nQ 140.545 31.53, 140.545 28.935\\nM 145.42 33.24\\nQ 147.04 33.24, 147.91 32.16\\nQ 148.795 31.065, 148.795 28.935\\nQ 148.795 26.85, 147.91 25.8\\nQ 147.04 24.735, 145.42 24.735\\nQ 143.8 24.735, 142.915 25.785\\nQ 142.045 26.835, 142.045 28.935\\nQ 142.045 31.08, 142.915 32.16\\nQ 143.8 33.24, 145.42 33.24\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 84.6149 19.845\\nL 88.0949 25.47\\nQ 88.4399 26.025, 88.9949 27.03\\nQ 89.5499 28.035, 89.5799 28.095\\nL 89.5799 19.845\\nL 90.9899 19.845\\nL 90.9899 30.465\\nL 89.5349 30.465\\nL 85.7999 24.315\\nQ 85.3649 23.595, 84.8999 22.77\\nQ 84.4499 21.945, 84.3149 21.69\\nL 84.3149 30.465\\nL 82.9349 30.465\\nL 82.9349 19.845\\nL 84.6149 19.845\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 9.7051 23.595\\nL 11.1451 23.595\\nL 11.1451 28.11\\nL 16.5751 28.11\\nL 16.5751 23.595\\nL 18.0151 23.595\\nL 18.0151 34.215\\nL 16.5751 34.215\\nL 16.5751 29.31\\nL 11.1451 29.31\\nL 11.1451 34.215\\nL 9.7051 34.215\\nL 9.7051 23.595\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 18.5299 33.8424\\nQ 18.7873 33.1791, 19.4011 32.8128\\nQ 20.0149 32.4366, 20.8663 32.4366\\nQ 21.9256 32.4366, 22.5196 33.0108\\nQ 23.1136 33.585, 23.1136 34.6047\\nQ 23.1136 35.6442, 22.3414 36.6144\\nQ 21.5791 37.5846, 19.9951 38.733\\nL 23.2324 38.733\\nL 23.2324 39.525\\nL 18.5101 39.525\\nL 18.5101 38.8617\\nQ 19.8169 37.9311, 20.5891 37.2381\\nQ 21.3712 36.5451, 21.7474 35.9214\\nQ 22.1236 35.2977, 22.1236 34.6542\\nQ 22.1236 33.981, 21.787 33.6048\\nQ 21.4504 33.2286, 20.8663 33.2286\\nQ 20.302 33.2286, 19.9258 33.4563\\nQ 19.5496 33.684, 19.2823 34.1889\\nL 18.5299 33.8424\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 26.1574 23.595\\nL 29.6374 29.22\\nQ 29.9824 29.775, 30.5374 30.78\\nQ 31.0924 31.785, 31.1224 31.845\\nL 31.1224 23.595\\nL 32.5324 23.595\\nL 32.5324 34.215\\nL 31.0774 34.215\\nL 27.3424 28.065\\nQ 26.9074 27.345, 26.4424 26.52\\nQ 25.9924 25.695, 25.8574 25.44\\nL 25.8574 34.215\\nL 24.4774 34.215\\nL 24.4774 23.595\\nL 26.1574 23.595\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 188, "data-ID": 948, "data-Solubility": -1.14, "data-SMILES": "N1C(=O)N=C(N)C=C1", "mols2grid-tooltip": "<strong>Name</strong>: Cytosine<br><strong>SMILES</strong>: N1C(=O)N=C(N)C=C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.14</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.577,62.7362 L 27.8769,57.3705' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.8769,57.3705 L 37.1768,52.0048' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.1529,56.8016 L 24.4528,51.4359' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 24.4528,51.4359 L 33.7527,46.0702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,49.0375 L 35.4647,38.2051' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,38.2051 L 35.4647,27.3728' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.4647,49.0375 L 65.1549,66.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,66.1664 L 65.1549,77.1016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,77.1016 L 65.1549,88.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 65.1549,66.1664 L 94.8451,49.0375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.8451,49.0375 L 124.535,66.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 126.247,69.1337 L 135.547,63.768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.547,63.768 L 144.847,58.4023' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 122.823,63.1991 L 132.123,57.8334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 132.123,57.8334 L 141.423,52.4677' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 124.535,66.1664 L 124.535,77.1016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 124.535,77.1016 L 124.535,88.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 62.7612\\nQ 7.27273 60.4316, 8.42379 59.1298\\nQ 9.57486 57.828, 11.7263 57.828\\nQ 13.8777 57.828, 15.0287 59.1298\\nQ 16.1798 60.4316, 16.1798 62.7612\\nQ 16.1798 65.1181, 15.015 66.461\\nQ 13.8502 67.7903, 11.7263 67.7903\\nQ 9.58856 67.7903, 8.42379 66.461\\nQ 7.27273 65.1318, 7.27273 62.7612\\nM 11.7263 66.694\\nQ 13.2062 66.694, 14.001 65.7074\\nQ 14.8095 64.707, 14.8095 62.7612\\nQ 14.8095 60.8564, 14.001 59.8972\\nQ 13.2062 58.9243, 11.7263 58.9243\\nQ 10.2463 58.9243, 9.43783 59.8835\\nQ 8.64304 60.8427, 8.64304 62.7612\\nQ 8.64304 64.7207, 9.43783 65.7074\\nQ 10.2463 66.694, 11.7263 66.694\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 31.0112 21.6585\\nQ 31.0112 19.329, 32.1622 18.0272\\nQ 33.3133 16.7254, 35.4647 16.7254\\nQ 37.6161 16.7254, 38.7672 18.0272\\nQ 39.9182 19.329, 39.9182 21.6585\\nQ 39.9182 24.0155, 38.7535 25.3584\\nQ 37.5887 26.6876, 35.4647 26.6876\\nQ 33.327 26.6876, 32.1622 25.3584\\nQ 31.0112 24.0292, 31.0112 21.6585\\nM 35.4647 25.5913\\nQ 36.9447 25.5913, 37.7394 24.6047\\nQ 38.5479 23.6044, 38.5479 21.6585\\nQ 38.5479 19.7538, 37.7394 18.7946\\nQ 36.9447 17.8217, 35.4647 17.8217\\nQ 33.9848 17.8217, 33.1763 18.7809\\nQ 32.3815 19.7401, 32.3815 21.6585\\nQ 32.3815 23.6181, 33.1763 24.6047\\nQ 33.9848 25.5913, 35.4647 25.5913\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 41.083 16.835\\nL 42.3985 16.835\\nL 42.3985 20.9597\\nL 47.3591 20.9597\\nL 47.3591 16.835\\nL 48.6746 16.835\\nL 48.6746 26.5369\\nL 47.3591 26.5369\\nL 47.3591 22.0559\\nL 42.3985 22.0559\\nL 42.3985 26.5369\\nL 41.083 26.5369\\nL 41.083 16.835\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 63.0104 88.7218\\nL 66.1895 93.8605\\nQ 66.5047 94.3675, 67.0117 95.2857\\nQ 67.5187 96.2038, 67.5461 96.2586\\nL 67.5461 88.7218\\nL 68.8342 88.7218\\nL 68.8342 98.4237\\nL 67.505 98.4237\\nL 64.0929 92.8054\\nQ 63.6955 92.1476, 63.2707 91.394\\nQ 62.8596 90.6403, 62.7363 90.4073\\nL 62.7363 98.4237\\nL 61.4756 98.4237\\nL 61.4756 88.7218\\nL 63.0104 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 69.999 88.7218\\nL 71.3145 88.7218\\nL 71.3145 92.8465\\nL 76.275 92.8465\\nL 76.275 88.7218\\nL 77.5905 88.7218\\nL 77.5905 98.4237\\nL 76.275 98.4237\\nL 76.275 93.9427\\nL 71.3145 93.9427\\nL 71.3145 98.4237\\nL 69.999 98.4237\\nL 69.999 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 78.0608 98.0833\\nQ 78.296 97.4773, 78.8567 97.1427\\nQ 79.4174 96.799, 80.1952 96.799\\nQ 81.1629 96.799, 81.7056 97.3236\\nQ 82.2482 97.8481, 82.2482 98.7797\\nQ 82.2482 99.7293, 81.5428 100.616\\nQ 80.8464 101.502, 79.3993 102.551\\nL 82.3568 102.551\\nL 82.3568 103.275\\nL 78.0427 103.275\\nL 78.0427 102.669\\nQ 79.2366 101.819, 79.942 101.185\\nQ 80.6565 100.552, 81.0001 99.9826\\nQ 81.3438 99.4128, 81.3438 98.8249\\nQ 81.3438 98.2099, 81.0363 97.8662\\nQ 80.7288 97.5226, 80.1952 97.5226\\nQ 79.6797 97.5226, 79.336 97.7306\\nQ 78.9924 97.9386, 78.7482 98.3998\\nL 78.0608 98.0833\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 143.82 52.4975\\nQ 143.82 50.168, 144.971 48.8662\\nQ 146.122 47.5644, 148.274 47.5644\\nQ 150.425 47.5644, 151.576 48.8662\\nQ 152.727 50.168, 152.727 52.4975\\nQ 152.727 54.8545, 151.563 56.1974\\nQ 150.398 57.5266, 148.274 57.5266\\nQ 146.136 57.5266, 144.971 56.1974\\nQ 143.82 54.8682, 143.82 52.4975\\nM 148.274 56.4303\\nQ 149.754 56.4303, 150.548 55.4437\\nQ 151.357 54.4434, 151.357 52.4975\\nQ 151.357 50.5928, 150.548 49.6336\\nQ 149.754 48.6606, 148.274 48.6606\\nQ 146.794 48.6606, 145.985 49.6199\\nQ 145.191 50.5791, 145.191 52.4975\\nQ 145.191 54.4571, 145.985 55.4437\\nQ 146.794 56.4303, 148.274 56.4303\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 122.391 88.7218\\nL 125.57 93.8605\\nQ 125.885 94.3675, 126.392 95.2857\\nQ 126.899 96.2038, 126.926 96.2586\\nL 126.926 88.7218\\nL 128.215 88.7218\\nL 128.215 98.4237\\nL 126.885 98.4237\\nL 123.473 92.8054\\nQ 123.076 92.1476, 122.651 91.394\\nQ 122.24 90.6403, 122.117 90.4073\\nL 122.117 98.4237\\nL 120.856 98.4237\\nL 120.856 88.7218\\nL 122.391 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 129.379 88.7218\\nL 130.695 88.7218\\nL 130.695 92.8465\\nL 135.655 92.8465\\nL 135.655 88.7218\\nL 136.971 88.7218\\nL 136.971 98.4237\\nL 135.655 98.4237\\nL 135.655 93.9427\\nL 130.695 93.9427\\nL 130.695 98.4237\\nL 129.379 98.4237\\nL 129.379 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 137.441 98.0833\\nQ 137.676 97.4773, 138.237 97.1427\\nQ 138.798 96.799, 139.576 96.799\\nQ 140.543 96.799, 141.086 97.3236\\nQ 141.629 97.8481, 141.629 98.7797\\nQ 141.629 99.7293, 140.923 100.616\\nQ 140.227 101.502, 138.78 102.551\\nL 141.737 102.551\\nL 141.737 103.275\\nL 137.423 103.275\\nL 137.423 102.669\\nQ 138.617 101.819, 139.322 101.185\\nQ 140.037 100.552, 140.381 99.9826\\nQ 140.724 99.4128, 140.724 98.8249\\nQ 140.724 98.2099, 140.417 97.8662\\nQ 140.109 97.5226, 139.576 97.5226\\nQ 139.06 97.5226, 138.716 97.7306\\nQ 138.373 97.9386, 138.129 98.3998\\nL 137.441 98.0833\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 189, "data-ID": 953, "data-Solubility": -0.74, "data-SMILES": "O=C(O)C(N)CC(=O)N", "mols2grid-tooltip": "<strong>Name</strong>: L-Asparagine<br><strong>SMILES</strong>: O=C(O)C(N)CC(=O)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.74</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,47.85 L 47.5,32.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,32.8575 L 61.5785,40.9797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 61.5785,40.9797 L 75.657,49.1019' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.25,57.9375 L 76.25,66.7916' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.25,66.7916 L 76.25,75.6457' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 83.75,57.9375 L 83.75,66.7916' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 83.75,66.7916 L 83.75,75.6457' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9694,50.76 L 65.8095,55.4728' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 65.8095,55.4728 L 57.6496,60.1857' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 77.7205,57.2546 L 69.5605,61.9674' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 69.5605,61.9674 L 61.4006,66.6803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 84.343,49.1019 L 98.4215,40.9797' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 98.4215,40.9797 L 112.5,32.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.5,32.8575 L 138.485,47.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 77 55.2525\\nQ 77.12 55.2975, 77.615 55.5075\\nQ 78.11 55.7175, 78.65 55.8525\\nQ 79.205 55.9725, 79.745 55.9725\\nQ 80.75 55.9725, 81.335 55.4925\\nQ 81.92 54.9975, 81.92 54.1425\\nQ 81.92 53.5575, 81.62 53.1975\\nQ 81.335 52.8375, 80.885 52.6425\\nQ 80.435 52.4475, 79.685 52.2225\\nQ 78.74 51.9375, 78.17 51.6675\\nQ 77.615 51.3975, 77.21 50.8275\\nQ 76.82 50.2575, 76.82 49.2975\\nQ 76.82 47.9625, 77.72 47.1375\\nQ 78.635 46.3125, 80.435 46.3125\\nQ 81.665 46.3125, 83.06 46.8975\\nL 82.715 48.0525\\nQ 81.44 47.5275, 80.48 47.5275\\nQ 79.445 47.5275, 78.875 47.9625\\nQ 78.305 48.3825, 78.32 49.1175\\nQ 78.32 49.6875, 78.605 50.0325\\nQ 78.905 50.3775, 79.325 50.5725\\nQ 79.76 50.7675, 80.48 50.9925\\nQ 81.44 51.2925, 82.01 51.5925\\nQ 82.58 51.8925, 82.985 52.5075\\nQ 83.405 53.1075, 83.405 54.1425\\nQ 83.405 55.6125, 82.415 56.4075\\nQ 81.44 57.1875, 79.805 57.1875\\nQ 78.86 57.1875, 78.14 56.9775\\nQ 77.435 56.7825, 76.595 56.4375\\nL 77 55.2525\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 75.125 81.6375\\nQ 75.125 79.0875, 76.385 77.6625\\nQ 77.645 76.2375, 80 76.2375\\nQ 82.355 76.2375, 83.615 77.6625\\nQ 84.875 79.0875, 84.875 81.6375\\nQ 84.875 84.2175, 83.6 85.6875\\nQ 82.325 87.1425, 80 87.1425\\nQ 77.66 87.1425, 76.385 85.6875\\nQ 75.125 84.2325, 75.125 81.6375\\nM 80 85.9425\\nQ 81.62 85.9425, 82.49 84.8625\\nQ 83.375 83.7675, 83.375 81.6375\\nQ 83.375 79.5525, 82.49 78.5025\\nQ 81.62 77.4375, 80 77.4375\\nQ 78.38 77.4375, 77.495 78.4875\\nQ 76.625 79.5375, 76.625 81.6375\\nQ 76.625 83.7825, 77.495 84.8625\\nQ 78.38 85.9425, 80 85.9425\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 49.145 66.6425\\nQ 49.145 64.0925, 50.405 62.6675\\nQ 51.665 61.2425, 54.02 61.2425\\nQ 56.375 61.2425, 57.635 62.6675\\nQ 58.895 64.0925, 58.895 66.6425\\nQ 58.895 69.2225, 57.62 70.6925\\nQ 56.345 72.1475, 54.02 72.1475\\nQ 51.68 72.1475, 50.405 70.6925\\nQ 49.145 69.2375, 49.145 66.6425\\nM 54.02 70.9475\\nQ 55.64 70.9475, 56.51 69.8675\\nQ 57.395 68.7725, 57.395 66.6425\\nQ 57.395 64.5575, 56.51 63.5075\\nQ 55.64 62.4425, 54.02 62.4425\\nQ 52.4 62.4425, 51.515 63.4925\\nQ 50.645 64.5425, 50.645 66.6425\\nQ 50.645 68.7875, 51.515 69.8675\\nQ 52.4 70.9475, 54.02 70.9475\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 190, "data-ID": 958, "data-Solubility": 0.04, "data-SMILES": "CCS(=O)(=O)CC", "mols2grid-tooltip": "<strong>Name</strong>: Diethyl_Sulfone<br><strong>SMILES</strong>: CCS(=O)(=O)CC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.04</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 130.42,73.3125 L 130.42,57.6862' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 130.42,57.6862 L 130.42,42.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.92,68.6246 L 122.92,57.6863' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.92,57.6863 L 122.92,46.7479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.945,98.31 L 111.7,90.3683' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 111.7,90.3683 L 125.455,82.4266' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.42,42.06 L 97.945,23.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.945,23.31 L 65.47,42.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.8238,32.6176 L 74.0913,45.7426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.47,42.06 L 55.2913,36.1837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 55.2913,36.1837 L 45.1125,30.3074' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 65.47,42.06 L 65.47,79.56' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.47,79.56 L 97.945,98.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.0913,75.8774 L 96.8238,89.0024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.073 74.25\\nL 131.553 79.875\\nQ 131.898 80.43, 132.453 81.435\\nQ 133.008 82.44, 133.038 82.5\\nL 133.038 74.25\\nL 134.448 74.25\\nL 134.448 84.87\\nL 132.993 84.87\\nL 129.258 78.72\\nQ 128.823 78, 128.358 77.175\\nQ 127.908 76.35, 127.773 76.095\\nL 127.773 84.87\\nL 126.393 84.87\\nL 126.393 74.25\\nL 128.073 74.25\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 25.5525 21.81\\nL 26.9925 21.81\\nL 26.9925 26.325\\nL 32.4225 26.325\\nL 32.4225 21.81\\nL 33.8625 21.81\\nL 33.8625 32.43\\nL 32.4225 32.43\\nL 32.4225 27.525\\nL 26.9925 27.525\\nL 26.9925 32.43\\nL 25.5525 32.43\\nL 25.5525 21.81\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 34.6125 27.09\\nQ 34.6125 24.54, 35.8725 23.115\\nQ 37.1325 21.69, 39.4875 21.69\\nQ 41.8425 21.69, 43.1025 23.115\\nQ 44.3625 24.54, 44.3625 27.09\\nQ 44.3625 29.67, 43.0875 31.14\\nQ 41.8125 32.595, 39.4875 32.595\\nQ 37.1475 32.595, 35.8725 31.14\\nQ 34.6125 29.685, 34.6125 27.09\\nM 39.4875 31.395\\nQ 41.1075 31.395, 41.9775 30.315\\nQ 42.8625 29.22, 42.8625 27.09\\nQ 42.8625 25.005, 41.9775 23.955\\nQ 41.1075 22.89, 39.4875 22.89\\nQ 37.8675 22.89, 36.9825 23.94\\nQ 36.1125 24.99, 36.1125 27.09\\nQ 36.1125 29.235, 36.9825 30.315\\nQ 37.8675 31.395, 39.4875 31.395\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 191, "data-ID": 963, "data-Solubility": 1.02, "data-SMILES": "n1ccc(O)cc1", "mols2grid-tooltip": "<strong>Name</strong>: 4-Hydroxypyridine<br><strong>SMILES</strong>: n1ccc(O)cc1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.02</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 109.041,65.3641 L 109.041,51.3904' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.041,51.3904 L 109.041,37.4167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,87.7181 L 92.3004,80.6162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 92.3004,80.6162 L 104.601,73.5144' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.717,40.3209 L 119.82,35.066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.82,35.066 L 128.922,29.8112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.364,34.5125 L 116.466,29.2576' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.466,29.2576 L 125.569,24.0028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.041,37.4167 L 96.7403,30.3149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.7403,30.3149 L 84.4399,23.213' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.5601,23.213 L 63.2597,30.3149' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.2597,30.3149 L 50.9593,37.4167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.636,34.5125 L 43.5337,29.2576' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.5337,29.2576 L 34.4314,24.0028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.2827,40.3209 L 40.1804,35.066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.1804,35.066 L 31.0781,29.8112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 50.9593,37.4167 L 50.9593,70.9509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.2826,73.8551 L 81.6767,84.8139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.6361,68.0468 L 78.3233,90.6222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80,87.7181 L 80,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.941 66.2025\\nL 110.053 71.2326\\nQ 110.362 71.7289, 110.858 72.6277\\nQ 111.355 73.5264, 111.381 73.58\\nL 111.381 66.2025\\nL 112.642 66.2025\\nL 112.642 75.6994\\nL 111.341 75.6994\\nL 108.001 70.1998\\nQ 107.612 69.5559, 107.196 68.8182\\nQ 106.794 68.0804, 106.673 67.8524\\nL 106.673 75.6994\\nL 105.439 75.6994\\nL 105.439 66.2025\\nL 106.941 66.2025\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 113.782 66.2025\\nL 115.07 66.2025\\nL 115.07 70.24\\nL 119.926 70.24\\nL 119.926 66.2025\\nL 121.214 66.2025\\nL 121.214 75.6994\\nL 119.926 75.6994\\nL 119.926 71.3131\\nL 115.07 71.3131\\nL 115.07 75.6994\\nL 113.782 75.6994\\nL 113.782 66.2025\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 127.916 24.0298\\nQ 127.916 21.7495, 129.043 20.4752\\nQ 130.169 19.2009, 132.275 19.2009\\nQ 134.381 19.2009, 135.508 20.4752\\nQ 136.635 21.7495, 136.635 24.0298\\nQ 136.635 26.337, 135.495 27.6515\\nQ 134.355 28.9527, 132.275 28.9527\\nQ 130.183 28.9527, 129.043 27.6515\\nQ 127.916 26.3504, 127.916 24.0298\\nM 132.275 27.8796\\nQ 133.724 27.8796, 134.502 26.9138\\nQ 135.293 25.9346, 135.293 24.0298\\nQ 135.293 22.1653, 134.502 21.2264\\nQ 133.724 20.274, 132.275 20.274\\nQ 130.827 20.274, 130.035 21.213\\nQ 129.257 22.1519, 129.257 24.0298\\nQ 129.257 25.948, 130.035 26.9138\\nQ 130.827 27.8796, 132.275 27.8796\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 77.9008 15.9011\\nL 81.0127 20.9313\\nQ 81.3212 21.4276, 81.8176 22.3263\\nQ 82.3139 23.225, 82.3407 23.2787\\nL 82.3407 15.9011\\nL 83.6016 15.9011\\nL 83.6016 25.398\\nL 82.3004 25.398\\nL 78.9604 19.8984\\nQ 78.5714 19.2546, 78.1556 18.5168\\nQ 77.7532 17.779, 77.6325 17.551\\nL 77.6325 25.398\\nL 76.3984 25.398\\nL 76.3984 15.9011\\nL 77.9008 15.9011\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 76.2844 5.45455\\nL 77.5721 5.45455\\nL 77.5721 9.49207\\nL 82.4279 9.49207\\nL 82.4279 5.45455\\nL 83.7156 5.45455\\nL 83.7156 14.9514\\nL 82.4279 14.9514\\nL 82.4279 10.5652\\nL 77.5721 10.5652\\nL 77.5721 14.9514\\nL 76.2844 14.9514\\nL 76.2844 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 23.3651 24.0298\\nQ 23.3651 21.7495, 24.4919 20.4752\\nQ 25.6186 19.2009, 27.7246 19.2009\\nQ 29.8305 19.2009, 30.9573 20.4752\\nQ 32.084 21.7495, 32.084 24.0298\\nQ 32.084 26.337, 30.9439 27.6515\\nQ 29.8037 28.9527, 27.7246 28.9527\\nQ 25.6321 28.9527, 24.4919 27.6515\\nQ 23.3651 26.3504, 23.3651 24.0298\\nM 27.7246 27.8796\\nQ 29.1733 27.8796, 29.9513 26.9138\\nQ 30.7427 25.9346, 30.7427 24.0298\\nQ 30.7427 22.1653, 29.9513 21.2264\\nQ 29.1733 20.274, 27.7246 20.274\\nQ 26.2759 20.274, 25.4845 21.213\\nQ 24.7065 22.1519, 24.7065 24.0298\\nQ 24.7065 25.948, 25.4845 26.9138\\nQ 26.2759 27.8796, 27.7246 27.8796\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 192, "data-ID": 968, "data-Solubility": -1.26, "data-SMILES": "N1C(=O)NC(=O)C=C1C", "mols2grid-tooltip": "<strong>Name</strong>: 6-Methyluracil<br><strong>SMILES</strong>: N1C(=O)NC(=O)C=C1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.26</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.332,88.4363 L 111.332,73.2661' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.332,73.2661 L 111.332,58.096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 105.679,97.8357 L 92.7117,105.322' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 92.7117,105.322 L 79.7447,112.809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.332,58.096 L 121.233,52.3802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.233,52.3802 L 131.134,46.6645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 111.332,58.096 L 79.7447,39.8582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 79.7447,39.8582 L 79.7447,28.3247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 79.7447,28.3247 L 79.7447,16.7911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 79.7447,39.8582 L 48.1569,58.096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 48.1569,58.096 L 38.2562,52.3802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 38.2562,52.3802 L 28.3556,46.6645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 48.1569,58.096 L 48.1569,94.5715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 48.1569,94.5715 L 38.2562,100.287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 38.2562,100.287 L 28.3556,106.003' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 79.7447,112.809 L 48.1569,94.5715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.591 94.6007\\nQ 106.591 92.1203, 107.816 90.7343\\nQ 109.042 89.3482, 111.332 89.3482\\nQ 113.623 89.3482, 114.849 90.7343\\nQ 116.074 92.1203, 116.074 94.6007\\nQ 116.074 97.1102, 114.834 98.54\\nQ 113.594 99.9553, 111.332 99.9553\\nQ 109.056 99.9553, 107.816 98.54\\nQ 106.591 97.1248, 106.591 94.6007\\nM 111.332 98.788\\nQ 112.908 98.788, 113.754 97.7375\\nQ 114.615 96.6725, 114.615 94.6007\\nQ 114.615 92.5726, 113.754 91.5513\\nQ 112.908 90.5154, 111.332 90.5154\\nQ 109.757 90.5154, 108.896 91.5367\\nQ 108.05 92.558, 108.05 94.6007\\nQ 108.05 96.6871, 108.896 97.7375\\nQ 109.757 98.788, 111.332 98.788\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 131.863 43.535\\nQ 131.863 41.0546, 133.089 39.6686\\nQ 134.314 38.2825, 136.605 38.2825\\nQ 138.896 38.2825, 140.121 39.6686\\nQ 141.347 41.0546, 141.347 43.535\\nQ 141.347 46.0445, 140.107 47.4743\\nQ 138.867 48.8896, 136.605 48.8896\\nQ 134.329 48.8896, 133.089 47.4743\\nQ 131.863 46.0591, 131.863 43.535\\nM 136.605 47.7223\\nQ 138.181 47.7223, 139.027 46.6719\\nQ 139.888 45.6068, 139.888 43.535\\nQ 139.888 41.5069, 139.027 40.4856\\nQ 138.181 39.4497, 136.605 39.4497\\nQ 135.029 39.4497, 134.169 40.471\\nQ 133.322 41.4923, 133.322 43.535\\nQ 133.322 45.6214, 134.169 46.6719\\nQ 135.029 47.7223, 136.605 47.7223\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 142.587 38.3992\\nL 143.988 38.3992\\nL 143.988 42.7909\\nL 149.269 42.7909\\nL 149.269 38.3992\\nL 150.67 38.3992\\nL 150.67 48.7291\\nL 149.269 48.7291\\nL 149.269 43.9581\\nL 143.988 43.9581\\nL 143.988 48.7291\\nL 142.587 48.7291\\nL 142.587 38.3992\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 75.0029 10.707\\nQ 75.0029 8.22668, 76.2284 6.84061\\nQ 77.454 5.45455, 79.7447 5.45455\\nQ 82.0353 5.45455, 83.2609 6.84061\\nQ 84.4865 8.22668, 84.4865 10.707\\nQ 84.4865 13.2165, 83.2463 14.6464\\nQ 82.0062 16.0616, 79.7447 16.0616\\nQ 77.4686 16.0616, 76.2284 14.6464\\nQ 75.0029 13.2311, 75.0029 10.707\\nM 79.7447 14.8944\\nQ 81.3204 14.8944, 82.1666 13.8439\\nQ 83.0275 12.7788, 83.0275 10.707\\nQ 83.0275 8.67898, 82.1666 7.65767\\nQ 81.3204 6.62176, 79.7447 6.62176\\nQ 78.1689 6.62176, 77.3081 7.64308\\nQ 76.4619 8.66439, 76.4619 10.707\\nQ 76.4619 12.7934, 77.3081 13.8439\\nQ 78.1689 14.8944, 79.7447 14.8944\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 85.7267 5.57127\\nL 87.1273 5.57127\\nL 87.1273 9.96292\\nL 92.409 9.96292\\nL 92.409 5.57127\\nL 93.8096 5.57127\\nL 93.8096 15.9011\\nL 92.409 15.9011\\nL 92.409 11.1301\\nL 87.1273 11.1301\\nL 87.1273 15.9011\\nL 85.7267 15.9011\\nL 85.7267 5.57127\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 9.32995 38.3992\\nL 10.7306 38.3992\\nL 10.7306 42.7909\\nL 16.0123 42.7909\\nL 16.0123 38.3992\\nL 17.4129 38.3992\\nL 17.4129 48.7291\\nL 16.0123 48.7291\\nL 16.0123 43.9581\\nL 10.7306 43.9581\\nL 10.7306 48.7291\\nL 9.32995 48.7291\\nL 9.32995 38.3992\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 18.1424 43.535\\nQ 18.1424 41.0546, 19.368 39.6686\\nQ 20.5936 38.2825, 22.8842 38.2825\\nQ 25.1749 38.2825, 26.4005 39.6686\\nQ 27.6261 41.0546, 27.6261 43.535\\nQ 27.6261 46.0445, 26.3859 47.4743\\nQ 25.1457 48.8896, 22.8842 48.8896\\nQ 20.6082 48.8896, 19.368 47.4743\\nQ 18.1424 46.0591, 18.1424 43.535\\nM 22.8842 47.7223\\nQ 24.46 47.7223, 25.3062 46.6719\\nQ 26.167 45.6068, 26.167 43.535\\nQ 26.167 41.5069, 25.3062 40.4856\\nQ 24.46 39.4497, 22.8842 39.4497\\nQ 21.3085 39.4497, 20.4477 40.471\\nQ 19.6014 41.4923, 19.6014 43.535\\nQ 19.6014 45.6214, 20.4477 46.6719\\nQ 21.3085 47.7223, 22.8842 47.7223\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 9.32995 104.055\\nL 10.7306 104.055\\nL 10.7306 108.447\\nL 16.0123 108.447\\nL 16.0123 104.055\\nL 17.4129 104.055\\nL 17.4129 114.385\\nL 16.0123 114.385\\nL 16.0123 109.614\\nL 10.7306 109.614\\nL 10.7306 114.385\\nL 9.32995 114.385\\nL 9.32995 104.055\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 18.1424 109.191\\nQ 18.1424 106.711, 19.368 105.324\\nQ 20.5936 103.938, 22.8842 103.938\\nQ 25.1749 103.938, 26.4005 105.324\\nQ 27.6261 106.711, 27.6261 109.191\\nQ 27.6261 111.7, 26.3859 113.13\\nQ 25.1457 114.545, 22.8842 114.545\\nQ 20.6082 114.545, 19.368 113.13\\nQ 18.1424 111.715, 18.1424 109.191\\nM 22.8842 113.378\\nQ 24.46 113.378, 25.3062 112.328\\nQ 26.167 111.263, 26.167 109.191\\nQ 26.167 107.163, 25.3062 106.142\\nQ 24.46 105.106, 22.8842 105.106\\nQ 21.3085 105.106, 20.4477 106.127\\nQ 19.6014 107.148, 19.6014 109.191\\nQ 19.6014 111.277, 20.4477 112.328\\nQ 21.3085 113.378, 22.8842 113.378\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 193, "data-ID": 973, "data-Solubility": 0.39, "data-SMILES": "O(C(O)C(O)C(O)C1O)C1", "mols2grid-tooltip": "<strong>Name</strong>: L-Arabinose<br><strong>SMILES</strong>: O(C(O)C(O)C(O)C1O)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.39</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.8053,28.0958 L 16.8053,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 23.8726,33.3864 L 23.8726,58.0758' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 43.0904,13.1269 L 29.9479,20.6114' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 29.9479,20.6114 L 16.8053,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 16.8053,63.3664 L 29.9479,70.8509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.9479,70.8509 L 43.0904,78.3353' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.4535,78.3031 L 65.3851,70.8347' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.3851,70.8347 L 78.3168,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.7985,69.9425 L 61.8507,64.7147' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 61.8507,64.7147 L 70.9029,59.4869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.3168,63.3664 L 108.857,81.004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-3' d='M 78.3168,28.0958 L 78.3168,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.857,81.004 L 108.857,92.2976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.857,92.2976 L 108.857,103.591' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 108.857,81.004 L 121.79,73.5356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 121.79,73.5356 L 134.723,66.0672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 109.203,72.6434 L 118.256,67.4155' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 118.256,67.4155 L 127.309,62.1876' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 139.4,57.481 L 139.4,42.7884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 139.4,42.7884 L 139.4,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 139.4,28.0958 L 126.467,20.6274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.467,20.6274 L 113.534,13.159' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.985,31.9754 L 122.932,26.7475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.932,26.7475 L 113.879,21.5196' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 104.18,13.1592 L 91.2485,20.6275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 91.2485,20.6275 L 78.3168,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 78.3168,28.0958 L 65.3851,20.6275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.3851,20.6275 L 52.4535,13.1592' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 70.9029,31.9753 L 61.8507,26.7475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.8507,26.7475 L 52.7985,21.5197' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 45.5646 76.0004\\nL 48.8438 81.3009\\nQ 49.1689 81.8238, 49.6919 82.7709\\nQ 50.2148 83.7179, 50.2431 83.7744\\nL 50.2431 76.0004\\nL 51.5718 76.0004\\nL 51.5718 86.0077\\nL 50.2007 86.0077\\nL 46.6812 80.2125\\nQ 46.2713 79.534, 45.8331 78.7566\\nQ 45.4091 77.9792, 45.2819 77.7389\\nL 45.2819 86.0077\\nL 43.9815 86.0077\\nL 43.9815 76.0004\\nL 45.5646 76.0004\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 106.03 112.722\\nQ 106.143 112.764, 106.61 112.962\\nQ 107.076 113.16, 107.585 113.287\\nQ 108.108 113.401, 108.617 113.401\\nQ 109.564 113.401, 110.115 112.948\\nQ 110.666 112.482, 110.666 111.676\\nQ 110.666 111.125, 110.384 110.786\\nQ 110.115 110.446, 109.691 110.263\\nQ 109.267 110.079, 108.56 109.867\\nQ 107.67 109.598, 107.133 109.344\\nQ 106.61 109.089, 106.228 108.552\\nQ 105.86 108.015, 105.86 107.111\\nQ 105.86 105.853, 106.709 105.075\\nQ 107.571 104.298, 109.267 104.298\\nQ 110.426 104.298, 111.74 104.849\\nL 111.415 105.937\\nQ 110.214 105.443, 109.309 105.443\\nQ 108.334 105.443, 107.797 105.853\\nQ 107.26 106.248, 107.274 106.941\\nQ 107.274 107.478, 107.542 107.803\\nQ 107.825 108.128, 108.221 108.312\\nQ 108.631 108.496, 109.309 108.708\\nQ 110.214 108.991, 110.751 109.273\\nQ 111.288 109.556, 111.67 110.135\\nQ 112.066 110.701, 112.066 111.676\\nQ 112.066 113.061, 111.133 113.81\\nQ 110.214 114.545, 108.673 114.545\\nQ 107.783 114.545, 107.104 114.348\\nQ 106.44 114.164, 105.648 113.839\\nL 106.03 112.722\\n' fill='#CCCC00'/>\\n<path class='atom-5' d='M 113.267 104.27\\nL 114.624 104.27\\nL 114.624 108.524\\nL 119.741 108.524\\nL 119.741 104.27\\nL 121.098 104.27\\nL 121.098 114.277\\nL 119.741 114.277\\nL 119.741 109.655\\nL 114.624 109.655\\nL 114.624 114.277\\nL 113.267 114.277\\nL 113.267 104.27\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 137.187 58.3627\\nL 140.467 63.6632\\nQ 140.792 64.1862, 141.315 65.1332\\nQ 141.838 66.0802, 141.866 66.1368\\nL 141.866 58.3627\\nL 143.195 58.3627\\nL 143.195 68.37\\nL 141.824 68.37\\nL 138.304 62.5749\\nQ 137.894 61.8964, 137.456 61.119\\nQ 137.032 60.3416, 136.905 60.1013\\nL 136.905 68.37\\nL 135.604 68.37\\nL 135.604 58.3627\\nL 137.187 58.3627\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 106.645 5.45455\\nL 109.924 10.755\\nQ 110.249 11.278, 110.772 12.225\\nQ 111.295 13.172, 111.323 13.2286\\nL 111.323 5.45455\\nL 112.652 5.45455\\nL 112.652 15.4618\\nL 111.281 15.4618\\nL 107.762 9.66666\\nQ 107.352 8.9882, 106.913 8.21079\\nQ 106.489 7.43339, 106.362 7.1931\\nL 106.362 15.4618\\nL 105.062 15.4618\\nL 105.062 5.45455\\nL 106.645 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 45.5646 5.45455\\nL 48.8438 10.755\\nQ 49.1689 11.278, 49.6919 12.225\\nQ 50.2148 13.172, 50.2431 13.2286\\nL 50.2431 5.45455\\nL 51.5718 5.45455\\nL 51.5718 15.4618\\nL 50.2007 15.4618\\nL 46.6812 9.66666\\nQ 46.2713 8.9882, 45.8331 8.21079\\nQ 45.4091 7.43339, 45.2819 7.1931\\nL 45.2819 15.4618\\nL 43.9815 15.4618\\nL 43.9815 5.45455\\nL 45.5646 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 194, "data-ID": 978, "data-Solubility": -2.36, "data-SMILES": "c1cnc2c(S)ncnc2n1", "mols2grid-tooltip": "<strong>Name</strong>: 2-Mercaptopteridine<br><strong>SMILES</strong>: c1cnc2c(S)ncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.36</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.224,64.6863 L 116.146,69.3434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.146,69.3434 L 108.067,74.0004' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.92,71.0985 L 119.842,75.7556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.842,75.7556 L 111.763,80.4126' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.272,85.7234 L 102.269,94.461' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.269,94.461 L 102.267,103.199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.674,85.7258 L 109.671,94.4635' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.671,94.4635 L 109.668,103.201' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 110.075,81.8479 L 118.543,86.7421' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 118.543,86.7421 L 127.01,91.6362' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 101.689,77.0035 L 87.7984,68.9841' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 87.7984,68.9841 L 73.9076,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.9076,60.9646 L 73.9076,23.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.5062,55.4136 L 66.5062,29.5089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 73.9076,60.9646 L 41.8597,79.468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.9076,23.9579 L 41.8597,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 41.8597,5.45455 L 9.8119,23.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 40.7533,14.6398 L 18.3198,27.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 9.8119,23.9579 L 9.8119,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 41.8597,79.468 L 9.8119,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 40.7533,70.2828 L 18.3198,57.3304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.812 64.7221\\nQ 126.812 62.2056, 128.056 60.7993\\nQ 129.299 59.3931, 131.623 59.3931\\nQ 133.947 59.3931, 135.191 60.7993\\nQ 136.434 62.2056, 136.434 64.7221\\nQ 136.434 67.2681, 135.176 68.7188\\nQ 133.918 70.1546, 131.623 70.1546\\nQ 129.314 70.1546, 128.056 68.7188\\nQ 126.812 67.2829, 126.812 64.7221\\nM 131.623 68.9704\\nQ 133.222 68.9704, 134.081 67.9046\\nQ 134.954 66.824, 134.954 64.7221\\nQ 134.954 62.6645, 134.081 61.6283\\nQ 133.222 60.5773, 131.623 60.5773\\nQ 130.025 60.5773, 129.151 61.6135\\nQ 128.293 62.6497, 128.293 64.7221\\nQ 128.293 66.8388, 129.151 67.9046\\nQ 130.025 68.9704, 131.623 68.9704\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 103.015 83.0749\\nQ 103.133 83.1193, 103.621 83.3266\\nQ 104.11 83.5338, 104.643 83.667\\nQ 105.191 83.7855, 105.723 83.7855\\nQ 106.715 83.7855, 107.293 83.3118\\nQ 107.87 82.8233, 107.87 81.9795\\nQ 107.87 81.4022, 107.574 81.047\\nQ 107.293 80.6917, 106.848 80.4993\\nQ 106.404 80.3068, 105.664 80.0848\\nQ 104.732 79.8035, 104.169 79.5371\\nQ 103.621 79.2706, 103.222 78.7081\\nQ 102.837 78.1456, 102.837 77.1983\\nQ 102.837 75.8808, 103.725 75.0667\\nQ 104.628 74.2525, 106.404 74.2525\\nQ 107.618 74.2525, 108.995 74.8298\\nL 108.654 75.9696\\nQ 107.396 75.4515, 106.449 75.4515\\nQ 105.427 75.4515, 104.865 75.8808\\nQ 104.302 76.2953, 104.317 77.0206\\nQ 104.317 77.5831, 104.598 77.9236\\nQ 104.895 78.2641, 105.309 78.4565\\nQ 105.738 78.6489, 106.449 78.871\\nQ 107.396 79.167, 107.959 79.4631\\nQ 108.521 79.7591, 108.921 80.366\\nQ 109.335 80.9581, 109.335 81.9795\\nQ 109.335 83.4302, 108.358 84.2147\\nQ 107.396 84.9845, 105.783 84.9845\\nQ 104.85 84.9845, 104.14 84.7772\\nQ 103.444 84.5848, 102.615 84.2443\\nL 103.015 83.0749\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 101.154 109.113\\nQ 101.154 106.596, 102.398 105.19\\nQ 103.641 103.784, 105.965 103.784\\nQ 108.289 103.784, 109.533 105.19\\nQ 110.776 106.596, 110.776 109.113\\nQ 110.776 111.659, 109.518 113.11\\nQ 108.26 114.545, 105.965 114.545\\nQ 103.656 114.545, 102.398 113.11\\nQ 101.154 111.674, 101.154 109.113\\nM 105.965 113.361\\nQ 107.564 113.361, 108.423 112.295\\nQ 109.296 111.215, 109.296 109.113\\nQ 109.296 107.055, 108.423 106.019\\nQ 107.564 104.968, 105.965 104.968\\nQ 104.367 104.968, 103.493 106.004\\nQ 102.635 107.04, 102.635 109.113\\nQ 102.635 111.23, 103.493 112.295\\nQ 104.367 113.361, 105.965 113.361\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 129.289 89.0528\\nL 132.724 94.6038\\nQ 133.064 95.1515, 133.612 96.1432\\nQ 134.159 97.135, 134.189 97.1942\\nL 134.189 89.0528\\nL 135.581 89.0528\\nL 135.581 99.5331\\nL 134.145 99.5331\\nL 130.459 93.464\\nQ 130.029 92.7534, 129.571 91.9393\\nQ 129.127 91.1251, 128.993 90.8735\\nL 128.993 99.5331\\nL 127.631 99.5331\\nL 127.631 89.0528\\nL 129.289 89.0528\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 136.839 89.0528\\nL 138.26 89.0528\\nL 138.26 93.5084\\nL 143.618 93.5084\\nL 143.618 89.0528\\nL 145.039 89.0528\\nL 145.039 99.5331\\nL 143.618 99.5331\\nL 143.618 94.6926\\nL 138.26 94.6926\\nL 138.26 99.5331\\nL 136.839 99.5331\\nL 136.839 89.0528\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 145.547 99.1654\\nQ 145.801 98.5108, 146.407 98.1493\\nQ 147.013 97.7781, 147.853 97.7781\\nQ 148.898 97.7781, 149.485 98.3447\\nQ 150.071 98.9113, 150.071 99.9176\\nQ 150.071 100.943, 149.309 101.901\\nQ 148.557 102.858, 146.993 103.992\\nL 150.188 103.992\\nL 150.188 104.773\\nL 145.528 104.773\\nL 145.528 104.119\\nQ 146.818 103.2, 147.58 102.516\\nQ 148.351 101.833, 148.723 101.217\\nQ 149.094 100.602, 149.094 99.9665\\nQ 149.094 99.3021, 148.762 98.9309\\nQ 148.43 98.5596, 147.853 98.5596\\nQ 147.296 98.5596, 146.925 98.7843\\nQ 146.554 99.009, 146.29 99.5073\\nL 145.547 99.1654\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 195, "data-ID": 983, "data-Solubility": -1.56, "data-SMILES": "O=S(=O)(N)c(cccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: Benzenesulfonamide<br><strong>SMILES</strong>: O=S(=O)(N)c(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.56</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.735,64.3185 L 122.399,58.9319' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.399,58.9319 L 113.062,53.5452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-0 atom-10' d='M 138.343,64.3922 L 145.535,60.2429' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-0 atom-10' d='M 145.535,60.2429 L 152.727,56.0935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-11' d='M 135.102,70.3714 L 135.102,78.4896' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-11' d='M 135.102,78.4896 L 135.102,86.6077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.606,53.5452 L 115.606,45.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.606,45.5186 L 115.606,37.4921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.519,53.5452 L 110.519,45.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.519,45.5186 L 110.519,37.4921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 113.062,53.5452 L 103.514,59.0537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 103.514,59.0537 L 93.9663,64.5622' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.0754,64.5622 L 71.8396,55.1954' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.0337,55.2445 L 56.4856,60.753' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.4856,60.753 L 46.9375,66.2615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.9375,66.2615 L 37.6005,60.8748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.6005,60.8748 L 28.2635,55.4881' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 44.3943,66.2615 L 44.3943,74.3847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 44.3943,74.3847 L 44.3943,82.5079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 49.4808,66.2615 L 49.4808,74.3847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 49.4808,74.3847 L 49.4808,82.5079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 21.6558,55.4146 L 14.4642,59.5639' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 14.4642,59.5639 L 7.27273,63.7132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 24.8959,49.4353 L 24.8959,41.3172' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 24.8959,41.3172 L 24.8959,33.199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 133.51 62.6603\\nL 135.87 66.4752\\nQ 136.104 66.8516, 136.481 67.5332\\nQ 136.857 68.2148, 136.878 68.2554\\nL 136.878 62.6603\\nL 137.834 62.6603\\nL 137.834 69.8628\\nL 136.847 69.8628\\nL 134.314 65.6918\\nQ 134.019 65.2035, 133.704 64.644\\nQ 133.398 64.0845, 133.307 63.9115\\nL 133.307 69.8628\\nL 132.371 69.8628\\nL 132.371 62.6603\\nL 133.51 62.6603\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 111.028 35.6711\\nQ 111.109 35.7016, 111.445 35.844\\nQ 111.781 35.9865, 112.147 36.078\\nQ 112.523 36.1594, 112.89 36.1594\\nQ 113.571 36.1594, 113.968 35.8339\\nQ 114.365 35.4982, 114.365 34.9183\\nQ 114.365 34.5215, 114.161 34.2774\\nQ 113.968 34.0332, 113.663 33.901\\nQ 113.357 33.7687, 112.849 33.6161\\nQ 112.208 33.4229, 111.821 33.2397\\nQ 111.445 33.0566, 111.17 32.67\\nQ 110.906 32.2835, 110.906 31.6324\\nQ 110.906 30.727, 111.516 30.1675\\nQ 112.137 29.608, 113.357 29.608\\nQ 114.192 29.608, 115.138 30.0047\\nL 114.904 30.788\\nQ 114.039 30.432, 113.388 30.432\\nQ 112.686 30.432, 112.299 30.727\\nQ 111.913 31.0118, 111.923 31.5103\\nQ 111.923 31.8969, 112.116 32.1309\\nQ 112.32 32.3649, 112.605 32.4971\\nQ 112.9 32.6294, 113.388 32.782\\nQ 114.039 32.9854, 114.426 33.1889\\nQ 114.812 33.3923, 115.087 33.8094\\nQ 115.372 34.2164, 115.372 34.9183\\nQ 115.372 35.9153, 114.7 36.4544\\nQ 114.039 36.9834, 112.93 36.9834\\nQ 112.289 36.9834, 111.801 36.841\\nQ 111.323 36.7088, 110.753 36.4748\\nL 111.028 35.6711\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 88.9862 68.7336\\nQ 89.0676 68.7641, 89.4033 68.9065\\nQ 89.739 69.0489, 90.1052 69.1405\\nQ 90.4817 69.2219, 90.8479 69.2219\\nQ 91.5295 69.2219, 91.9262 68.8963\\nQ 92.323 68.5606, 92.323 67.9808\\nQ 92.323 67.584, 92.1195 67.3399\\nQ 91.9262 67.0957, 91.621 66.9635\\nQ 91.3158 66.8312, 90.8072 66.6786\\nQ 90.1663 66.4853, 89.7797 66.3022\\nQ 89.4033 66.1191, 89.1286 65.7325\\nQ 88.8641 65.3459, 88.8641 64.6949\\nQ 88.8641 63.7895, 89.4745 63.2299\\nQ 90.0951 62.6704, 91.3158 62.6704\\nQ 92.15 62.6704, 93.0961 63.0672\\nL 92.8622 63.8505\\nQ 91.9974 63.4944, 91.3464 63.4944\\nQ 90.6444 63.4944, 90.2578 63.7895\\nQ 89.8713 64.0743, 89.8814 64.5728\\nQ 89.8814 64.9594, 90.0747 65.1934\\nQ 90.2782 65.4273, 90.563 65.5596\\nQ 90.8581 65.6918, 91.3464 65.8444\\nQ 91.9974 66.0479, 92.384 66.2514\\nQ 92.7706 66.4548, 93.0453 66.8719\\nQ 93.3301 67.2788, 93.3301 67.9808\\nQ 93.3301 68.9777, 92.6587 69.5169\\nQ 91.9974 70.0459, 90.8886 70.0459\\nQ 90.2477 70.0459, 89.7594 69.9035\\nQ 89.2812 69.7712, 88.7115 69.5373\\nL 88.9862 68.7336\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 66.9446 56.0172\\nQ 67.0259 56.0478, 67.3617 56.1902\\nQ 67.6974 56.3326, 68.0636 56.4242\\nQ 68.44 56.5056, 68.8062 56.5056\\nQ 69.4878 56.5056, 69.8846 56.18\\nQ 70.2813 55.8443, 70.2813 55.2644\\nQ 70.2813 54.8677, 70.0779 54.6235\\nQ 69.8846 54.3794, 69.5794 54.2471\\nQ 69.2742 54.1149, 68.7655 53.9623\\nQ 68.1246 53.769, 67.7381 53.5859\\nQ 67.3617 53.4028, 67.087 53.0162\\nQ 66.8225 52.6296, 66.8225 51.9785\\nQ 66.8225 51.0731, 67.4329 50.5136\\nQ 68.0534 49.9541, 69.2742 49.9541\\nQ 70.1084 49.9541, 71.0545 50.3508\\nL 70.8205 51.1342\\nQ 69.9558 50.7781, 69.3047 50.7781\\nQ 68.6028 50.7781, 68.2162 51.0731\\nQ 67.8296 51.358, 67.8398 51.8565\\nQ 67.8398 52.243, 68.0331 52.477\\nQ 68.2365 52.711, 68.5214 52.8432\\nQ 68.8164 52.9755, 69.3047 53.1281\\nQ 69.9558 53.3316, 70.3424 53.535\\nQ 70.7289 53.7385, 71.0036 54.1556\\nQ 71.2885 54.5625, 71.2885 55.2644\\nQ 71.2885 56.2614, 70.617 56.8006\\nQ 69.9558 57.3296, 68.8469 57.3296\\nQ 68.206 57.3296, 67.7177 57.1871\\nQ 67.2396 57.0549, 66.6699 56.8209\\nL 66.9446 56.0172\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 23.3038 49.9439\\nL 25.6639 53.7588\\nQ 25.8979 54.1352, 26.2743 54.8168\\nQ 26.6507 55.4984, 26.6711 55.5391\\nL 26.6711 49.9439\\nL 27.6273 49.9439\\nL 27.6273 57.1465\\nL 26.6406 57.1465\\nL 24.1075 52.9755\\nQ 23.8124 52.4872, 23.4971 51.9277\\nQ 23.1919 51.3682, 23.1003 51.1952\\nL 23.1003 57.1465\\nL 22.1644 57.1465\\nL 22.1644 49.9439\\nL 23.3038 49.9439\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 44.9029 89.0797\\nQ 44.9843 89.1102, 45.32 89.2527\\nQ 45.6557 89.3951, 46.0219 89.4866\\nQ 46.3984 89.568, 46.7646 89.568\\nQ 47.4462 89.568, 47.8429 89.2425\\nQ 48.2397 88.9068, 48.2397 88.3269\\nQ 48.2397 87.9302, 48.0362 87.686\\nQ 47.8429 87.4419, 47.5377 87.3096\\nQ 47.2325 87.1774, 46.7239 87.0248\\nQ 46.083 86.8315, 45.6964 86.6484\\nQ 45.32 86.4652, 45.0453 86.0787\\nQ 44.7808 85.6921, 44.7808 85.041\\nQ 44.7808 84.1356, 45.3912 83.5761\\nQ 46.0118 83.0166, 47.2325 83.0166\\nQ 48.0667 83.0166, 49.0128 83.4133\\nL 48.7789 84.1966\\nQ 47.9141 83.8406, 47.2631 83.8406\\nQ 46.5611 83.8406, 46.1745 84.1356\\nQ 45.788 84.4205, 45.7981 84.9189\\nQ 45.7981 85.3055, 45.9914 85.5395\\nQ 46.1949 85.7735, 46.4797 85.9057\\nQ 46.7748 86.038, 47.2631 86.1906\\nQ 47.9141 86.394, 48.3007 86.5975\\nQ 48.6873 86.801, 48.962 87.218\\nQ 49.2468 87.625, 49.2468 88.3269\\nQ 49.2468 89.3239, 48.5754 89.863\\nQ 47.9141 90.392, 46.8053 90.392\\nQ 46.1644 90.392, 45.6761 90.2496\\nQ 45.1979 90.1174, 44.6282 89.8834\\nL 44.9029 89.0797\\n' fill='#CCCC00'/>\\n</svg>\\n", "mols2grid-id": 196, "data-ID": 988, "data-Solubility": -3.9, "data-SMILES": "N(C(=S)SSC(N(C)C)=S)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: Thiram<br><strong>SMILES</strong>: N(C(=S)SSC(N(C)C)=S)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.9</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,72.5025 L 112.475,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,56.8762 L 112.475,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,97.5 L 93.755,89.5583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 93.755,89.5583 L 107.51,81.6166' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,41.25 L 138.457,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,41.25 L 80,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,22.5 L 66.245,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.245,30.4417 L 52.49,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,47.4975 L 47.525,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,63.1237 L 47.525,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.525,78.75 L 21.5425,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 47.525,78.75 L 80,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.127 73.44\\nL 113.608 79.065\\nQ 113.953 79.62, 114.507 80.625\\nQ 115.062 81.63, 115.093 81.69\\nL 115.093 73.44\\nL 116.502 73.44\\nL 116.502 84.06\\nL 115.047 84.06\\nL 111.312 77.91\\nQ 110.877 77.19, 110.412 76.365\\nQ 109.963 75.54, 109.828 75.285\\nL 109.828 84.06\\nL 108.448 84.06\\nL 108.448 73.44\\nL 110.127 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.778 73.44\\nL 119.218 73.44\\nL 119.218 77.955\\nL 124.647 77.955\\nL 124.647 73.44\\nL 126.088 73.44\\nL 126.088 84.06\\nL 124.647 84.06\\nL 124.647 79.155\\nL 119.218 79.155\\nL 119.218 84.06\\nL 117.778 84.06\\nL 117.778 73.44\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 33.9425 35.94\\nL 35.3825 35.94\\nL 35.3825 40.455\\nL 40.8125 40.455\\nL 40.8125 35.94\\nL 42.2525 35.94\\nL 42.2525 46.56\\nL 40.8125 46.56\\nL 40.8125 41.655\\nL 35.3825 41.655\\nL 35.3825 46.56\\nL 33.9425 46.56\\nL 33.9425 35.94\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 45.1775 35.94\\nL 48.6575 41.565\\nQ 49.0025 42.12, 49.5575 43.125\\nQ 50.1125 44.13, 50.1425 44.19\\nL 50.1425 35.94\\nL 51.5525 35.94\\nL 51.5525 46.56\\nL 50.0975 46.56\\nL 46.3625 40.41\\nQ 45.9275 39.69, 45.4625 38.865\\nQ 45.0125 38.04, 44.8775 37.785\\nL 44.8775 46.56\\nL 43.4975 46.56\\nL 43.4975 35.94\\nL 45.1775 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 197, "data-ID": 993, "data-Solubility": 0.49, "data-SMILES": "N1C(C)CNC(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: trans-2,5-Dimethylpiperazine<br><strong>SMILES</strong>: N1C(C)CNC(C)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.49</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.246,98.5863 L 120.261,88.033' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.261,88.033 L 120.276,77.4797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.618,98.5769 L 113.632,88.0236' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.632,88.0236 L 113.647,77.4703' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.962,77.475 L 125.968,72.2955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.968,72.2955 L 134.975,67.116' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 116.962,77.475 L 88.274,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.274,60.8341 L 88.274,27.6894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.6451,55.8624 L 81.6451,32.6611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 88.274,60.8341 L 59.5707,77.4065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.274,27.6894 L 59.5707,11.117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.5707,11.117 L 30.8674,27.6894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.5797,19.3437 L 38.4874,30.9444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.8674,27.6894 L 30.8674,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.8674,60.8341 L 20.0313,67.0899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 20.0313,67.0899 L 9.19515,73.3458' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 59.5707,77.4065 L 30.8674,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 58.5797,69.1799 L 38.4874,57.5792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 112.616 104.017\\nQ 112.616 101.763, 113.729 100.504\\nQ 114.843 99.2445, 116.924 99.2445\\nQ 119.006 99.2445, 120.119 100.504\\nQ 121.233 101.763, 121.233 104.017\\nQ 121.233 106.298, 120.106 107.597\\nQ 118.979 108.883, 116.924 108.883\\nQ 114.856 108.883, 113.729 107.597\\nQ 112.616 106.311, 112.616 104.017\\nM 116.924 107.822\\nQ 118.356 107.822, 119.125 106.868\\nQ 119.907 105.9, 119.907 104.017\\nQ 119.907 102.174, 119.125 101.246\\nQ 118.356 100.305, 116.924 100.305\\nQ 115.492 100.305, 114.71 101.233\\nQ 113.941 102.161, 113.941 104.017\\nQ 113.941 105.913, 114.71 106.868\\nQ 115.492 107.822, 116.924 107.822\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.638 64.2834\\nQ 135.638 62.0296, 136.752 60.7701\\nQ 137.865 59.5106, 139.947 59.5106\\nQ 142.028 59.5106, 143.142 60.7701\\nQ 144.255 62.0296, 144.255 64.2834\\nQ 144.255 66.5638, 143.129 67.863\\nQ 142.002 69.1491, 139.947 69.1491\\nQ 137.878 69.1491, 136.752 67.863\\nQ 135.638 66.577, 135.638 64.2834\\nM 139.947 68.0884\\nQ 141.379 68.0884, 142.147 67.1339\\nQ 142.93 66.166, 142.93 64.2834\\nQ 142.93 62.4406, 142.147 61.5125\\nQ 141.379 60.5712, 139.947 60.5712\\nQ 138.515 60.5712, 137.733 61.4992\\nQ 136.964 62.4273, 136.964 64.2834\\nQ 136.964 66.1793, 137.733 67.1339\\nQ 138.515 68.0884, 139.947 68.0884\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.382 59.6166\\nL 146.655 59.6166\\nL 146.655 63.6073\\nL 151.455 63.6073\\nL 151.455 59.6166\\nL 152.727 59.6166\\nL 152.727 69.0032\\nL 151.455 69.0032\\nL 151.455 64.6679\\nL 146.655 64.6679\\nL 146.655 69.0032\\nL 145.382 69.0032\\nL 145.382 59.6166\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 7.27273 69.3789\\nL 8.53223 69.3789\\nL 8.53223 78.8052\\nL 7.27273 78.8052\\nL 7.27273 69.3789\\n' fill='#A01EEF'/>\\n</svg>\\n", "mols2grid-id": 198, "data-ID": 998, "data-Solubility": -3.27, "data-SMILES": "O=C(O)c(cccc1I)c1", "mols2grid-tooltip": "<strong>Name</strong>: m-Iodobenzoic_Acid<br><strong>SMILES</strong>: O=C(O)c(cccc1I)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.27</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.8512,25.2132 L 24.8512,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 31.0187,29.8302 L 31.0187,51.3762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 47.7897,12.1501 L 36.3204,18.6816' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 36.3204,18.6816 L 24.8512,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.8512,55.9932 L 36.3204,62.5247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.3204,62.5247 L 47.7897,69.0563' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.9606,69.0281 L 67.2459,62.5107' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 67.2459,62.5107 L 78.5311,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 56.2618,61.7321 L 64.1614,57.1698' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.1614,57.1698 L 72.0611,52.6076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.5311,55.9932 L 105.183,71.3852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-3' d='M 78.5311,25.2132 L 78.5311,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 105.183,71.3852 L 105.209,84.2186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 105.209,84.2186 L 105.236,97.0519' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 105.183,71.3852 L 116.469,64.8677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 116.469,64.8677 L 127.755,58.3501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 105.485,64.089 L 113.385,59.5267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 113.385,59.5267 L 121.285,54.9645' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.872,104.901 L 118.251,109.723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 118.251,109.723 L 126.629,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.837,50.8571 L 131.837,38.0351' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.837,38.0351 L 131.837,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 131.837,25.2132 L 120.551,18.6956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 120.551,18.6956 L 109.264,12.1781' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 125.367,28.5988 L 117.466,24.0366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 117.466,24.0366 L 109.566,19.4743' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 101.102,12.1782 L 89.8163,18.6957' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 89.8163,18.6957 L 78.5311,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.5311,25.2132 L 67.2459,18.6957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.2459,18.6957 L 55.9606,12.1782' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 72.0611,28.5988 L 64.1614,24.0365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 64.1614,24.0365 L 56.2618,19.4743' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 49.9488 67.0186\\nL 52.8105 71.6443\\nQ 53.0942 72.1007, 53.5506 72.9271\\nQ 54.007 73.7535, 54.0317 73.8029\\nL 54.0317 67.0186\\nL 55.1912 67.0186\\nL 55.1912 75.7518\\nL 53.9947 75.7518\\nL 50.9233 70.6945\\nQ 50.5656 70.1024, 50.1832 69.424\\nQ 49.8131 68.7455, 49.7021 68.5358\\nL 49.7021 75.7518\\nL 48.5673 75.7518\\nL 48.5673 67.0186\\nL 49.9488 67.0186\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 101.238 102.264\\nQ 101.238 100.167, 102.274 98.9951\\nQ 103.31 97.8233, 105.247 97.8233\\nQ 107.183 97.8233, 108.219 98.9951\\nQ 109.256 100.167, 109.256 102.264\\nQ 109.256 104.386, 108.207 105.594\\nQ 107.159 106.791, 105.247 106.791\\nQ 103.322 106.791, 102.274 105.594\\nQ 101.238 104.398, 101.238 102.264\\nM 105.247 105.804\\nQ 106.579 105.804, 107.294 104.916\\nQ 108.022 104.015, 108.022 102.264\\nQ 108.022 100.549, 107.294 99.6859\\nQ 106.579 98.8101, 105.247 98.8101\\nQ 103.915 98.8101, 103.187 99.6735\\nQ 102.471 100.537, 102.471 102.264\\nQ 102.471 104.028, 103.187 104.916\\nQ 103.915 105.804, 105.247 105.804\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 129.906 51.6266\\nL 132.768 56.2522\\nQ 133.052 56.7086, 133.508 57.5351\\nQ 133.965 58.3615, 133.989 58.4108\\nL 133.989 51.6266\\nL 135.149 51.6266\\nL 135.149 60.3598\\nL 133.952 60.3598\\nL 130.881 55.3024\\nQ 130.523 54.7103, 130.141 54.0319\\nQ 129.771 53.3535, 129.66 53.1438\\nL 129.66 60.3598\\nL 128.525 60.3598\\nL 128.525 51.6266\\nL 129.906 51.6266\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 103.253 5.45455\\nL 106.114 10.0802\\nQ 106.398 10.5366, 106.854 11.363\\nQ 107.311 12.1895, 107.335 12.2388\\nL 107.335 5.45455\\nL 108.495 5.45455\\nL 108.495 14.1877\\nL 107.298 14.1877\\nL 104.227 9.13038\\nQ 103.869 8.5383, 103.487 7.85987\\nQ 103.117 7.18145, 103.006 6.97175\\nL 103.006 14.1877\\nL 101.871 14.1877\\nL 101.871 5.45455\\nL 103.253 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 49.9488 5.45455\\nL 52.8105 10.0802\\nQ 53.0942 10.5366, 53.5506 11.363\\nQ 54.007 12.1895, 54.0317 12.2388\\nL 54.0317 5.45455\\nL 55.1912 5.45455\\nL 55.1912 14.1877\\nL 53.9947 14.1877\\nL 50.9233 9.13038\\nQ 50.5656 8.5383, 50.1832 7.85987\\nQ 49.8131 7.18145, 49.7021 6.97175\\nL 49.7021 14.1877\\nL 48.5673 14.1877\\nL 48.5673 5.45455\\nL 49.9488 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 199, "data-ID": 1003, "data-Solubility": -1.11, "data-SMILES": "c1cnc2c(OC)ncnc2n1", "mols2grid-tooltip": "<strong>Name</strong>: 2-Methoxypteridine<br><strong>SMILES</strong>: c1cnc2c(OC)ncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.11</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 37.954,33.3727 L 37.954,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 44.3717,38.177 L 44.3717,60.5973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 61.8233,19.7795 L 49.8886,26.5761' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 49.8886,26.5761 L 37.954,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 37.954,65.4016 L 25.9283,72.3808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.9283,72.3808 L 13.9027,79.3599' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 37.954,65.4016 L 49.8886,72.1982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 49.8886,72.1982 L 61.8233,78.9948' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 10.195,86.9333 L 10.211,97.0605' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 10.211,97.0605 L 10.227,107.188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.3258,78.9655 L 82.0689,72.1836' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.0689,72.1836 L 93.8121,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.6391,71.3734 L 78.8593,66.626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.8593,66.626 L 87.0796,61.8787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.8121,65.4016 L 121.545,81.4182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 93.8121,33.3727 L 93.8121,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 121.545,81.4182 L 133.29,74.6362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 133.29,74.6362 L 145.034,67.8542' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 121.859,73.826 L 130.08,69.0786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.08,69.0786 L 138.301,64.3312' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 149.281,60.0571 L 149.281,46.7149' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 149.281,46.7149 L 149.281,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 149.281,33.3727 L 137.537,26.5906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 137.537,26.5906 L 125.792,19.8086' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 142.548,36.8957 L 134.327,32.1483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 134.327,32.1483 L 126.106,27.4009' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 117.298,19.8088 L 105.555,26.5907' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 105.555,26.5907 L 93.8121,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 93.8121,33.3727 L 82.0689,26.5907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.0689,26.5907 L 70.3258,19.8088' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 87.0796,36.8956 L 78.8593,32.1483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.8593,32.1483 L 70.6391,27.4009' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.61929 84.6357\\nQ 7.72197 84.6742, 8.14554 84.8539\\nQ 8.56912 85.0336, 9.0312 85.1491\\nQ 9.50611 85.2518, 9.96819 85.2518\\nQ 10.8282 85.2518, 11.3288 84.8411\\nQ 11.8293 84.4175, 11.8293 83.6859\\nQ 11.8293 83.1853, 11.5726 82.8772\\nQ 11.3288 82.5692, 10.9437 82.4023\\nQ 10.5586 82.2354, 9.91685 82.0429\\nQ 9.10821 81.799, 8.62046 81.568\\nQ 8.14554 81.337, 7.79898 80.8492\\nQ 7.46526 80.3615, 7.46526 79.54\\nQ 7.46526 78.3976, 8.23539 77.6917\\nQ 9.01836 76.9857, 10.5586 76.9857\\nQ 11.6111 76.9857, 12.8048 77.4863\\nL 12.5096 78.4746\\nQ 11.4186 78.0254, 10.5971 78.0254\\nQ 9.71148 78.0254, 9.22373 78.3976\\nQ 8.73598 78.757, 8.74882 79.386\\nQ 8.74882 79.8737, 8.99269 80.1689\\nQ 9.2494 80.4641, 9.6088 80.631\\nQ 9.98103 80.7979, 10.5971 80.9904\\nQ 11.4186 81.2471, 11.9064 81.5038\\nQ 12.3941 81.7605, 12.7407 82.2868\\nQ 13.1001 82.8002, 13.1001 83.6859\\nQ 13.1001 84.9437, 12.2529 85.624\\nQ 11.4186 86.2915, 10.0195 86.2915\\nQ 9.21089 86.2915, 8.59479 86.1118\\nQ 7.99152 85.9449, 7.27273 85.6497\\nL 7.61929 84.6357\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 64.07 76.8745\\nL 67.0479 81.6878\\nQ 67.3431 82.1627, 67.818 83.0227\\nQ 68.2929 83.8827, 68.3186 83.934\\nL 68.3186 76.8745\\nL 69.5251 76.8745\\nL 69.5251 85.962\\nL 68.2801 85.962\\nL 65.084 80.6995\\nQ 64.7118 80.0834, 64.3139 79.3774\\nQ 63.9288 78.6714, 63.8133 78.4532\\nL 63.8133 85.962\\nL 62.6324 85.962\\nL 62.6324 76.8745\\nL 64.07 76.8745\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 147.272 60.8578\\nL 150.25 65.6712\\nQ 150.545 66.1461, 151.02 67.0061\\nQ 151.495 67.8661, 151.521 67.9174\\nL 151.521 60.8578\\nL 152.727 60.8578\\nL 152.727 69.9454\\nL 151.482 69.9454\\nL 148.286 64.6828\\nQ 147.914 64.0667, 147.516 63.3608\\nQ 147.131 62.6548, 147.015 62.4366\\nL 147.015 69.9454\\nL 145.835 69.9454\\nL 145.835 60.8578\\nL 147.272 60.8578\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 119.537 12.8123\\nL 122.515 17.6256\\nQ 122.81 18.1005, 123.285 18.9605\\nQ 123.76 19.8205, 123.785 19.8718\\nL 123.785 12.8123\\nL 124.992 12.8123\\nL 124.992 21.8998\\nL 123.747 21.8998\\nL 120.551 16.6372\\nQ 120.178 16.0211, 119.781 15.3152\\nQ 119.395 14.6092, 119.28 14.391\\nL 119.28 21.8998\\nL 118.099 21.8998\\nL 118.099 12.8123\\nL 119.537 12.8123\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 64.07 12.8123\\nL 67.0479 17.6256\\nQ 67.3431 18.1005, 67.818 18.9605\\nQ 68.2929 19.8205, 68.3186 19.8718\\nL 68.3186 12.8123\\nL 69.5251 12.8123\\nL 69.5251 21.8998\\nL 68.2801 21.8998\\nL 65.084 16.6372\\nQ 64.7118 16.0211, 64.3139 15.3152\\nQ 63.9288 14.6092, 63.8133 14.391\\nL 63.8133 21.8998\\nL 62.6324 21.8998\\nL 62.6324 12.8123\\nL 64.07 12.8123\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 200, "data-ID": 1008, "data-Solubility": -1.55, "data-SMILES": "c1c(SC)nc2cncnc2n1", "mols2grid-tooltip": "<strong>Name</strong>: 7-Methylthiopteridine<br><strong>SMILES</strong>: c1c(SC)nc2cncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.55</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 100.327,46.4612 L 100.327,36.8965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.327,36.8965 L 100.327,27.3319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.4499,61.7619 L 88.8692,56.9009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 88.8692,56.9009 L 97.2885,52.0398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.475,29.3197 L 108.155,25.4632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.155,25.4632 L 114.835,21.6066' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.1799,25.344 L 105.86,21.4875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.86,21.4875 L 112.54,17.6309' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 100.327,27.3319 L 91.9082,22.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.9082,22.4708 L 83.4889,17.6098' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.4109,17.6098 L 68.9916,22.4708' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.9916,22.4708 L 60.5723,27.3319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.7199,25.344 L 55.4896,21.7472' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.4896,21.7472 L 49.2593,18.1504' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.4247,29.3197 L 53.1944,25.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.1944,25.7229 L 46.9641,22.1261' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 60.5723,27.3319 L 60.5723,50.2852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.4246,52.273 L 81.5976,59.7741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.72,48.2974 L 79.3022,63.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.4499,61.7619 L 80.4973,84.7275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.4973,84.7275 L 100.402,96.1828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 100.402,96.1828 L 100.441,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 98.8906 47.035\\nL 101.021 50.478\\nQ 101.232 50.8177, 101.572 51.4329\\nQ 101.911 52.048, 101.93 52.0848\\nL 101.93 47.035\\nL 102.793 47.035\\nL 102.793 53.5354\\nL 101.902 53.5354\\nL 99.6159 49.7711\\nQ 99.3497 49.3304, 99.0651 48.8254\\nQ 98.7896 48.3204, 98.707 48.1643\\nL 98.707 53.5354\\nL 97.8623 53.5354\\nL 97.8623 47.035\\nL 98.8906 47.035\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 103.573 47.035\\nL 104.455 47.035\\nL 104.455 49.7986\\nL 107.778 49.7986\\nL 107.778 47.035\\nL 108.66 47.035\\nL 108.66 53.5354\\nL 107.778 53.5354\\nL 107.778 50.5331\\nL 104.455 50.5331\\nL 104.455 53.5354\\nL 103.573 53.5354\\nL 103.573 47.035\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 114.395 20.3816\\nQ 114.468 20.4091, 114.771 20.5377\\nQ 115.074 20.6662, 115.405 20.7488\\nQ 115.745 20.8223, 116.075 20.8223\\nQ 116.69 20.8223, 117.048 20.5285\\nQ 117.406 20.2255, 117.406 19.7022\\nQ 117.406 19.3441, 117.223 19.1237\\nQ 117.048 18.9034, 116.773 18.784\\nQ 116.497 18.6647, 116.038 18.5269\\nQ 115.46 18.3525, 115.111 18.1872\\nQ 114.771 18.022, 114.523 17.6731\\nQ 114.285 17.3242, 114.285 16.7366\\nQ 114.285 15.9194, 114.836 15.4145\\nQ 115.396 14.9095, 116.497 14.9095\\nQ 117.25 14.9095, 118.104 15.2676\\nL 117.893 15.9745\\nQ 117.113 15.6532, 116.525 15.6532\\nQ 115.891 15.6532, 115.543 15.9194\\nQ 115.194 16.1765, 115.203 16.6264\\nQ 115.203 16.9753, 115.377 17.1865\\nQ 115.561 17.3976, 115.818 17.517\\nQ 116.084 17.6364, 116.525 17.7741\\nQ 117.113 17.9577, 117.461 18.1413\\nQ 117.81 18.325, 118.058 18.7014\\nQ 118.315 19.0686, 118.315 19.7022\\nQ 118.315 20.6019, 117.709 21.0885\\nQ 117.113 21.566, 116.112 21.566\\nQ 115.533 21.566, 115.093 21.4374\\nQ 114.661 21.3181, 114.147 21.1069\\nL 114.395 20.3816\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 79.013 12.605\\nL 81.1431 16.048\\nQ 81.3542 16.3877, 81.694 17.0028\\nQ 82.0337 17.618, 82.052 17.6547\\nL 82.052 12.605\\nL 82.9151 12.605\\nL 82.9151 19.1054\\nL 82.0245 19.1054\\nL 79.7383 15.341\\nQ 79.4721 14.9003, 79.1875 14.3953\\nQ 78.912 13.8904, 78.8294 13.7343\\nL 78.8294 19.1054\\nL 77.9847 19.1054\\nL 77.9847 12.605\\nL 79.013 12.605\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 77.9067 5.45455\\nL 78.7881 5.45455\\nL 78.7881 8.21813\\nL 82.1117 8.21813\\nL 82.1117 5.45455\\nL 82.9931 5.45455\\nL 82.9931 11.9549\\nL 82.1117 11.9549\\nL 82.1117 8.95264\\nL 78.7881 8.95264\\nL 78.7881 11.9549\\nL 77.9067 11.9549\\nL 77.9067 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 41.6847 18.1689\\nQ 41.6847 16.608, 42.4559 15.7358\\nQ 43.2272 14.8636, 44.6687 14.8636\\nQ 46.1101 14.8636, 46.8814 15.7358\\nQ 47.6526 16.608, 47.6526 18.1689\\nQ 47.6526 19.7481, 46.8722 20.6478\\nQ 46.0918 21.5384, 44.6687 21.5384\\nQ 43.2364 21.5384, 42.4559 20.6478\\nQ 41.6847 19.7572, 41.6847 18.1689\\nM 44.6687 20.8039\\nQ 45.6602 20.8039, 46.1928 20.1429\\nQ 46.7345 19.4726, 46.7345 18.1689\\nQ 46.7345 16.8927, 46.1928 16.25\\nQ 45.6602 15.5981, 44.6687 15.5981\\nQ 43.6771 15.5981, 43.1354 16.2408\\nQ 42.6029 16.8835, 42.6029 18.1689\\nQ 42.6029 19.4818, 43.1354 20.1429\\nQ 43.6771 20.8039, 44.6687 20.8039\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 201, "data-ID": 1013, "data-Solubility": -2.15, "data-SMILES": "N1C(=S)NC(=O)C=C1CCC", "mols2grid-tooltip": "<strong>Name</strong>: Propylthiouracil<br><strong>SMILES</strong>: N1C(=S)NC(=O)C=C1CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 26.7205,35.3902 L 35.8487,40.6965' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 35.8487,40.6965 L 44.9769,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.9769,46.0027 L 44.9769,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 50.5661,50.1868 L 50.5661,69.7126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 69.4708,32.0538 L 44.9769,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.9769,73.8967 L 35.8487,79.2029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 35.8487,79.2029 L 26.7205,84.5091' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 44.9769,73.8967 L 69.4708,87.8456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4708,87.8456 L 69.4978,96.8639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4978,96.8639 L 69.5249,105.882' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 69.4708,87.8456 L 93.6238,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 70.2985,80.9132 L 87.2056,71.149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.6238,73.8967 L 103.851,79.8031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.851,79.8031 L 114.078,85.7095' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 93.6238,46.0027 L 93.6238,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 121.476,85.7097 L 131.704,79.8032' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.704,79.8032 L 141.932,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 121.749,79.0976 L 128.909,74.963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 128.909,74.963 L 136.068,70.8285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 141.932,73.8967 L 141.932,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 141.932,46.0027 L 131.704,40.0962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 131.704,40.0962 L 121.476,34.1897' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 136.068,49.0709 L 128.909,44.9364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 128.909,44.9364 L 121.749,40.8018' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 114.078,34.1899 L 103.851,40.0963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 103.851,40.0963 L 93.6238,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 93.6238,46.0027 L 69.4708,32.0538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.2056,48.7504 L 70.2985,38.9862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 69.4708,32.0538 L 69.497,23.3262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 69.497,23.3262 L 69.5232,14.5986' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 18.0684 35.0403\\nQ 18.0684 33.0729, 18.985 32.0445\\nQ 19.9128 31.0049, 21.6678 31.0049\\nQ 23.2999 31.0049, 24.1718 32.1562\\nL 23.434 32.7599\\nQ 22.7969 31.9215, 21.6678 31.9215\\nQ 20.4717 31.9215, 19.8346 32.7263\\nQ 19.2086 33.52, 19.2086 35.0403\\nQ 19.2086 36.6053, 19.8569 37.4101\\nQ 20.5164 38.215, 21.7908 38.215\\nQ 22.6627 38.215, 23.68 37.6896\\nL 23.993 38.528\\nQ 23.5794 38.7963, 22.9534 38.9528\\nQ 22.3274 39.1093, 21.6343 39.1093\\nQ 19.9128 39.1093, 18.985 38.0585\\nQ 18.0684 37.0077, 18.0684 35.0403\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 25.1332 30.5242\\nL 26.1616 30.5242\\nL 26.1616 39.0087\\nL 25.1332 39.0087\\nL 25.1332 30.5242\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 18.0684 85.4069\\nQ 18.0684 83.4394, 18.985 82.411\\nQ 19.9128 81.3714, 21.6678 81.3714\\nQ 23.2999 81.3714, 24.1718 82.5228\\nL 23.434 83.1264\\nQ 22.7969 82.2881, 21.6678 82.2881\\nQ 20.4717 82.2881, 19.8346 83.0929\\nQ 19.2086 83.8866, 19.2086 85.4069\\nQ 19.2086 86.9718, 19.8569 87.7767\\nQ 20.5164 88.5815, 21.7908 88.5815\\nQ 22.6627 88.5815, 23.68 88.0562\\nL 23.993 88.8945\\nQ 23.5794 89.1628, 22.9534 89.3193\\nQ 22.3274 89.4758, 21.6343 89.4758\\nQ 19.9128 89.4758, 18.985 88.425\\nQ 18.0684 87.3743, 18.0684 85.4069\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 25.1332 80.8907\\nL 26.1616 80.8907\\nL 26.1616 89.3752\\nL 25.1332 89.3752\\nL 25.1332 80.8907\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 66.4861 110.476\\nQ 66.4861 108.509, 67.4028 107.481\\nQ 68.3306 106.441, 70.0856 106.441\\nQ 71.7177 106.441, 72.5896 107.592\\nL 71.8518 108.196\\nQ 71.2146 107.358, 70.0856 107.358\\nQ 68.8895 107.358, 68.2523 108.163\\nQ 67.6263 108.956, 67.6263 110.476\\nQ 67.6263 112.041, 68.2747 112.846\\nQ 68.9342 113.651, 70.2086 113.651\\nQ 71.0805 113.651, 72.0977 113.126\\nL 72.4107 113.964\\nQ 71.9971 114.232, 71.3711 114.389\\nQ 70.7451 114.545, 70.0521 114.545\\nQ 68.3306 114.545, 67.4028 113.495\\nQ 66.4861 112.444, 66.4861 110.476\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 73.5509 105.96\\nL 74.5794 105.96\\nL 74.5794 114.445\\nL 73.5509 114.445\\nL 73.5509 105.96\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 116.027 83.8884\\nL 118.621 88.0804\\nQ 118.878 88.494, 119.291 89.2429\\nQ 119.705 89.9919, 119.727 90.0366\\nL 119.727 83.8884\\nL 120.778 83.8884\\nL 120.778 91.8028\\nL 119.694 91.8028\\nL 116.91 87.2196\\nQ 116.586 86.6831, 116.24 86.0682\\nQ 115.904 85.4534, 115.804 85.2634\\nL 115.804 91.8028\\nL 114.775 91.8028\\nL 114.775 83.8884\\nL 116.027 83.8884\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 116.027 28.0966\\nL 118.621 32.2885\\nQ 118.878 32.7021, 119.291 33.4511\\nQ 119.705 34.2, 119.727 34.2448\\nL 119.727 28.0966\\nL 120.778 28.0966\\nL 120.778 36.011\\nL 119.694 36.011\\nL 116.91 31.4278\\nQ 116.586 30.8912, 116.24 30.2764\\nQ 115.904 29.6616, 115.804 29.4715\\nL 115.804 36.011\\nL 114.775 36.011\\nL 114.775 28.0966\\nL 116.027 28.0966\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.4861 9.97066\\nQ 66.4861 8.00324, 67.4028 6.97482\\nQ 68.3306 5.93522, 70.0856 5.93522\\nQ 71.7177 5.93522, 72.5896 7.08661\\nL 71.8518 7.69024\\nQ 71.2146 6.85186, 70.0856 6.85186\\nQ 68.8895 6.85186, 68.2523 7.65671\\nQ 67.6263 8.45038, 67.6263 9.97066\\nQ 67.6263 11.5356, 68.2747 12.3405\\nQ 68.9342 13.1453, 70.2086 13.1453\\nQ 71.0805 13.1453, 72.0977 12.62\\nL 72.4107 13.4583\\nQ 71.9971 13.7266, 71.3711 13.8831\\nQ 70.7451 14.0396, 70.0521 14.0396\\nQ 68.3306 14.0396, 67.4028 12.9888\\nQ 66.4861 11.9381, 66.4861 9.97066\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 73.5509 5.45455\\nL 74.5794 5.45455\\nL 74.5794 13.939\\nL 73.5509 13.939\\nL 73.5509 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 202, "data-ID": 1018, "data-Solubility": -5.43, "data-SMILES": "Clc1c(Cl)c(Cl)c2nccnc2c1Cl", "mols2grid-tooltip": "<strong>Name</strong>: Chlorquinox<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c2nccnc2c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.43</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.927,107.021 L 122.938,99.3093' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.938,99.3093 L 122.949,91.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.083,107.014 L 118.094,99.3025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.094,99.3025 L 118.105,91.5906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.527,91.5941 L 127.109,87.8091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.109,87.8091 L 133.691,84.024' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 120.527,91.5941 L 99.5645,79.4338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.5645,79.4338 L 99.5792,69.4074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.5792,69.4074 L 99.5939,59.3811' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 95.8455,53.0224 L 87.2409,48.0312' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.2409,48.0312 L 78.6364,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.6364,43.04 L 78.6364,18.8194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.7923,39.4069 L 73.7923,22.4525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-5 atom-12' d='M 78.6364,43.04 L 57.6614,55.1502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.6364,18.8194 L 57.6614,6.70917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 78.6364,18.8194 L 85.4625,14.8786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 85.4625,14.8786 L 92.2887,10.9378' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.6614,6.70917 L 36.6864,18.8194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 56.9373,12.7208 L 42.2548,21.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 36.6864,18.8194 L 36.6864,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 36.6864,18.8194 L 28.7607,14.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 28.7607,14.2438 L 20.8349,9.66818' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 57.6614,55.1502 L 36.6864,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 56.9373,49.1386 L 42.2548,40.6614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.35 110.99\\nQ 117.35 109.343, 118.164 108.423\\nQ 118.978 107.502, 120.499 107.502\\nQ 122.02 107.502, 122.834 108.423\\nQ 123.648 109.343, 123.648 110.99\\nQ 123.648 112.656, 122.824 113.606\\nQ 122.001 114.545, 120.499 114.545\\nQ 118.988 114.545, 118.164 113.606\\nQ 117.35 112.666, 117.35 110.99\\nM 120.499 113.77\\nQ 121.545 113.77, 122.107 113.073\\nQ 122.679 112.366, 122.679 110.99\\nQ 122.679 109.643, 122.107 108.965\\nQ 121.545 108.277, 120.499 108.277\\nQ 119.453 108.277, 118.881 108.955\\nQ 118.319 109.634, 118.319 110.99\\nQ 118.319 112.375, 118.881 113.073\\nQ 119.453 113.77, 120.499 113.77\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 134.176 81.9543\\nQ 134.176 80.3073, 134.989 79.3869\\nQ 135.803 78.4665, 137.324 78.4665\\nQ 138.845 78.4665, 139.659 79.3869\\nQ 140.473 80.3073, 140.473 81.9543\\nQ 140.473 83.6207, 139.65 84.5701\\nQ 138.826 85.5099, 137.324 85.5099\\nQ 135.813 85.5099, 134.989 84.5701\\nQ 134.176 83.6304, 134.176 81.9543\\nM 137.324 84.7348\\nQ 138.371 84.7348, 138.933 84.0373\\nQ 139.504 83.33, 139.504 81.9543\\nQ 139.504 80.6076, 138.933 79.9295\\nQ 138.371 79.2416, 137.324 79.2416\\nQ 136.278 79.2416, 135.706 79.9198\\nQ 135.145 80.598, 135.145 81.9543\\nQ 135.145 83.3397, 135.706 84.0373\\nQ 136.278 84.7348, 137.324 84.7348\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 141.297 78.544\\nL 142.227 78.544\\nL 142.227 81.4602\\nL 145.734 81.4602\\nL 145.734 78.544\\nL 146.664 78.544\\nL 146.664 85.4033\\nL 145.734 85.4033\\nL 145.734 82.2353\\nL 142.227 82.2353\\nL 142.227 85.4033\\nL 141.297 85.4033\\nL 141.297 78.544\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 96.4514 55.2197\\nQ 96.4514 53.5727, 97.2652 52.6523\\nQ 98.079 51.7319, 99.6001 51.7319\\nQ 101.121 51.7319, 101.935 52.6523\\nQ 102.749 53.5727, 102.749 55.2197\\nQ 102.749 56.886, 101.925 57.8355\\nQ 101.102 58.7752, 99.6001 58.7752\\nQ 98.0887 58.7752, 97.2652 57.8355\\nQ 96.4514 56.8957, 96.4514 55.2197\\nM 99.6001 58.0002\\nQ 100.646 58.0002, 101.208 57.3026\\nQ 101.78 56.5954, 101.78 55.2197\\nQ 101.78 53.873, 101.208 53.1948\\nQ 100.646 52.507, 99.6001 52.507\\nQ 98.5537 52.507, 97.9821 53.1851\\nQ 97.4202 53.8633, 97.4202 55.2197\\nQ 97.4202 56.6051, 97.9821 57.3026\\nQ 98.5537 58.0002, 99.6001 58.0002\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 13.3362 9.36858\\nQ 13.3362 7.66346, 14.1306 6.77214\\nQ 14.9348 5.87114, 16.4558 5.87114\\nQ 17.8703 5.87114, 18.626 6.86902\\nL 17.9865 7.39219\\nQ 17.4343 6.66557, 16.4558 6.66557\\nQ 15.4192 6.66557, 14.8669 7.36312\\nQ 14.3244 8.05099, 14.3244 9.36858\\nQ 14.3244 10.7249, 14.8863 11.4225\\nQ 15.4579 12.12, 16.5624 12.12\\nQ 17.3181 12.12, 18.1997 11.6647\\nL 18.471 12.3913\\nQ 18.1125 12.6238, 17.57 12.7595\\nQ 17.0274 12.8951, 16.4267 12.8951\\nQ 14.9348 12.8951, 14.1306 11.9844\\nQ 13.3362 11.0737, 13.3362 9.36858\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 19.4592 5.45455\\nL 20.3505 5.45455\\nL 20.3505 12.8079\\nL 19.4592 12.8079\\nL 19.4592 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 92.7731 9.36858\\nQ 92.7731 7.66346, 93.5675 6.77214\\nQ 94.3717 5.87114, 95.8927 5.87114\\nQ 97.3072 5.87114, 98.0629 6.86902\\nL 97.4234 7.39219\\nQ 96.8712 6.66557, 95.8927 6.66557\\nQ 94.8561 6.66557, 94.3038 7.36312\\nQ 93.7613 8.05099, 93.7613 9.36858\\nQ 93.7613 10.7249, 94.3232 11.4225\\nQ 94.8948 12.12, 95.9993 12.12\\nQ 96.755 12.12, 97.6366 11.6647\\nL 97.9079 12.3913\\nQ 97.5494 12.6238, 97.0069 12.7595\\nQ 96.4643 12.8951, 95.8636 12.8951\\nQ 94.3717 12.8951, 93.5675 11.9844\\nQ 92.7731 11.0737, 92.7731 9.36858\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 98.8961 5.45455\\nL 99.7874 5.45455\\nL 99.7874 12.8079\\nL 98.8961 12.8079\\nL 98.8961 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 203, "data-ID": 1023, "data-Solubility": -2.51, "data-SMILES": "O=C(O)COc(c(cc(c1)Cl)Cl)c1", "mols2grid-tooltip": "<strong>Name</strong>: 2,4-D<br><strong>SMILES</strong>: O=C(O)COc(c(cc(c1)Cl)Cl)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.51</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 123.692,57.5455 L 115.093,62.4909' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.093,62.4909 L 106.494,67.4362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.848,63.0322 L 118.248,67.9775' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.248,67.9775 L 109.649,72.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.071,70.1795 L 108.052,83.3494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.052,83.3494 L 108.033,96.5193' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 108.071,70.1795 L 80.6804,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.772,104.596 L 121.348,109.571' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.348,109.571 L 129.924,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.6804,54.291 L 80.6804,22.6448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.3511,49.5441 L 74.3511,27.3917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80.6804,54.291 L 53.2748,70.1141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.6804,22.6448 L 89.2702,17.6858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.2702,17.6858 L 97.86,12.7268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 80.6804,22.6448 L 53.2748,6.82166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 53.2748,6.82166 L 25.8691,22.6448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 52.3286,14.6764 L 33.1447,25.7526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 25.8691,22.6448 L 25.8691,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 53.2748,70.1141 L 25.8691,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 52.3286,62.2594 L 33.1447,51.1832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 125.903 57.5843\\nQ 125.903 55.4324, 126.966 54.2298\\nQ 128.029 53.0273, 130.017 53.0273\\nQ 132.004 53.0273, 133.068 54.2298\\nQ 134.131 55.4324, 134.131 57.5843\\nQ 134.131 59.7616, 133.055 61.0021\\nQ 131.979 62.23, 130.017 62.23\\nQ 128.042 62.23, 126.966 61.0021\\nQ 125.903 59.7743, 125.903 57.5843\\nM 130.017 61.2173\\nQ 131.384 61.2173, 132.118 60.3059\\nQ 132.865 59.3818, 132.865 57.5843\\nQ 132.865 55.8248, 132.118 54.9387\\nQ 131.384 54.04, 130.017 54.04\\nQ 128.65 54.04, 127.903 54.9261\\nQ 127.169 55.8121, 127.169 57.5843\\nQ 127.169 59.3945, 127.903 60.3059\\nQ 128.65 61.2173, 130.017 61.2173\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 103.911 101.868\\nQ 103.911 99.716, 104.974 98.5135\\nQ 106.037 97.3109, 108.025 97.3109\\nQ 110.012 97.3109, 111.076 98.5135\\nQ 112.139 99.716, 112.139 101.868\\nQ 112.139 104.045, 111.063 105.286\\nQ 109.987 106.514, 108.025 106.514\\nQ 106.05 106.514, 104.974 105.286\\nQ 103.911 104.058, 103.911 101.868\\nM 108.025 105.501\\nQ 109.392 105.501, 110.126 104.59\\nQ 110.873 103.665, 110.873 101.868\\nQ 110.873 100.108, 110.126 99.2223\\nQ 109.392 98.3236, 108.025 98.3236\\nQ 106.658 98.3236, 105.911 99.2097\\nQ 105.177 100.096, 105.177 101.868\\nQ 105.177 103.678, 105.911 104.59\\nQ 106.658 105.501, 108.025 105.501\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 98.493 10.0116\\nQ 98.493 7.85966, 99.5563 6.6571\\nQ 100.62 5.45455, 102.607 5.45455\\nQ 104.594 5.45455, 105.658 6.6571\\nQ 106.721 7.85966, 106.721 10.0116\\nQ 106.721 12.1889, 105.645 13.4294\\nQ 104.569 14.6573, 102.607 14.6573\\nQ 100.632 14.6573, 99.5563 13.4294\\nQ 98.493 12.2015, 98.493 10.0116\\nM 102.607 13.6446\\nQ 103.974 13.6446, 104.708 12.7332\\nQ 105.455 11.8091, 105.455 10.0116\\nQ 105.455 8.25207, 104.708 7.36598\\nQ 103.974 6.46723, 102.607 6.46723\\nQ 101.24 6.46723, 100.493 7.35332\\nQ 99.7589 8.23941, 99.7589 10.0116\\nQ 99.7589 11.8218, 100.493 12.7332\\nQ 101.24 13.6446, 102.607 13.6446\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 107.797 5.55581\\nL 109.012 5.55581\\nL 109.012 9.36602\\nL 113.595 9.36602\\nL 113.595 5.55581\\nL 114.81 5.55581\\nL 114.81 14.518\\nL 113.595 14.518\\nL 113.595 10.3787\\nL 109.012 10.3787\\nL 109.012 14.518\\nL 107.797 14.518\\nL 107.797 5.55581\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 204, "data-ID": 1028, "data-Solubility": -2.34, "data-SMILES": "O=C(OC)c(c(O)ccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: Methyl_Salicylate<br><strong>SMILES</strong>: O=C(OC)c(c(O)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.34</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.958,105.512 L 104.971,96.254' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.971,96.254 L 104.984,86.9958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.1426,105.504 L 99.1557,96.2458' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.1557,96.2458 L 99.1688,86.9875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.077,86.9916 L 109.978,82.4477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.978,82.4477 L 117.879,77.9038' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 102.077,86.9916 L 76.9091,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.9091,72.3928 L 76.9091,43.3153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.0936,68.0312 L 71.0936,47.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-3 atom-10' d='M 76.9091,72.3928 L 51.728,86.9316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.9091,43.3153 L 87.5667,37.1327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5667,37.1327 L 98.2244,30.9501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 76.9091,43.3153 L 51.728,28.7766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.068,24.0176 L 102.055,14.7361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.055,14.7361 L 102.042,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.728,28.7766 L 26.5469,43.3153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 50.8586,35.9938 L 33.2319,46.1709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 26.5469,43.3153 L 26.5469,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 51.728,86.9316 L 26.5469,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 50.8586,79.7144 L 33.2319,69.5373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 98.2636 110.277\\nQ 98.2636 108.3, 99.2406 107.195\\nQ 100.218 106.09, 102.044 106.09\\nQ 103.87 106.09, 104.847 107.195\\nQ 105.824 108.3, 105.824 110.277\\nQ 105.824 112.277, 104.835 113.417\\nQ 103.846 114.545, 102.044 114.545\\nQ 100.229 114.545, 99.2406 113.417\\nQ 98.2636 112.289, 98.2636 110.277\\nM 102.044 113.615\\nQ 103.3 113.615, 103.974 112.778\\nQ 104.661 111.928, 104.661 110.277\\nQ 104.661 108.66, 103.974 107.846\\nQ 103.3 107.02, 102.044 107.02\\nQ 100.787 107.02, 100.101 107.834\\nQ 99.4267 108.649, 99.4267 110.277\\nQ 99.4267 111.94, 100.101 112.778\\nQ 100.787 113.615, 102.044 113.615\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 118.461 75.4188\\nQ 118.461 73.4415, 119.438 72.3366\\nQ 120.415 71.2317, 122.241 71.2317\\nQ 124.067 71.2317, 125.044 72.3366\\nQ 126.021 73.4415, 126.021 75.4188\\nQ 126.021 77.4193, 125.032 78.5592\\nQ 124.044 79.6874, 122.241 79.6874\\nQ 120.426 79.6874, 119.438 78.5592\\nQ 118.461 77.431, 118.461 75.4188\\nM 122.241 78.7569\\nQ 123.497 78.7569, 124.172 77.9195\\nQ 124.858 77.0704, 124.858 75.4188\\nQ 124.858 73.8021, 124.172 72.9879\\nQ 123.497 72.1621, 122.241 72.1621\\nQ 120.985 72.1621, 120.298 72.9763\\nQ 119.624 73.7905, 119.624 75.4188\\nQ 119.624 77.082, 120.298 77.9195\\nQ 120.985 78.7569, 122.241 78.7569\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 127.01 71.3247\\nL 128.126 71.3247\\nL 128.126 74.8256\\nL 132.337 74.8256\\nL 132.337 71.3247\\nL 133.453 71.3247\\nL 133.453 79.5594\\nL 132.337 79.5594\\nL 132.337 75.7561\\nL 128.126 75.7561\\nL 128.126 79.5594\\nL 127.01 79.5594\\nL 127.01 71.3247\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 100.254 24.5992\\nL 102.953 28.9608\\nQ 103.22 29.3911, 103.651 30.1704\\nQ 104.081 30.9497, 104.104 30.9962\\nL 104.104 24.5992\\nL 105.198 24.5992\\nL 105.198 32.8339\\nL 104.069 32.8339\\nL 101.173 28.0652\\nQ 100.836 27.5069, 100.475 26.8672\\nQ 100.126 26.2275, 100.022 26.0298\\nL 100.022 32.8339\\nL 98.9517 32.8339\\nL 98.9517 24.5992\\nL 100.254 24.5992\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 106.186 24.5992\\nL 107.303 24.5992\\nL 107.303 28.1001\\nL 111.513 28.1001\\nL 111.513 24.5992\\nL 112.63 24.5992\\nL 112.63 32.8339\\nL 111.513 32.8339\\nL 111.513 29.0306\\nL 107.303 29.0306\\nL 107.303 32.8339\\nL 106.186 32.8339\\nL 106.186 24.5992\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 205, "data-ID": 1033, "data-Solubility": -2.88, "data-SMILES": "O=C(O)c(c(NC)ccc1)c1", "mols2grid-tooltip": "<strong>Name</strong>: N-Methylanthranilic_Acid<br><strong>SMILES</strong>: O=C(O)c(c(NC)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.88</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 101.91,43.5131 L 101.91,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.8354,39.7072 L 96.8354,21.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 79.9374,56.1992 L 101.91,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.91,18.1407 L 79.9374,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.9374,5.45455 L 57.965,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.1788,11.7521 L 63.7981,20.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.965,18.1407 L 57.965,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.965,43.5131 L 79.9374,56.1992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.7981,41.0214 L 79.1788,49.9017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.9374,56.1992 L 79.9592,66.7582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.9592,66.7582 L 79.981,77.3171' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 83.9229,83.8485 L 92.9578,89.0481' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.9578,89.0481 L 101.993,94.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 101.993,94.2476 L 102.035,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 76.6914 81.6054\\nQ 76.6914 79.8801, 77.544 78.9159\\nQ 78.3965 77.9518, 79.9899 77.9518\\nQ 81.5832 77.9518, 82.4357 78.9159\\nQ 83.2883 79.8801, 83.2883 81.6054\\nQ 83.2883 83.351, 82.4256 84.3456\\nQ 81.5629 85.3301, 79.9899 85.3301\\nQ 78.4066 85.3301, 77.544 84.3456\\nQ 76.6914 83.3612, 76.6914 81.6054\\nM 79.9899 84.5181\\nQ 81.0859 84.5181, 81.6746 83.7874\\nQ 82.2734 83.0465, 82.2734 81.6054\\nQ 82.2734 80.1947, 81.6746 79.4843\\nQ 81.0859 78.7637, 79.9899 78.7637\\nQ 78.8938 78.7637, 78.295 79.4741\\nQ 77.7063 80.1845, 77.7063 81.6054\\nQ 77.7063 83.0567, 78.295 83.7874\\nQ 78.8938 84.5181, 79.9899 84.5181\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 206, "data-ID": 1038, "data-Solubility": -2.33, "data-SMILES": "c1ccccc1OCC", "mols2grid-tooltip": "<strong>Name</strong>: Phenetole<br><strong>SMILES</strong>: c1ccccc1OCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.33</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.575,104.103 L 124.319,99.3139' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.319,99.3139 L 116.063,94.5252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.063,94.5252 L 116.106,65.2658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 116.106,65.2658 L 90.7949,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7949,50.5835 L 90.7949,21.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.9462,46.1969 L 84.9462,25.7263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-3' d='M 65.4698,65.2054 L 90.7949,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.7949,21.3398 L 65.4698,6.71788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.4698,6.71788 L 40.1447,21.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.5955,13.9763 L 46.8679,24.2116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 40.1447,21.3398 L 32.207,16.7572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 32.207,16.7572 L 24.2693,12.1747' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.1447,21.3398 L 40.1447,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.1447,50.5835 L 65.4698,65.2054' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 46.8679,47.7117 L 64.5955,57.947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 134.469 102.123\\nL 137.183 106.509\\nQ 137.452 106.942, 137.885 107.726\\nQ 138.318 108.51, 138.341 108.556\\nL 138.341 102.123\\nL 139.441 102.123\\nL 139.441 110.405\\nL 138.306 110.405\\nL 135.394 105.609\\nQ 135.054 105.047, 134.692 104.404\\nQ 134.341 103.76, 134.236 103.561\\nL 134.236 110.405\\nL 133.159 110.405\\nL 133.159 102.123\\nL 134.469 102.123\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 140.435 102.123\\nL 141.558 102.123\\nL 141.558 105.644\\nL 145.793 105.644\\nL 145.793 102.123\\nL 146.916 102.123\\nL 146.916 110.405\\nL 145.793 110.405\\nL 145.793 106.579\\nL 141.558 106.579\\nL 141.558 110.405\\nL 140.435 110.405\\nL 140.435 102.123\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 147.317 110.114\\nQ 147.518 109.597, 147.996 109.311\\nQ 148.475 109.018, 149.139 109.018\\nQ 149.965 109.018, 150.428 109.465\\nQ 150.892 109.913, 150.892 110.708\\nQ 150.892 111.519, 150.289 112.276\\nQ 149.695 113.032, 148.46 113.928\\nL 150.984 113.928\\nL 150.984 114.545\\nL 147.302 114.545\\nL 147.302 114.028\\nQ 148.321 113.302, 148.923 112.762\\nQ 149.533 112.222, 149.826 111.735\\nQ 150.12 111.249, 150.12 110.747\\nQ 150.12 110.222, 149.857 109.929\\nQ 149.595 109.635, 149.139 109.635\\nQ 148.699 109.635, 148.406 109.813\\nQ 148.112 109.99, 147.904 110.384\\nL 147.317 110.114\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 9.01573 5.54813\\nL 10.1387 5.54813\\nL 10.1387 9.06907\\nL 14.3732 9.06907\\nL 14.3732 5.54813\\nL 15.4961 5.54813\\nL 15.4961 13.83\\nL 14.3732 13.83\\nL 14.3732 10.0049\\nL 10.1387 10.0049\\nL 10.1387 13.83\\nL 9.01573 13.83\\nL 9.01573 5.54813\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 16.081 9.66565\\nQ 16.081 7.67707, 17.0636 6.56581\\nQ 18.0462 5.45455, 19.8827 5.45455\\nQ 21.7192 5.45455, 22.7018 6.56581\\nQ 23.6844 7.67707, 23.6844 9.66565\\nQ 23.6844 11.6776, 22.6901 12.824\\nQ 21.6958 13.9586, 19.8827 13.9586\\nQ 18.0579 13.9586, 17.0636 12.824\\nQ 16.081 11.6893, 16.081 9.66565\\nM 19.8827 13.0228\\nQ 21.146 13.0228, 21.8245 12.1806\\nQ 22.5147 11.3267, 22.5147 9.66565\\nQ 22.5147 8.03969, 21.8245 7.22087\\nQ 21.146 6.39035, 19.8827 6.39035\\nQ 18.6194 6.39035, 17.9292 7.20917\\nQ 17.2508 8.028, 17.2508 9.66565\\nQ 17.2508 11.3384, 17.9292 12.1806\\nQ 18.6194 13.0228, 19.8827 13.0228\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 207, "data-ID": 1043, "data-Solubility": -1.12, "data-SMILES": "NCCc1ccc(O)cc1", "mols2grid-tooltip": "<strong>Name</strong>: Tyramine<br><strong>SMILES</strong>: NCCc1ccc(O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.12</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,77.4486 L 27.5015,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 27.5015,65.7773 L 27.5015,42.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 27.5015,65.7773 L 52.802,80.3737' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.802,80.3737 L 78.1025,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.0218,65.7773 L 81.0218,56.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.0218,56.5465 L 81.0218,47.3157' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.1832,65.7773 L 75.1832,56.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.1832,56.5465 L 75.1832,47.3157' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 78.1025,65.7773 L 103.403,80.3737' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.403,80.3737 L 128.703,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.245,68.3059 L 135.169,72.8783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 135.169,72.8783 L 143.094,77.4507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 130.162,63.2487 L 138.087,67.8211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 138.087,67.8211 L 146.012,72.3935' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 128.703,65.7773 L 128.703,42.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 74.3074 42.4463\\nQ 74.3074 40.4612, 75.2883 39.3519\\nQ 76.2691 38.2425, 78.1025 38.2425\\nQ 79.9358 38.2425, 80.9167 39.3519\\nQ 81.8975 40.4612, 81.8975 42.4463\\nQ 81.8975 44.4548, 80.905 45.5991\\nQ 79.9124 46.7318, 78.1025 46.7318\\nQ 76.2808 46.7318, 75.2883 45.5991\\nQ 74.3074 44.4665, 74.3074 42.4463\\nM 78.1025 45.7977\\nQ 79.3636 45.7977, 80.0409 44.9569\\nQ 80.7298 44.1045, 80.7298 42.4463\\nQ 80.7298 40.8232, 80.0409 40.0058\\nQ 79.3636 39.1767, 78.1025 39.1767\\nQ 76.8413 39.1767, 76.1524 39.9941\\nQ 75.4751 40.8115, 75.4751 42.4463\\nQ 75.4751 44.1161, 76.1524 44.9569\\nQ 76.8413 45.7977, 78.1025 45.7977\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 145.137 77.4719\\nQ 145.137 75.4868, 146.118 74.3775\\nQ 147.099 73.2682, 148.932 73.2682\\nQ 150.766 73.2682, 151.746 74.3775\\nQ 152.727 75.4868, 152.727 77.4719\\nQ 152.727 79.4804, 151.735 80.6248\\nQ 150.742 81.7575, 148.932 81.7575\\nQ 147.111 81.7575, 146.118 80.6248\\nQ 145.137 79.4921, 145.137 77.4719\\nM 148.932 80.8233\\nQ 150.193 80.8233, 150.871 79.9825\\nQ 151.56 79.1301, 151.56 77.4719\\nQ 151.56 75.8488, 150.871 75.0314\\nQ 150.193 74.2023, 148.932 74.2023\\nQ 147.671 74.2023, 146.982 75.0197\\nQ 146.305 75.8371, 146.305 77.4719\\nQ 146.305 79.1418, 146.982 79.9825\\nQ 147.671 80.8233, 148.932 80.8233\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 208, "data-ID": 1048, "data-Solubility": -1.6, "data-SMILES": "CC(C)CC(=O)CC(=O)C", "mols2grid-tooltip": "<strong>Name</strong>: 6-Methyl-2,4-heptadione<br><strong>SMILES</strong>: CC(C)CC(=O)CC(=O)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.4838,93.75 L 99.4838,56.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 67.0087,112.5 L 99.4838,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.4838,56.25 L 125.466,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 99.4838,56.25 L 67.0087,37.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.0087,37.5 L 67.0087,7.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 67.0087,37.5 L 34.5337,56.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 34.5337,56.25 L 34.5337,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 34.5337,93.75 L 67.0087,112.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "mols2grid-id": 209, "data-ID": 1053, "data-Solubility": -4.27, "data-SMILES": "C1C(C)C(C)CCC1", "mols2grid-tooltip": "<strong>Name</strong>: cis-1,2-Dimethylcyclohexane<br><strong>SMILES</strong>: C1C(C)C(C)CCC1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.27</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.978,76.8458 L 128.582,82.9085' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 128.582,82.9085 L 123.186,88.9712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.51,89.859 L 123.298,98.264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.298,98.264 L 126.085,106.669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.863,88.0835 L 128.651,96.4885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.651,96.4885 L 131.438,104.894' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 123.186,88.9712 L 95.5572,83.2563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.5572,83.2563 L 91.9024,72.2378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.9024,72.2378 L 88.2476,61.2193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.0562,51.8231 L 96.5984,42.6911' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.5984,42.6911 L 103.141,33.5591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-4' d='M 59.9555,47.9536 L 71.4574,51.6401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-4' d='M 71.4574,51.6401 L 82.9593,55.3265' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.161,36.3789 L 112.326,36.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.326,36.3125 L 121.49,36.246' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.12,30.7393 L 112.285,30.6729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.285,30.6729 L 121.449,30.6065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.141,33.5591 L 96.5416,24.6223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 96.5416,24.6223 L 89.9424,15.6854' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.4274,12.326 L 71.6914,16.0875' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 71.6914,16.0875 L 59.9555,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 59.9555,19.849 L 35.6201,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.434,22.5439 L 36.3992,12.4678' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 59.9555,47.9536 L 59.9555,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 35.6201,5.45455 L 10.9426,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 10.9426,19.849 L 10.9426,47.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 16.5823,24.0647 L 16.5823,43.7379' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 10.9426,47.9536 L 35.6201,62.348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 35.6201,62.348 L 35.6482,71.4477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 35.6482,71.4477 L 35.6762,80.5474' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 35.6201,62.348 L 59.9555,47.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 36.3992,55.3347 L 53.434,45.2586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 134.518 72.1423\\nQ 134.518 70.2248, 135.466 69.1533\\nQ 136.413 68.0817, 138.184 68.0817\\nQ 139.955 68.0817, 140.902 69.1533\\nQ 141.85 70.2248, 141.85 72.1423\\nQ 141.85 74.0824, 140.891 75.1878\\nQ 139.932 76.2819, 138.184 76.2819\\nQ 136.424 76.2819, 135.466 75.1878\\nQ 134.518 74.0937, 134.518 72.1423\\nM 138.184 75.3795\\nQ 139.402 75.3795, 140.056 74.5674\\nQ 140.722 73.744, 140.722 72.1423\\nQ 140.722 70.5745, 140.056 69.7849\\nQ 139.402 68.9841, 138.184 68.9841\\nQ 136.966 68.9841, 136.3 69.7736\\nQ 135.646 70.5632, 135.646 72.1423\\nQ 135.646 73.7553, 136.3 74.5674\\nQ 136.966 75.3795, 138.184 75.3795\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 142.809 68.1719\\nL 143.891 68.1719\\nL 143.891 71.5671\\nL 147.975 71.5671\\nL 147.975 68.1719\\nL 149.057 68.1719\\nL 149.057 76.1578\\nL 147.975 76.1578\\nL 147.975 72.4694\\nL 143.891 72.4694\\nL 143.891 76.1578\\nL 142.809 76.1578\\nL 142.809 68.1719\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 126.623 110.406\\nQ 126.623 108.488, 127.57 107.417\\nQ 128.518 106.345, 130.288 106.345\\nQ 132.059 106.345, 133.007 107.417\\nQ 133.954 108.488, 133.954 110.406\\nQ 133.954 112.346, 132.995 113.451\\nQ 132.037 114.545, 130.288 114.545\\nQ 128.529 114.545, 127.57 113.451\\nQ 126.623 112.357, 126.623 110.406\\nM 130.288 113.643\\nQ 131.507 113.643, 132.161 112.831\\nQ 132.826 112.008, 132.826 110.406\\nQ 132.826 108.838, 132.161 108.049\\nQ 131.507 107.248, 130.288 107.248\\nQ 129.07 107.248, 128.405 108.037\\nQ 127.751 108.827, 127.751 110.406\\nQ 127.751 112.019, 128.405 112.831\\nQ 129.07 113.643, 130.288 113.643\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 84.9244 52.5293\\nL 87.5412 56.759\\nQ 87.8007 57.1764, 88.218 57.9321\\nQ 88.6353 58.6878, 88.6579 58.7329\\nL 88.6579 52.5293\\nL 89.7182 52.5293\\nL 89.7182 60.5151\\nL 88.6241 60.5151\\nL 85.8155 55.8905\\nQ 85.4884 55.3491, 85.1387 54.7287\\nQ 84.8003 54.1084, 84.6988 53.9166\\nL 84.6988 60.5151\\nL 83.6611 60.5151\\nL 83.6611 52.5293\\nL 84.9244 52.5293\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 122.034 33.4181\\nQ 122.034 31.5006, 122.981 30.4291\\nQ 123.929 29.3575, 125.7 29.3575\\nQ 127.47 29.3575, 128.418 30.4291\\nQ 129.365 31.5006, 129.365 33.4181\\nQ 129.365 35.3582, 128.407 36.4636\\nQ 127.448 37.5577, 125.7 37.5577\\nQ 123.94 37.5577, 122.981 36.4636\\nQ 122.034 35.3695, 122.034 33.4181\\nM 125.7 36.6553\\nQ 126.918 36.6553, 127.572 35.8432\\nQ 128.237 35.0198, 128.237 33.4181\\nQ 128.237 31.8503, 127.572 31.0607\\nQ 126.918 30.2599, 125.7 30.2599\\nQ 124.481 30.2599, 123.816 31.0495\\nQ 123.162 31.839, 123.162 33.4181\\nQ 123.162 35.0311, 123.816 35.8432\\nQ 124.481 36.6553, 125.7 36.6553\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 84.4338 14.0213\\nQ 84.524 14.0551, 84.8962 14.213\\nQ 85.2684 14.3709, 85.6745 14.4725\\nQ 86.0918 14.5627, 86.4979 14.5627\\nQ 87.2536 14.5627, 87.6935 14.2017\\nQ 88.1334 13.8295, 88.1334 13.1866\\nQ 88.1334 12.7467, 87.9078 12.476\\nQ 87.6935 12.2053, 87.3551 12.0587\\nQ 87.0167 11.912, 86.4528 11.7428\\nQ 85.7422 11.5285, 85.3136 11.3255\\nQ 84.8962 11.1225, 84.5917 10.6938\\nQ 84.2984 10.2652, 84.2984 9.54334\\nQ 84.2984 8.53947, 84.9752 7.9191\\nQ 85.6632 7.29873, 87.0167 7.29873\\nQ 87.9417 7.29873, 88.9906 7.73863\\nL 88.7312 8.60715\\nQ 87.7725 8.21237, 87.0506 8.21237\\nQ 86.2723 8.21237, 85.8437 8.53947\\nQ 85.4151 8.85529, 85.4263 9.40799\\nQ 85.4263 9.8366, 85.6407 10.096\\nQ 85.8662 10.3555, 86.1821 10.5021\\nQ 86.5092 10.6487, 87.0506 10.8179\\nQ 87.7725 11.0435, 88.2011 11.2691\\nQ 88.6297 11.4947, 88.9343 11.9571\\nQ 89.2501 12.4083, 89.2501 13.1866\\nQ 89.2501 14.292, 88.5056 14.8898\\nQ 87.7725 15.4763, 86.543 15.4763\\nQ 85.8324 15.4763, 85.291 15.3184\\nQ 84.7609 15.1718, 84.1292 14.9123\\nL 84.4338 14.0213\\n' fill='#CCCC00'/>\\n<path class='atom-13' d='M 32.6104 85.1832\\nQ 32.6104 83.198, 33.5353 82.1603\\nQ 34.4715 81.1113, 36.2424 81.1113\\nQ 37.8892 81.1113, 38.769 82.2731\\nL 38.0245 82.8822\\nQ 37.3816 82.0363, 36.2424 82.0363\\nQ 35.0355 82.0363, 34.3926 82.8484\\nQ 33.7609 83.6492, 33.7609 85.1832\\nQ 33.7609 86.7623, 34.4151 87.5745\\nQ 35.0806 88.3866, 36.3665 88.3866\\nQ 37.2463 88.3866, 38.2727 87.8564\\nL 38.5885 88.7024\\nQ 38.1712 88.9731, 37.5395 89.131\\nQ 36.9079 89.2889, 36.2085 89.2889\\nQ 34.4715 89.2889, 33.5353 88.2287\\nQ 32.6104 87.1684, 32.6104 85.1832\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 39.739 80.6263\\nL 40.7767 80.6263\\nL 40.7767 89.1874\\nL 39.739 89.1874\\nL 39.739 80.6263\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 210, "data-ID": 1058, "data-Solubility": -2.61, "data-SMILES": "OC(=O)CN1C(=O)Sc2cccc(Cl)c12", "mols2grid-tooltip": "<strong>Name</strong>: Benazolin<br><strong>SMILES</strong>: OC(=O)CN1C(=O)Sc2cccc(Cl)c12<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.61</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.019,89.1071 L 109.533,92.2618' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.533,92.2618 L 104.047,95.4164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.028,95.4136 L 102.019,101.841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.019,101.841 L 102.01,108.269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.065,95.4193 L 106.056,101.847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.056,101.847 L 106.047,108.274' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 104.047,95.4164 L 86.5755,85.2813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.5755,85.2813 L 86.5878,76.9248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.5878,76.9248 L 86.6,68.5682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 86.5755,85.2813 L 72.5753,93.3318' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 83.4759,63.2685 L 76.3043,59.1086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.3043,59.1086 L 69.1328,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.1328,54.9486 L 69.1328,34.7618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0954,51.9206 L 65.0954,37.7898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-5' d='M 51.651,65.042 L 69.1328,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 69.1328,34.7618 L 51.651,24.6684' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.651,24.6684 L 51.651,18.364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.651,18.364 L 51.651,12.0597' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 51.651,24.6684 L 34.1692,34.7618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 51.0474,29.6788 L 38.8102,36.7442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 34.1692,34.7618 L 34.1692,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 34.1692,54.9486 L 51.651,65.042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.8102,52.9662 L 51.0474,60.0315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 115.422 87.3821\\nQ 115.422 86.0094, 116.101 85.2423\\nQ 116.779 84.4752, 118.047 84.4752\\nQ 119.315 84.4752, 119.993 85.2423\\nQ 120.671 86.0094, 120.671 87.3821\\nQ 120.671 88.7709, 119.985 89.5622\\nQ 119.298 90.3455, 118.047 90.3455\\nQ 116.787 90.3455, 116.101 89.5622\\nQ 115.422 88.779, 115.422 87.3821\\nM 118.047 89.6995\\nQ 118.919 89.6995, 119.387 89.1181\\nQ 119.864 88.5287, 119.864 87.3821\\nQ 119.864 86.2597, 119.387 85.6945\\nQ 118.919 85.1211, 118.047 85.1211\\nQ 117.175 85.1211, 116.698 85.6864\\nQ 116.23 86.2516, 116.23 87.3821\\nQ 116.23 88.5368, 116.698 89.1181\\nQ 117.175 89.6995, 118.047 89.6995\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 121.357 84.5398\\nL 122.133 84.5398\\nL 122.133 86.9703\\nL 125.056 86.9703\\nL 125.056 84.5398\\nL 125.831 84.5398\\nL 125.831 90.2567\\nL 125.056 90.2567\\nL 125.056 87.6162\\nL 122.133 87.6162\\nL 122.133 90.2567\\nL 121.357 90.2567\\nL 121.357 84.5398\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 101.399 111.582\\nQ 101.399 110.209, 102.078 109.442\\nQ 102.756 108.675, 104.024 108.675\\nQ 105.291 108.675, 105.97 109.442\\nQ 106.648 110.209, 106.648 111.582\\nQ 106.648 112.971, 105.962 113.762\\nQ 105.275 114.545, 104.024 114.545\\nQ 102.764 114.545, 102.078 113.762\\nQ 101.399 112.979, 101.399 111.582\\nM 104.024 113.899\\nQ 104.896 113.899, 105.364 113.318\\nQ 105.84 112.729, 105.84 111.582\\nQ 105.84 110.46, 105.364 109.894\\nQ 104.896 109.321, 104.024 109.321\\nQ 103.152 109.321, 102.675 109.886\\nQ 102.207 110.452, 102.207 111.582\\nQ 102.207 112.737, 102.675 113.318\\nQ 103.152 113.899, 104.024 113.899\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 83.9808 65.0999\\nQ 83.9808 63.7272, 84.6591 62.9601\\nQ 85.3374 62.193, 86.6051 62.193\\nQ 87.8729 62.193, 88.5511 62.9601\\nQ 89.2294 63.7272, 89.2294 65.0999\\nQ 89.2294 66.4887, 88.5431 67.28\\nQ 87.8567 68.0633, 86.6051 68.0633\\nQ 85.3455 68.0633, 84.6591 67.28\\nQ 83.9808 66.4968, 83.9808 65.0999\\nM 86.6051 67.4173\\nQ 87.4772 67.4173, 87.9455 66.8359\\nQ 88.4219 66.2465, 88.4219 65.0999\\nQ 88.4219 63.9775, 87.9455 63.4122\\nQ 87.4772 62.8389, 86.6051 62.8389\\nQ 85.7331 62.8389, 85.2566 63.4042\\nQ 84.7883 63.9694, 84.7883 65.0999\\nQ 84.7883 66.2545, 85.2566 66.8359\\nQ 85.7331 67.4173, 86.6051 67.4173\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 49.4466 8.71674\\nQ 49.4466 7.29558, 50.1087 6.55271\\nQ 50.7789 5.80176, 52.0466 5.80176\\nQ 53.2256 5.80176, 53.8554 6.63346\\nL 53.3224 7.06949\\nQ 52.8622 6.46389, 52.0466 6.46389\\nQ 51.1826 6.46389, 50.7224 7.04527\\nQ 50.2702 7.61857, 50.2702 8.71674\\nQ 50.2702 9.8472, 50.7385 10.4286\\nQ 51.2149 11.01, 52.1355 11.01\\nQ 52.7653 11.01, 53.5001 10.6304\\nL 53.7262 11.2361\\nQ 53.4274 11.4298, 52.9752 11.5429\\nQ 52.523 11.6559, 52.0224 11.6559\\nQ 50.7789 11.6559, 50.1087 10.8969\\nQ 49.4466 10.1379, 49.4466 8.71674\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 54.5498 5.45455\\nL 55.2927 5.45455\\nL 55.2927 11.5833\\nL 54.5498 11.5833\\nL 54.5498 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 211, "data-ID": 1063, "data-Solubility": -2.22, "data-SMILES": "OC(=O)C(Oc1cc(Cl)ccc1)C", "mols2grid-tooltip": "<strong>Name</strong>: DL-2-(2-Chlorophenoxy)propionic_Acid<br><strong>SMILES</strong>: OC(=O)C(Oc1cc(Cl)ccc1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.22</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 143.095,59.1728 L 135.159,63.7363' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 135.159,63.7363 L 127.224,68.2999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 146.006,64.2359 L 138.071,68.7994' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 138.071,68.7994 L 130.135,73.363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.68,70.8314 L 128.662,82.9846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.662,82.9846 L 128.644,95.1377' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 128.68,70.8314 L 103.403,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 133.017,102.591 L 140.931,107.182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 140.931,107.182 L 148.845,111.772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.403,56.1695 L 103.403,26.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.5627,51.7891 L 97.5627,31.3469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 103.403,56.1695 L 78.1135,70.7711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.403,26.9665 L 78.1135,12.365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.1135,12.365 L 52.8236,26.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.2404,19.6133 L 59.5375,29.8343' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 52.8236,26.9665 L 42.4198,20.9886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 42.4198,20.9886 L 32.0159,15.0108' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 52.8236,26.9665 L 52.8236,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 23.1086,14.9472 L 15.1906,19.5337' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 15.1906,19.5337 L 7.27273,24.1202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 78.1135,70.7711 L 52.8236,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 77.2404,63.5227 L 59.5375,53.3017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.134 59.2086\\nQ 145.134 57.2228, 146.116 56.1131\\nQ 147.097 55.0034, 148.931 55.0034\\nQ 150.765 55.0034, 151.746 56.1131\\nQ 152.727 57.2228, 152.727 59.2086\\nQ 152.727 61.2178, 151.734 62.3625\\nQ 150.741 63.4956, 148.931 63.4956\\nQ 147.109 63.4956, 146.116 62.3625\\nQ 145.134 61.2294, 145.134 59.2086\\nM 148.931 62.5611\\nQ 150.192 62.5611, 150.87 61.7201\\nQ 151.559 60.8673, 151.559 59.2086\\nQ 151.559 57.5849, 150.87 56.7672\\nQ 150.192 55.9379, 148.931 55.9379\\nQ 147.669 55.9379, 146.98 56.7555\\nQ 146.303 57.5732, 146.303 59.2086\\nQ 146.303 60.879, 146.98 61.7201\\nQ 147.669 62.5611, 148.931 62.5611\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 124.84 100.073\\nQ 124.84 98.0876, 125.822 96.9779\\nQ 126.803 95.8682, 128.637 95.8682\\nQ 130.471 95.8682, 131.452 96.9779\\nQ 132.433 98.0876, 132.433 100.073\\nQ 132.433 102.083, 131.44 103.227\\nQ 130.447 104.36, 128.637 104.36\\nQ 126.814 104.36, 125.822 103.227\\nQ 124.84 102.094, 124.84 100.073\\nM 128.637 103.426\\nQ 129.898 103.426, 130.576 102.585\\nQ 131.265 101.732, 131.265 100.073\\nQ 131.265 98.4497, 130.576 97.632\\nQ 129.898 96.8027, 128.637 96.8027\\nQ 127.375 96.8027, 126.686 97.6203\\nQ 126.008 98.438, 126.008 100.073\\nQ 126.008 101.744, 126.686 102.585\\nQ 127.375 103.426, 128.637 103.426\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 23.6926 12.4331\\nQ 23.6926 10.4473, 24.6739 9.33758\\nQ 25.6551 8.22786, 27.489 8.22786\\nQ 29.323 8.22786, 30.3042 9.33758\\nQ 31.2854 10.4473, 31.2854 12.4331\\nQ 31.2854 14.4423, 30.2925 15.587\\nQ 29.2996 16.7201, 27.489 16.7201\\nQ 25.6668 16.7201, 24.6739 15.587\\nQ 23.6926 14.454, 23.6926 12.4331\\nM 27.489 15.7856\\nQ 28.7506 15.7856, 29.4281 14.9446\\nQ 30.1173 14.0918, 30.1173 12.4331\\nQ 30.1173 10.8094, 29.4281 9.99173\\nQ 28.7506 9.16236, 27.489 9.16236\\nQ 26.2275 9.16236, 25.5383 9.98004\\nQ 24.8608 10.7977, 24.8608 12.4331\\nQ 24.8608 14.1035, 25.5383 14.9446\\nQ 26.2275 15.7856, 27.489 15.7856\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 212, "data-ID": 1068, "data-Solubility": -2.41, "data-SMILES": "O=C(OC)c(ccc(OC)c1)c1", "mols2grid-tooltip": "<strong>Name</strong>: Methyl-4-methoxybenzoate<br><strong>SMILES</strong>: O=C(OC)c(ccc(OC)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.41</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 152.727,107.973 L 135.507,97.9843' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.507,97.9843 L 135.522,87.6829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.522,87.6829 L 135.537,77.3815' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.686,70.8484 L 122.845,65.7202' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 122.845,65.7202 L 114.005,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.005,60.5921 L 114.005,35.7071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.028,56.8593 L 109.028,39.4398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 92.4541,73.0346 L 114.005,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.005,35.7071 L 92.4541,23.2646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.4541,23.2646 L 70.9037,35.7071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.7101,29.4411 L 76.6248,38.1509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.9037,35.7071 L 61.757,30.4516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.757,30.4516 L 52.6102,25.196' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 70.9037,35.7071 L 70.9037,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 46.02,25.2112 L 36.8948,30.4965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 36.8948,30.4965 L 27.7697,35.7817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.7697,35.7817 L 27.7836,43.725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.7836,43.725 L 27.7975,51.6683' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 29.0094,33.624 L 22.2448,29.7375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 22.2448,29.7375 L 15.4802,25.8511' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 26.53,37.9395 L 19.7654,34.053' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 19.7654,34.053 L 13.0008,30.1666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 70.9037,60.5921 L 92.4541,73.0346' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 76.6248,58.1483 L 91.7101,66.858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 132.308 73.1059\\nQ 132.308 71.4138, 133.144 70.4681\\nQ 133.981 69.5225, 135.543 69.5225\\nQ 137.106 69.5225, 137.942 70.4681\\nQ 138.778 71.4138, 138.778 73.1059\\nQ 138.778 74.818, 137.932 75.7935\\nQ 137.086 76.7591, 135.543 76.7591\\nQ 133.991 76.7591, 133.144 75.7935\\nQ 132.308 74.828, 132.308 73.1059\\nM 135.543 75.9627\\nQ 136.618 75.9627, 137.196 75.2461\\nQ 137.783 74.5194, 137.783 73.1059\\nQ 137.783 71.7223, 137.196 71.0256\\nQ 136.618 70.3188, 135.543 70.3188\\nQ 134.468 70.3188, 133.881 71.0156\\nQ 133.304 71.7124, 133.304 73.1059\\nQ 133.304 74.5294, 133.881 75.2461\\nQ 134.468 75.9627, 135.543 75.9627\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 47.7573 19.779\\nL 50.0667 23.5118\\nQ 50.2956 23.8801, 50.6639 24.547\\nQ 51.0322 25.2139, 51.0521 25.2537\\nL 51.0521 19.779\\nL 51.9878 19.779\\nL 51.9878 26.8265\\nL 51.0222 26.8265\\nL 48.5437 22.7453\\nQ 48.255 22.2675, 47.9464 21.7201\\nQ 47.6478 21.1726, 47.5582 21.0034\\nL 47.5582 26.8265\\nL 46.6425 26.8265\\nL 46.6425 19.779\\nL 47.7573 19.779\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 46.5579 12.0268\\nL 47.5134 12.0268\\nL 47.5134 15.023\\nL 51.1168 15.023\\nL 51.1168 12.0268\\nL 52.0724 12.0268\\nL 52.0724 19.0743\\nL 51.1168 19.0743\\nL 51.1168 15.8193\\nL 47.5134 15.8193\\nL 47.5134 19.0743\\nL 46.5579 19.0743\\nL 46.5579 12.0268\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 26.2467 52.166\\nL 28.556 55.8988\\nQ 28.785 56.2671, 29.1533 56.934\\nQ 29.5216 57.6009, 29.5415 57.6407\\nL 29.5415 52.166\\nL 30.4772 52.166\\nL 30.4772 59.2135\\nL 29.5116 59.2135\\nL 27.0331 55.1323\\nQ 26.7444 54.6545, 26.4358 54.1071\\nQ 26.1372 53.5596, 26.0476 53.3904\\nL 26.0476 59.2135\\nL 25.1319 59.2135\\nL 25.1319 52.166\\nL 26.2467 52.166\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 31.3233 52.166\\nL 32.2788 52.166\\nL 32.2788 55.1622\\nL 35.8822 55.1622\\nL 35.8822 52.166\\nL 36.8378 52.166\\nL 36.8378 59.2135\\nL 35.8822 59.2135\\nL 35.8822 55.9585\\nL 32.2788 55.9585\\nL 32.2788 59.2135\\nL 31.3233 59.2135\\nL 31.3233 52.166\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 37.1794 58.9662\\nQ 37.3502 58.526, 37.7575 58.283\\nQ 38.1648 58.0333, 38.7298 58.0333\\nQ 39.4328 58.0333, 39.827 58.4144\\nQ 40.2211 58.7954, 40.2211 59.4721\\nQ 40.2211 60.1619, 39.7087 60.8057\\nQ 39.2029 61.4495, 38.1517 62.2116\\nL 40.3 62.2116\\nL 40.3 62.7372\\nL 37.1663 62.7372\\nL 37.1663 62.297\\nQ 38.0335 61.6795, 38.5459 61.2196\\nQ 39.0649 60.7597, 39.3145 60.3458\\nQ 39.5642 59.9319, 39.5642 59.5049\\nQ 39.5642 59.0582, 39.3408 58.8085\\nQ 39.1174 58.5589, 38.7298 58.5589\\nQ 38.3554 58.5589, 38.1057 58.71\\nQ 37.8561 58.8611, 37.6787 59.1961\\nL 37.1794 58.9662\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 7.27273 25.8841\\nQ 7.27273 24.192, 8.10886 23.2463\\nQ 8.945 22.3007, 10.5078 22.3007\\nQ 12.0706 22.3007, 12.9067 23.2463\\nQ 13.7428 24.192, 13.7428 25.8841\\nQ 13.7428 27.5962, 12.8967 28.5717\\nQ 12.0506 29.5373, 10.5078 29.5373\\nQ 8.95495 29.5373, 8.10886 28.5717\\nQ 7.27273 27.6062, 7.27273 25.8841\\nM 10.5078 28.7409\\nQ 11.5828 28.7409, 12.1601 28.0243\\nQ 12.7474 27.2976, 12.7474 25.8841\\nQ 12.7474 24.5005, 12.1601 23.8038\\nQ 11.5828 23.097, 10.5078 23.097\\nQ 9.43275 23.097, 8.84546 23.7938\\nQ 8.26813 24.4906, 8.26813 25.8841\\nQ 8.26813 27.3076, 8.84546 28.0243\\nQ 9.43275 28.7409, 10.5078 28.7409\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 213, "data-ID": 1073, "data-Solubility": -2.17, "data-SMILES": "CCOc1ccc(NC(N)=O)cc1", "mols2grid-tooltip": "<strong>Name</strong>: Dulcin<br><strong>SMILES</strong>: CCOc1ccc(NC(N)=O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.17</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.6026,71.4671 L 18.8102,68.4625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.8102,68.4625 L 24.0177,65.4579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 11.6853,68.1439 L 16.8928,65.1393' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8928,65.1393 L 22.1004,62.1347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,63.7963 L 23.0591,57.7306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,57.7306 L 23.0591,51.665' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.0591,63.7963 L 39.6843,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 39.6843,73.3878 L 56.3096,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.3096,63.7963 L 72.9349,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 72.9349,73.3878 L 89.5602,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.5602,63.7963 L 106.184,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 106.184,73.3878 L 122.809,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.809,63.7963 L 139.435,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 139.435,73.3878 L 152.727,65.7185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 71.481\\nQ 7.27273 70.1766, 7.91728 69.4476\\nQ 8.56183 68.7187, 9.76652 68.7187\\nQ 10.9712 68.7187, 11.6158 69.4476\\nQ 12.2603 70.1766, 12.2603 71.481\\nQ 12.2603 72.8008, 11.6081 73.5528\\nQ 10.9559 74.2971, 9.76652 74.2971\\nQ 8.5695 74.2971, 7.91728 73.5528\\nQ 7.27273 72.8085, 7.27273 71.481\\nM 9.76652 73.6832\\nQ 10.5952 73.6832, 11.0403 73.1308\\nQ 11.493 72.5706, 11.493 71.481\\nQ 11.493 70.4145, 11.0403 69.8773\\nQ 10.5952 69.3325, 9.76652 69.3325\\nQ 8.93781 69.3325, 8.48509 69.8697\\nQ 8.04005 70.4068, 8.04005 71.481\\nQ 8.04005 72.5783, 8.48509 73.1308\\nQ 8.93781 73.6832, 9.76652 73.6832\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 20.5653 48.4653\\nQ 20.5653 47.1608, 21.2098 46.4319\\nQ 21.8544 45.7029, 23.0591 45.7029\\nQ 24.2638 45.7029, 24.9083 46.4319\\nQ 25.5529 47.1608, 25.5529 48.4653\\nQ 25.5529 49.785, 24.9006 50.537\\nQ 24.2484 51.2813, 23.0591 51.2813\\nQ 21.862 51.2813, 21.2098 50.537\\nQ 20.5653 49.7927, 20.5653 48.4653\\nM 23.0591 50.6675\\nQ 23.8878 50.6675, 24.3328 50.115\\nQ 24.7855 49.5549, 24.7855 48.4653\\nQ 24.7855 47.3987, 24.3328 46.8616\\nQ 23.8878 46.3168, 23.0591 46.3168\\nQ 22.2304 46.3168, 21.7776 46.8539\\nQ 21.3326 47.391, 21.3326 48.4653\\nQ 21.3326 49.5625, 21.7776 50.115\\nQ 22.2304 50.6675, 23.0591 50.6675\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 26.2051 45.7643\\nL 26.9417 45.7643\\nL 26.9417 48.0739\\nL 29.7194 48.0739\\nL 29.7194 45.7643\\nL 30.456 45.7643\\nL 30.456 51.1969\\nL 29.7194 51.1969\\nL 29.7194 48.6878\\nL 26.9417 48.6878\\nL 26.9417 51.1969\\nL 26.2051 51.1969\\nL 26.2051 45.7643\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 214, "data-ID": 1078, "data-Solubility": -2.75, "data-SMILES": "O=C(O)CCCCCCCC", "mols2grid-tooltip": "<strong>Name</strong>: Pelargonic_Acid<br><strong>SMILES</strong>: O=C(O)CCCCCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 103.175,32.3516 L 103.175,14.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.5882,29.6619 L 99.5882,17.1099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 87.6459,41.3173 L 103.175,32.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.175,14.4202 L 87.6459,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.6459,5.45455 L 72.1174,14.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.1098,9.90518 L 76.2398,16.1812' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1174,14.4202 L 72.1174,32.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.1174,32.3516 L 87.6459,41.3173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.2398,30.5907 L 87.1098,36.8667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.6459,41.3173 L 87.6459,48.794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.6459,48.794 L 87.6459,56.2706' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 85.2718,60.6341 L 78.7018,64.4416' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.7018,64.4416 L 72.1317,68.249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-6' d='M 100.815,66.8342 L 89.9516,60.5847' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 73.0257,66.6947 L 68.1532,63.8921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.1532,63.8921 L 63.2806,61.0895' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 71.2377,69.8034 L 66.3651,67.0008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 66.3651,67.0008 L 61.4926,64.1982' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 72.1317,68.249 L 72.1592,86.1804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.1592,86.1804 L 66.298,89.5773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.298,89.5773 L 60.4369,92.9742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 71.2651,87.7347 L 88.5974,93.5679' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 73.0533,84.6261 L 86.8092,96.6765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.7033,95.1222 L 87.7124,100.846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.7124,100.846 L 87.7214,106.57' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 87.7033,95.1222 L 103.218,86.1314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 105.011,86.1285 L 103.206,78.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.206,78.6594 L 101.401,71.1903' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.424,86.1343 L 103.206,78.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.206,78.6594 L 104.987,71.1845' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 86.5234 56.7192\\nL 88.1875 59.4089\\nQ 88.3524 59.6742, 88.6178 60.1548\\nQ 88.8832 60.6354, 88.8975 60.6641\\nL 88.8975 56.7192\\nL 89.5718 56.7192\\nL 89.5718 61.7973\\nL 88.876 61.7973\\nL 87.0901 58.8566\\nQ 86.8821 58.5123, 86.6597 58.1178\\nQ 86.4445 57.7233, 86.38 57.6014\\nL 86.38 61.7973\\nL 85.7201 61.7973\\nL 85.7201 56.7192\\nL 86.5234 56.7192\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 57.3658 61.1111\\nQ 57.3658 59.8918, 57.9683 59.2104\\nQ 58.5708 58.529, 59.6969 58.529\\nQ 60.823 58.529, 61.4255 59.2104\\nQ 62.028 59.8918, 62.028 61.1111\\nQ 62.028 62.3448, 61.4183 63.0477\\nQ 60.8086 63.7435, 59.6969 63.7435\\nQ 58.578 63.7435, 57.9683 63.0477\\nQ 57.3658 62.352, 57.3658 61.1111\\nM 59.6969 63.1697\\nQ 60.4715 63.1697, 60.8875 62.6532\\nQ 61.3107 62.1296, 61.3107 61.1111\\nQ 61.3107 60.1142, 60.8875 59.6121\\nQ 60.4715 59.1028, 59.6969 59.1028\\nQ 58.9223 59.1028, 58.4991 59.6049\\nQ 58.0831 60.107, 58.0831 61.1111\\nQ 58.0831 62.1368, 58.4991 62.6532\\nQ 58.9223 63.1697, 59.6969 63.1697\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 54.8853 93.549\\nQ 54.8853 92.2866, 55.4735 91.6268\\nQ 56.0688 90.9597, 57.1949 90.9597\\nQ 58.2421 90.9597, 58.8015 91.6985\\nL 58.3281 92.0858\\nQ 57.9193 91.5479, 57.1949 91.5479\\nQ 56.4274 91.5479, 56.0186 92.0643\\nQ 55.6169 92.5735, 55.6169 93.549\\nQ 55.6169 94.5532, 56.0329 95.0696\\nQ 56.4561 95.586, 57.2738 95.586\\nQ 57.8332 95.586, 58.4859 95.2489\\nL 58.6868 95.7868\\nQ 58.4214 95.959, 58.0197 96.0594\\nQ 57.6181 96.1598, 57.1734 96.1598\\nQ 56.0688 96.1598, 55.4735 95.4856\\nQ 54.8853 94.8114, 54.8853 93.549\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 59.4184 90.6513\\nL 60.0782 90.6513\\nL 60.0782 96.0953\\nL 59.4184 96.0953\\nL 59.4184 90.6513\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 86.6035 106.928\\nL 88.2676 109.618\\nQ 88.4325 109.883, 88.6979 110.364\\nQ 88.9633 110.844, 88.9776 110.873\\nL 88.9776 106.928\\nL 89.6519 106.928\\nL 89.6519 112.006\\nL 88.9561 112.006\\nL 87.1702 109.066\\nQ 86.9622 108.721, 86.7398 108.327\\nQ 86.5246 107.932, 86.4601 107.81\\nL 86.4601 112.006\\nL 85.8002 112.006\\nL 85.8002 106.928\\nL 86.6035 106.928\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 90.2615 106.928\\nL 90.9501 106.928\\nL 90.9501 109.087\\nL 93.5466 109.087\\nL 93.5466 106.928\\nL 94.2351 106.928\\nL 94.2351 112.006\\nL 93.5466 112.006\\nL 93.5466 109.661\\nL 90.9501 109.661\\nL 90.9501 112.006\\nL 90.2615 112.006\\nL 90.2615 106.928\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 94.4813 111.828\\nQ 94.6044 111.511, 94.8979 111.336\\nQ 95.1914 111.156, 95.5985 111.156\\nQ 96.105 111.156, 96.389 111.431\\nQ 96.6731 111.705, 96.6731 112.193\\nQ 96.6731 112.69, 96.3038 113.154\\nQ 95.9393 113.618, 95.1819 114.167\\nL 96.7299 114.167\\nL 96.7299 114.545\\nL 94.4718 114.545\\nL 94.4718 114.228\\nQ 95.0967 113.783, 95.4659 113.452\\nQ 95.8399 113.121, 96.0198 112.822\\nQ 96.1997 112.524, 96.1997 112.216\\nQ 96.1997 111.894, 96.0387 111.715\\nQ 95.8778 111.535, 95.5985 111.535\\nQ 95.3286 111.535, 95.1488 111.644\\nQ 94.9689 111.752, 94.8411 111.994\\nL 94.4813 111.828\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 102.066 65.6609\\nL 103.73 68.3506\\nQ 103.895 68.616, 104.161 69.0966\\nQ 104.426 69.5771, 104.44 69.6058\\nL 104.44 65.6609\\nL 105.115 65.6609\\nL 105.115 70.7391\\nL 104.419 70.7391\\nL 102.633 67.7984\\nQ 102.425 67.4541, 102.203 67.0596\\nQ 101.987 66.6651, 101.923 66.5432\\nL 101.923 70.7391\\nL 101.263 70.7391\\nL 101.263 65.6609\\nL 102.066 65.6609\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 215, "data-ID": 1083, "data-Solubility": -2.87, "data-SMILES": "c1ccccc1N2C(=O)C(Cl)=C(N)C=N2", "mols2grid-tooltip": "<strong>Name</strong>: Pyrazon<br><strong>SMILES</strong>: c1ccccc1N2C(=O)C(Cl)=C(N)C=N2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.87</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.092,76.9198 L 61.6829,74.2799' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 61.6829,74.2799 L 66.2737,71.6401' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.9976,73.2774 L 59.5884,70.6376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 59.5884,70.6376 L 64.1793,67.9977' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1888,65.3663 L 61.6238,62.7213' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 61.6238,62.7213 L 57.0588,60.0763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.0824,69.0017 L 59.5174,66.3567' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 59.5174,66.3567 L 54.9524,63.7117' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 67.4684,65.0409 L 67.4787,57.9837' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 67.4787,57.9837 L 67.4891,50.9265' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 69.8963,69.9441 L 77.7706,74.5121' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 77.7706,74.5121 L 85.6449,79.08' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.7123,45.9 L 57.0117,41.4332' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.0117,41.4332 L 49.3111,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3111,36.9663 L 49.3111,28.2123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3111,28.2123 L 49.3111,19.4584' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.1095,34.3401 L 45.1095,28.2123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.1095,28.2123 L 45.1095,22.0846' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 49.3111,36.9663 L 41.6054,41.4153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 41.6054,41.4153 L 33.8997,45.8643' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.5297,14.3526 L 38.824,9.90355' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 38.824,9.90355 L 31.1183,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 31.1183,5.45455 L 12.9255,15.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.4902,10.6688 L 17.7553,18.0215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.9255,15.9585 L 12.9255,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 28.3369,45.8643 L 20.6312,41.4153' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 20.6312,41.4153 L 12.9255,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 28.126,40.891 L 22.732,37.7767' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 22.732,37.7767 L 17.3381,34.6624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6449,79.08 L 85.6014,100.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8399,82.2399 L 89.8095,96.9454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-10 atom-16' d='M 85.6449,79.08 L 103.86,68.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 85.6014,100.088 L 103.773,110.63' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 103.773,110.63 L 121.988,100.162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 104.412,105.417 L 117.163,98.0893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 121.988,100.162 L 127.919,103.603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 127.919,103.603 L 133.849,107.043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 121.988,100.162 L 122.032,79.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 103.86,68.6139 L 122.032,79.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 104.478,73.8294 L 117.198,81.2076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 50.1626 76.9274\\nQ 50.1626 75.4989, 50.8685 74.7006\\nQ 51.5743 73.9023, 52.8936 73.9023\\nQ 54.2129 73.9023, 54.9188 74.7006\\nQ 55.6247 75.4989, 55.6247 76.9274\\nQ 55.6247 78.3728, 54.9104 79.1963\\nQ 54.1961 80.0114, 52.8936 80.0114\\nQ 51.5828 80.0114, 50.8685 79.1963\\nQ 50.1626 78.3812, 50.1626 76.9274\\nM 52.8936 79.3391\\nQ 53.8012 79.3391, 54.2886 78.7341\\nQ 54.7843 78.1207, 54.7843 76.9274\\nQ 54.7843 75.7594, 54.2886 75.1712\\nQ 53.8012 74.5745, 52.8936 74.5745\\nQ 51.9861 74.5745, 51.4903 75.1628\\nQ 51.0029 75.751, 51.0029 76.9274\\nQ 51.0029 78.1291, 51.4903 78.7341\\nQ 51.9861 79.3391, 52.8936 79.3391\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 65.7827 70.5746\\nQ 65.8499 70.5999, 66.1272 70.7175\\nQ 66.4045 70.8351, 66.707 70.9108\\nQ 67.0179 70.978, 67.3204 70.978\\nQ 67.8834 70.978, 68.2112 70.7091\\nQ 68.5389 70.4318, 68.5389 69.9528\\nQ 68.5389 69.6251, 68.3708 69.4234\\nQ 68.2112 69.2217, 67.9591 69.1125\\nQ 67.707 69.0033, 67.2868 68.8772\\nQ 66.7574 68.7176, 66.4381 68.5663\\nQ 66.1272 68.415, 65.9003 68.0957\\nQ 65.6818 67.7764, 65.6818 67.2386\\nQ 65.6818 66.4907, 66.186 66.0285\\nQ 66.6986 65.5664, 67.707 65.5664\\nQ 68.396 65.5664, 69.1775 65.8941\\nL 68.9842 66.5411\\nQ 68.27 66.247, 67.7322 66.247\\nQ 67.1524 66.247, 66.833 66.4907\\nQ 66.5137 66.726, 66.5221 67.1378\\nQ 66.5221 67.4571, 66.6818 67.6504\\nQ 66.8498 67.8436, 67.0851 67.9529\\nQ 67.3288 68.0621, 67.7322 68.1882\\nQ 68.27 68.3562, 68.5893 68.5243\\nQ 68.9086 68.6923, 69.1355 69.0369\\nQ 69.3708 69.373, 69.3708 69.9528\\nQ 69.3708 70.7763, 68.8162 71.2217\\nQ 68.27 71.6587, 67.354 71.6587\\nQ 66.8246 71.6587, 66.4213 71.541\\nQ 66.0263 71.4318, 65.5558 71.2385\\nL 65.7827 70.5746\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 50.1906 60.1239\\nQ 50.1906 58.6954, 50.8965 57.8971\\nQ 51.6024 57.0988, 52.9217 57.0988\\nQ 54.2409 57.0988, 54.9468 57.8971\\nQ 55.6527 58.6954, 55.6527 60.1239\\nQ 55.6527 61.5693, 54.9384 62.3928\\nQ 54.2241 63.2079, 52.9217 63.2079\\nQ 51.6108 63.2079, 50.8965 62.3928\\nQ 50.1906 61.5777, 50.1906 60.1239\\nM 52.9217 62.5356\\nQ 53.8292 62.5356, 54.3166 61.9306\\nQ 54.8124 61.3172, 54.8124 60.1239\\nQ 54.8124 58.9559, 54.3166 58.3677\\nQ 53.8292 57.7711, 52.9217 57.7711\\nQ 52.0141 57.7711, 51.5183 58.3593\\nQ 51.0309 58.9475, 51.0309 60.1239\\nQ 51.0309 61.3256, 51.5183 61.9306\\nQ 52.0141 62.5356, 52.9217 62.5356\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 66.179 44.5389\\nL 68.1285 47.6901\\nQ 68.3218 48.001, 68.6327 48.564\\nQ 68.9436 49.127, 68.9604 49.1607\\nL 68.9604 44.5389\\nL 69.7503 44.5389\\nL 69.7503 50.4884\\nL 68.9352 50.4884\\nL 66.8428 47.0431\\nQ 66.5992 46.6397, 66.3387 46.1775\\nQ 66.0866 45.7154, 66.0109 45.5725\\nL 66.0109 50.4884\\nL 65.2378 50.4884\\nL 65.2378 44.5389\\nL 66.179 44.5389\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 70.4646 44.5389\\nL 71.2713 44.5389\\nL 71.2713 47.0683\\nL 74.3132 47.0683\\nL 74.3132 44.5389\\nL 75.1199 44.5389\\nL 75.1199 50.4884\\nL 74.3132 50.4884\\nL 74.3132 47.7405\\nL 71.2713 47.7405\\nL 71.2713 50.4884\\nL 70.4646 50.4884\\nL 70.4646 44.5389\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 47.996 12.9838\\nL 49.9455 16.1349\\nQ 50.1388 16.4458, 50.4497 17.0089\\nQ 50.7606 17.5719, 50.7775 17.6055\\nL 50.7775 12.9838\\nL 51.5673 12.9838\\nL 51.5673 18.9332\\nL 50.7522 18.9332\\nL 48.6599 15.4879\\nQ 48.4162 15.0845, 48.1557 14.6224\\nQ 47.9036 14.1602, 47.828 14.0173\\nL 47.828 18.9332\\nL 47.0549 18.9332\\nL 47.0549 12.9838\\nL 47.996 12.9838\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 29.8032 44.4955\\nL 31.7528 47.6467\\nQ 31.946 47.9576, 32.2569 48.5206\\nQ 32.5679 49.0836, 32.5847 49.1172\\nL 32.5847 44.4955\\nL 33.3746 44.4955\\nL 33.3746 50.4449\\nL 32.5595 50.4449\\nL 30.4671 46.9996\\nQ 30.2234 46.5963, 29.9629 46.1341\\nQ 29.7108 45.672, 29.6352 45.5291\\nL 29.6352 50.4449\\nL 28.8621 50.4449\\nL 28.8621 44.4955\\nL 29.8032 44.4955\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 135.211 105.621\\nL 137.16 108.773\\nQ 137.354 109.083, 137.664 109.646\\nQ 137.975 110.209, 137.992 110.243\\nL 137.992 105.621\\nL 138.782 105.621\\nL 138.782 111.571\\nL 137.967 111.571\\nL 135.875 108.125\\nQ 135.631 107.722, 135.37 107.26\\nQ 135.118 106.798, 135.043 106.655\\nL 135.043 111.571\\nL 134.27 111.571\\nL 134.27 105.621\\nL 135.211 105.621\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 139.496 105.621\\nL 140.303 105.621\\nL 140.303 108.151\\nL 143.345 108.151\\nL 143.345 105.621\\nL 144.152 105.621\\nL 144.152 111.571\\nL 143.345 111.571\\nL 143.345 108.823\\nL 140.303 108.823\\nL 140.303 111.571\\nL 139.496 111.571\\nL 139.496 105.621\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 144.44 111.362\\nQ 144.584 110.99, 144.928 110.785\\nQ 145.272 110.574, 145.749 110.574\\nQ 146.342 110.574, 146.675 110.896\\nQ 147.008 111.218, 147.008 111.789\\nQ 147.008 112.371, 146.575 112.915\\nQ 146.148 113.458, 145.261 114.102\\nL 147.074 114.102\\nL 147.074 114.545\\nL 144.429 114.545\\nL 144.429 114.174\\nQ 145.161 113.653, 145.594 113.264\\nQ 146.032 112.876, 146.243 112.527\\nQ 146.453 112.177, 146.453 111.817\\nQ 146.453 111.44, 146.265 111.229\\nQ 146.076 111.018, 145.749 111.018\\nQ 145.433 111.018, 145.222 111.146\\nQ 145.011 111.273, 144.862 111.556\\nL 144.44 111.362\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 216, "data-ID": 1088, "data-Solubility": -3.51, "data-SMILES": "O=S(=O)(Nc(nccc1)n1)c(ccc(N)c2)c2", "mols2grid-tooltip": "<strong>Name</strong>: Sulfadiazine<br><strong>SMILES</strong>: O=S(=O)(Nc(nccc1)n1)c(ccc(N)c2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.51</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.834,101.297 L 132.717,91.589' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.495,93.6948 L 138.093,97.5215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 138.093,97.5215 L 144.69,101.348' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 133.938,89.4833 L 140.535,93.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.535,93.31 L 147.133,97.1367' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.717,91.589 L 132.732,81.4387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.732,81.4387 L 132.747,71.2884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 129.529,65.3627 L 120.606,60.1865' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.606,60.1865 L 111.682,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 111.682,55.0104 L 111.682,30.6668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.814,51.3588 L 106.814,34.3183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 90.6008,67.1822 L 111.682,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 111.682,30.6668 L 90.6008,18.495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.6008,18.495 L 69.5193,30.6668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.873,24.5372 L 75.1159,33.0574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.5193,30.6668 L 60.8466,25.6837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 60.8466,25.6837 L 52.174,20.7005' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 69.5193,30.6668 L 69.5193,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 44.6268,20.718 L 35.9753,25.7289' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 35.9753,25.7289 L 27.3237,30.7398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 27.3237,30.7398 L 27.3578,50.2147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 28.5364,28.629 L 21.919,24.8271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 21.919,24.8271 L 15.3016,21.0252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 26.111,32.8506 L 19.4936,29.0487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 19.4936,29.0487 L 12.8762,25.2468' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 69.5193,55.0104 L 90.6008,67.1822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.1159,52.6197 L 89.873,61.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 146.398 101.38\\nQ 146.398 99.7247, 147.216 98.7996\\nQ 148.034 97.8746, 149.563 97.8746\\nQ 151.091 97.8746, 151.909 98.7996\\nQ 152.727 99.7247, 152.727 101.38\\nQ 152.727 103.055, 151.9 104.009\\nQ 151.072 104.954, 149.563 104.954\\nQ 148.044 104.954, 147.216 104.009\\nQ 146.398 103.065, 146.398 101.38\\nM 149.563 104.175\\nQ 150.614 104.175, 151.179 103.474\\nQ 151.754 102.763, 151.754 101.38\\nQ 151.754 100.027, 151.179 99.3449\\nQ 150.614 98.6536, 149.563 98.6536\\nQ 148.511 98.6536, 147.936 99.3352\\nQ 147.372 100.017, 147.372 101.38\\nQ 147.372 102.772, 147.936 103.474\\nQ 148.511 104.175, 149.563 104.175\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 131.229 63.7854\\nL 133.488 67.437\\nQ 133.712 67.7973, 134.072 68.4497\\nQ 134.432 69.1021, 134.452 69.141\\nL 134.452 63.7854\\nL 135.367 63.7854\\nL 135.367 70.6795\\nL 134.423 70.6795\\nL 131.998 66.6872\\nQ 131.716 66.2198, 131.414 65.6842\\nQ 131.122 65.1487, 131.034 64.9831\\nL 131.034 70.6795\\nL 130.138 70.6795\\nL 130.138 63.7854\\nL 131.229 63.7854\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 136.195 63.7854\\nL 137.13 63.7854\\nL 137.13 66.7164\\nL 140.654 66.7164\\nL 140.654 63.7854\\nL 141.589 63.7854\\nL 141.589 70.6795\\nL 140.654 70.6795\\nL 140.654 67.4954\\nL 137.13 67.4954\\nL 137.13 70.6795\\nL 136.195 70.6795\\nL 136.195 63.7854\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 45.2357 18.5518\\nQ 45.2357 16.8964, 46.0537 15.9714\\nQ 46.8716 15.0463, 48.4004 15.0463\\nQ 49.9292 15.0463, 50.7471 15.9714\\nQ 51.5651 16.8964, 51.5651 18.5518\\nQ 51.5651 20.2266, 50.7374 21.1809\\nQ 49.9097 22.1254, 48.4004 22.1254\\nQ 46.8814 22.1254, 46.0537 21.1809\\nQ 45.2357 20.2364, 45.2357 18.5518\\nM 48.4004 21.3464\\nQ 49.452 21.3464, 50.0168 20.6453\\nQ 50.5913 19.9345, 50.5913 18.5518\\nQ 50.5913 17.1983, 50.0168 16.5167\\nQ 49.452 15.8253, 48.4004 15.8253\\nQ 47.3488 15.8253, 46.7743 16.5069\\nQ 46.2095 17.1886, 46.2095 18.5518\\nQ 46.2095 19.9443, 46.7743 20.6453\\nQ 47.3488 21.3464, 48.4004 21.3464\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 7.27273 21.0576\\nQ 7.27273 19.4022, 8.09067 18.4771\\nQ 8.90862 17.5521, 10.4374 17.5521\\nQ 11.9662 17.5521, 12.7841 18.4771\\nQ 13.6021 19.4022, 13.6021 21.0576\\nQ 13.6021 22.7324, 12.7744 23.6867\\nQ 11.9467 24.6312, 10.4374 24.6312\\nQ 8.91835 24.6312, 8.09067 23.6867\\nQ 7.27273 22.7421, 7.27273 21.0576\\nM 10.4374 23.8522\\nQ 11.489 23.8522, 12.0538 23.1511\\nQ 12.6283 22.4403, 12.6283 21.0576\\nQ 12.6283 19.7041, 12.0538 19.0224\\nQ 11.489 18.3311, 10.4374 18.3311\\nQ 9.38575 18.3311, 8.81124 19.0127\\nQ 8.24647 19.6943, 8.24647 21.0576\\nQ 8.24647 22.45, 8.81124 23.1511\\nQ 9.38575 23.8522, 10.4374 23.8522\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 217, "data-ID": 1093, "data-Solubility": -1.91, "data-SMILES": "CC(=O)Nc1ccc(OC(C)=O)cc1", "mols2grid-tooltip": "<strong>Name</strong>: p-Acetoxy-acetanilide<br><strong>SMILES</strong>: CC(=O)Nc1ccc(OC(C)=O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.91</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.0113,34.6204 L 32.7025,39.6726' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.7025,39.6726 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,44.7248 L 69.5202,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 48.7888,47.8993 L 68.4774,36.6871' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-1' d='M 41.3938,76.7557 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 69.5202,28.7072 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.2552,44.7248 L 124.99,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 97.2552,76.7557 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 90.837,71.951 L 90.837,49.5294' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 124.99,28.7072 L 152.727,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 152.727,44.7248 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,76.7557 L 124.99,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.99,92.7732 L 97.2552,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 97.2552,76.7557 L 69.5202,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 69.5202,92.7732 L 41.3938,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 68.4774,84.7934 L 48.7888,73.5811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 27.3295\\nL 8.50501 27.3295\\nL 8.50501 31.1932\\nL 13.1518 31.1932\\nL 13.1518 27.3295\\nL 14.384 27.3295\\nL 14.384 36.4176\\nL 13.1518 36.4176\\nL 13.1518 32.2201\\nL 8.50501 32.2201\\nL 8.50501 36.4176\\nL 7.27273 36.4176\\nL 7.27273 27.3295\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.0259 31.8479\\nQ 15.0259 29.6657, 16.1041 28.4462\\nQ 17.1824 27.2268, 19.1977 27.2268\\nQ 21.213 27.2268, 22.2912 28.4462\\nQ 23.3694 29.6657, 23.3694 31.8479\\nQ 23.3694 34.0557, 22.2784 35.3137\\nQ 21.1873 36.5588, 19.1977 36.5588\\nQ 17.1952 36.5588, 16.1041 35.3137\\nQ 15.0259 34.0685, 15.0259 31.8479\\nM 19.1977 35.5319\\nQ 20.584 35.5319, 21.3285 34.6077\\nQ 22.0858 33.6706, 22.0858 31.8479\\nQ 22.0858 30.0636, 21.3285 29.1651\\nQ 20.584 28.2537, 19.1977 28.2537\\nQ 17.8113 28.2537, 17.054 29.1522\\nQ 16.3095 30.0508, 16.3095 31.8479\\nQ 16.3095 33.6834, 17.054 34.6077\\nQ 17.8113 35.5319, 19.1977 35.5319\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 218, "data-ID": 1098, "data-Solubility": -1.99, "data-SMILES": "Oc1cc2CCCCc2cc1", "mols2grid-tooltip": "<strong>Name</strong>: 5,6,7,8-Tetrahydro-2-naphthol<br><strong>SMILES</strong>: Oc1cc2CCCCc2cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.99</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.898,73.7273 L 125.862,68.5109' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.862,68.5109 L 116.826,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.826,63.2945 L 116.826,30.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.169,58.3012 L 110.169,34.999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 116.826,63.2945 L 87.9982,79.9389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 116.826,30.0056 L 87.9982,13.3612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-9' d='M 116.826,30.0056 L 139.891,16.6901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.9982,13.3612 L 59.1701,30.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.0029,21.6236 L 66.8232,33.2747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.1701,30.0056 L 59.1701,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1701,63.2945 L 30.3597,80.0077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 87.9982,79.9389 L 59.1701,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 87.0029,71.6765 L 66.8232,60.0254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.3597,80.0077 L 30.3974,106.639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 30.3597,80.0077 L 7.27273,66.7321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.564 76.6367\\nQ 135.564 74.373, 136.682 73.108\\nQ 137.801 71.8431, 139.891 71.8431\\nQ 141.982 71.8431, 143.1 73.108\\nQ 144.219 74.373, 144.219 76.6367\\nQ 144.219 78.9269, 143.087 80.2319\\nQ 141.955 81.5235, 139.891 81.5235\\nQ 137.814 81.5235, 136.682 80.2319\\nQ 135.564 78.9402, 135.564 76.6367\\nM 139.891 80.4582\\nQ 141.329 80.4582, 142.101 79.4995\\nQ 142.887 78.5275, 142.887 76.6367\\nQ 142.887 74.7858, 142.101 73.8537\\nQ 141.329 72.9083, 139.891 72.9083\\nQ 138.453 72.9083, 137.667 73.8404\\nQ 136.895 74.7725, 136.895 76.6367\\nQ 136.895 78.5408, 137.667 79.4995\\nQ 138.453 80.4582, 139.891 80.4582\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 145.35 71.9496\\nL 146.629 71.9496\\nL 146.629 75.9576\\nL 151.449 75.9576\\nL 151.449 71.9496\\nL 152.727 71.9496\\nL 152.727 81.377\\nL 151.449 81.377\\nL 151.449 77.0228\\nL 146.629 77.0228\\nL 146.629 81.377\\nL 145.35 81.377\\nL 145.35 71.9496\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 219, "data-ID": 1103, "data-Solubility": -2.08, "data-SMILES": "Oc(c(ccc1C(C)C)C)c1", "mols2grid-tooltip": "<strong>Name</strong>: Carvacrol<br><strong>SMILES</strong>: Oc(c(ccc1C(C)C)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.08</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 113.823,37.846 L 104.079,43.6001' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.079,43.6001 L 94.335,49.3542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.501,44.074 L 107.757,49.8281' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.757,49.8281 L 98.0128,55.5822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.1739,52.4682 L 65.0726,34.386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-8' d='M 96.1739,52.4682 L 96.1739,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.0726,34.386 L 80.0205,69.3449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 65.0726,34.386 L 34.2123,52.4682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-7' d='M 65.0726,34.386 L 65.0726,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.0205,69.3449 L 65.0726,105.509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0726,105.509 L 34.2123,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-4' d='M 96.1739,87.6681 L 65.0726,105.509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 34.2123,52.4682 L 34.2123,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 96.1739,87.6681 L 106.879,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-10' d='M 96.1739,87.6681 L 115.886,66.4903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.385 37.7855\\nQ 116.385 35.3263, 117.6 33.952\\nQ 118.815 32.5778, 121.086 32.5778\\nQ 123.357 32.5778, 124.573 33.952\\nQ 125.788 35.3263, 125.788 37.7855\\nQ 125.788 40.2736, 124.558 41.6912\\nQ 123.328 43.0944, 121.086 43.0944\\nQ 118.83 43.0944, 117.6 41.6912\\nQ 116.385 40.288, 116.385 37.7855\\nM 121.086 41.9371\\nQ 122.649 41.9371, 123.488 40.8956\\nQ 124.341 39.8396, 124.341 37.7855\\nQ 124.341 35.7747, 123.488 34.7621\\nQ 122.649 33.7351, 121.086 33.7351\\nQ 119.524 33.7351, 118.671 34.7477\\nQ 117.832 35.7603, 117.832 37.7855\\nQ 117.832 39.8541, 118.671 40.8956\\nQ 119.524 41.9371, 121.086 41.9371\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 220, "data-ID": 1108, "data-Solubility": -1.85, "data-SMILES": "O=C(C(CC1C2)(C2)C)C1(C)C", "mols2grid-tooltip": "<strong>Name</strong>: d-Fenchone<br><strong>SMILES</strong>: O=C(C(CC1C2)(C2)C)C1(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 117.453,100.309 L 107.542,94.5879' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.542,94.5879 L 97.6322,88.8666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.802,106.633 L 103.892,100.912' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.892,100.912 L 93.9813,95.1906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8068,92.0286 L 95.8068,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 95.8068,92.0286 L 64.1883,110.284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.8068,55.5177 L 64.1883,37.2622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 95.8068,55.5177 L 127.406,37.1868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1883,37.2622 L 32.5699,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.5699,55.5177 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 32.5699,92.0286 L 7.27273,106.633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 64.1883,110.284 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.406,37.1868 L 127.364,7.97806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 127.406,37.1868 L 152.727,51.7473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.358 106.662\\nQ 116.358 104.179, 117.584 102.792\\nQ 118.811 101.405, 121.104 101.405\\nQ 123.397 101.405, 124.624 102.792\\nQ 125.85 104.179, 125.85 106.662\\nQ 125.85 109.174, 124.609 110.605\\nQ 123.368 112.022, 121.104 112.022\\nQ 118.826 112.022, 117.584 110.605\\nQ 116.358 109.189, 116.358 106.662\\nM 121.104 110.854\\nQ 122.681 110.854, 123.528 109.802\\nQ 124.39 108.736, 124.39 106.662\\nQ 124.39 104.632, 123.528 103.61\\nQ 122.681 102.573, 121.104 102.573\\nQ 119.527 102.573, 118.665 103.595\\nQ 117.818 104.618, 117.818 106.662\\nQ 117.818 108.751, 118.665 109.802\\nQ 119.527 110.854, 121.104 110.854\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 221, "data-ID": 1113, "data-Solubility": -2.49, "data-SMILES": "O=C(C(CCC1C)C(C)C)C1", "mols2grid-tooltip": "<strong>Name</strong>: l-Menthone<br><strong>SMILES</strong>: O=C(C(CCC1C)C(C)C)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.49</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 66.7159,103.729 L 79.5086,96.3415' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 79.5086,96.3415 L 92.3012,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 67.0573,95.4589 L 76.0121,90.2872' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 76.0121,90.2872 L 84.967,85.1156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 57.4536,103.761 L 44.4523,96.3574' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 44.4523,96.3574 L 31.4511,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.3012,88.9534 L 92.3012,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 92.3012,88.9534 L 122.513,106.401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.3012,54.062 L 62.0894,36.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 84.273,57.499 L 63.1247,45.2854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.3012,54.062 L 122.513,36.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.0894,36.614 L 31.4511,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 62.0894,36.614 L 62.1733,8.64871' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 31.4511,88.9534 L 31.4511,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 38.4424,83.7197 L 38.4424,59.2957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 122.513,36.614 L 152.727,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 123.549,45.2855 L 144.699,57.4992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,54.062 L 152.727,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 122.513,106.401 L 152.727,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 123.549,97.7299 L 144.699,85.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 31.4511,88.9534 L 7.27273,103.008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 59.9011 101.452\\nL 63.1451 106.695\\nQ 63.4667 107.212, 63.984 108.149\\nQ 64.5014 109.086, 64.5294 109.142\\nL 64.5294 101.452\\nL 65.8437 101.452\\nL 65.8437 111.351\\nL 64.4874 111.351\\nL 61.0057 105.618\\nQ 60.6002 104.947, 60.1668 104.178\\nQ 59.7473 103.409, 59.6214 103.171\\nL 59.6214 111.351\\nL 58.335 111.351\\nL 58.335 101.452\\nL 59.9011 101.452\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 222, "data-ID": 1118, "data-Solubility": -1.94, "data-SMILES": "n(c(c(c(c1)C)ccc2)c2)c1C", "mols2grid-tooltip": "<strong>Name</strong>: 2,4-Dimethylquinoline<br><strong>SMILES</strong>: n(c(c(c(c1)C)ccc2)c2)c1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.94</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.3,111.018 L 112.504,101.275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.504,101.275 L 112.519,91.1551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.519,91.1551 L 112.534,81.0349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.754,75.1515 L 124.686,70.0397' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.686,70.0397 L 133.617,64.9279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 109.326,75.1266 L 100.429,69.9658' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 100.429,69.9658 L 91.5322,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 133.617,64.9279 L 150.402,74.69' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5322,64.805 L 91.5322,40.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.6779,61.1642 L 86.6779,44.1741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-5' d='M 70.5131,76.9407 L 91.5322,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.5322,40.5334 L 70.5131,28.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 91.5322,40.5334 L 100.428,35.3726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 100.428,35.3726 L 109.325,30.2119' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.5131,28.3976 L 49.4939,40.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.7874,34.4219 L 55.074,42.917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.4939,40.5334 L 49.4939,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-8 atom-15' d='M 49.4939,40.5334 L 28.4618,28.3912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.4939,64.805 L 42.6315,68.7667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 42.6315,68.7667 L 35.7692,72.7284' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 49.4939,64.805 L 70.5131,76.9407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 55.074,62.4214 L 69.7874,70.9164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.5131,76.9407 L 70.534,87.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.534,87.061 L 70.5549,97.1813' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 73.6554,103.005 L 78.7485,105.935' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 78.7485,105.935 L 83.8416,108.866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 66.2538,100.918 L 61.176,103.861' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 61.176,103.861 L 56.0982,106.805' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 68.6882,105.118 L 63.6104,108.061' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 63.6104,108.061 L 58.5327,111.004' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 28.4618,28.3912 L 28.4566,20.6437' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 28.4566,20.6437 L 28.4515,12.8962' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 28.4618,28.3912 L 21.3203,32.5173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 21.3203,32.5173 L 14.1788,36.6434' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 28.4618,28.3912 L 21.3162,24.2702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 21.3162,24.2702 L 14.1707,20.1492' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 112.533,24.4252 L 112.525,18.6626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 112.525,18.6626 L 112.517,12.9001' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 114.421,32.2297 L 119.515,35.1592' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 119.515,35.1592 L 124.61,38.0888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 116.841,28.0215 L 121.935,30.9511' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 121.935,30.9511 L 127.03,33.8806' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 111.021 73.554\\nL 113.273 77.1948\\nQ 113.496 77.554, 113.856 78.2045\\nQ 114.215 78.8549, 114.234 78.8938\\nL 114.234 73.554\\nL 115.147 73.554\\nL 115.147 80.4277\\nL 114.205 80.4277\\nL 111.788 76.4472\\nQ 111.506 75.9812, 111.205 75.4472\\nQ 110.914 74.9132, 110.826 74.7482\\nL 110.826 80.4277\\nL 109.933 80.4277\\nL 109.933 73.554\\nL 111.021 73.554\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 20.5089 71.0767\\nL 21.441 71.0767\\nL 21.441 73.999\\nL 24.9555 73.999\\nL 24.9555 71.0767\\nL 25.8875 71.0767\\nL 25.8875 77.9504\\nL 24.9555 77.9504\\nL 24.9555 74.7757\\nL 21.441 74.7757\\nL 21.441 77.9504\\nL 20.5089 77.9504\\nL 20.5089 71.0767\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 26.2207 77.7093\\nQ 26.3873 77.28, 26.7846 77.0429\\nQ 27.1819 76.7994, 27.7329 76.7994\\nQ 28.4186 76.7994, 28.803 77.171\\nQ 29.1875 77.5427, 29.1875 78.2027\\nQ 29.1875 78.8755, 28.6877 79.5034\\nQ 28.1943 80.1314, 27.1691 80.8747\\nL 29.2644 80.8747\\nL 29.2644 81.3873\\nL 26.2079 81.3873\\nL 26.2079 80.958\\nQ 27.0537 80.3556, 27.5535 79.9071\\nQ 28.0597 79.4586, 28.3032 79.0549\\nQ 28.5467 78.6512, 28.5467 78.2347\\nQ 28.5467 77.799, 28.3288 77.5555\\nQ 28.111 77.312, 27.7329 77.312\\nQ 27.3677 77.312, 27.1242 77.4594\\nQ 26.8807 77.6067, 26.7077 77.9335\\nL 26.2207 77.7093\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 31.1576 71.0767\\nL 33.41 74.7175\\nQ 33.6332 75.0767, 33.9925 75.7272\\nQ 34.3517 76.3776, 34.3711 76.4165\\nL 34.3711 71.0767\\nL 35.2837 71.0767\\nL 35.2837 77.9504\\nL 34.342 77.9504\\nL 31.9245 73.9699\\nQ 31.643 73.5039, 31.342 72.9699\\nQ 31.0508 72.4359, 30.9634 72.2709\\nL 30.9634 77.9504\\nL 30.0702 77.9504\\nL 30.0702 71.0767\\nL 31.1576 71.0767\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 69.0438 97.7884\\nL 71.2962 101.429\\nQ 71.5195 101.788, 71.8787 102.439\\nQ 72.238 103.089, 72.2574 103.128\\nL 72.2574 97.7884\\nL 73.17 97.7884\\nL 73.17 104.662\\nL 72.2282 104.662\\nL 69.8108 100.682\\nQ 69.5293 100.216, 69.2283 99.6816\\nQ 68.937 99.1476, 68.8496 98.9825\\nL 68.8496 104.662\\nL 67.9565 104.662\\nL 67.9565 97.7884\\nL 69.0438 97.7884\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 73.7467 99.0274\\nL 74.9577 99.0274\\nL 74.9577 97.7523\\nL 75.496 97.7523\\nL 75.496 99.0274\\nL 76.7391 99.0274\\nL 76.7391 99.4887\\nL 75.496 99.4887\\nL 75.496 100.77\\nL 74.9577 100.77\\nL 74.9577 99.4887\\nL 73.7467 99.4887\\nL 73.7467 99.0274\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 84.2378 110.929\\nQ 84.2378 109.279, 85.0533 108.356\\nQ 85.8689 107.434, 87.3931 107.434\\nQ 88.9174 107.434, 89.7329 108.356\\nQ 90.5484 109.279, 90.5484 110.929\\nQ 90.5484 112.599, 89.7232 113.55\\nQ 88.898 114.492, 87.3931 114.492\\nQ 85.8786 114.492, 85.0533 113.55\\nQ 84.2378 112.609, 84.2378 110.929\\nM 87.3931 113.715\\nQ 88.4416 113.715, 89.0047 113.016\\nQ 89.5776 112.308, 89.5776 110.929\\nQ 89.5776 109.579, 89.0047 108.9\\nQ 88.4416 108.211, 87.3931 108.211\\nQ 86.3446 108.211, 85.7718 108.89\\nQ 85.2087 109.57, 85.2087 110.929\\nQ 85.2087 112.317, 85.7718 113.016\\nQ 86.3446 113.715, 87.3931 113.715\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 90.8688 108.556\\nL 93.2204 108.556\\nL 93.2204 109.068\\nL 90.8688 109.068\\nL 90.8688 108.556\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 50.6088 110.982\\nQ 50.6088 109.332, 51.4243 108.41\\nQ 52.2398 107.487, 53.7641 107.487\\nQ 55.2883 107.487, 56.1038 108.41\\nQ 56.9194 109.332, 56.9194 110.982\\nQ 56.9194 112.652, 56.0941 113.604\\nQ 55.2689 114.545, 53.7641 114.545\\nQ 52.2495 114.545, 51.4243 113.604\\nQ 50.6088 112.662, 50.6088 110.982\\nM 53.7641 113.769\\nQ 54.8126 113.769, 55.3757 113.07\\nQ 55.9485 112.361, 55.9485 110.982\\nQ 55.9485 109.633, 55.3757 108.953\\nQ 54.8126 108.264, 53.7641 108.264\\nQ 52.7155 108.264, 52.1427 108.944\\nQ 51.5796 109.623, 51.5796 110.982\\nQ 51.5796 112.371, 52.1427 113.07\\nQ 52.7155 113.769, 53.7641 113.769\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 26.4052 5.53707\\nL 30.4925 5.53707\\nL 30.4925 6.32347\\nL 27.3275 6.32347\\nL 27.3275 8.41082\\nL 30.143 8.41082\\nL 30.143 9.20693\\nL 27.3275 9.20693\\nL 27.3275 12.4108\\nL 26.4052 12.4108\\nL 26.4052 5.53707\\n' fill='#33CCCC'/>\\n<path class='atom-17' d='M 9.60603 34.6678\\nL 13.6934 34.6678\\nL 13.6934 35.4542\\nL 10.5284 35.4542\\nL 10.5284 37.5415\\nL 13.3439 37.5415\\nL 13.3439 38.3376\\nL 10.5284 38.3376\\nL 10.5284 41.5415\\nL 9.60603 41.5415\\nL 9.60603 34.6678\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 9.59794 15.2538\\nL 13.6853 15.2538\\nL 13.6853 16.0402\\nL 10.5203 16.0402\\nL 10.5203 18.1275\\nL 13.3358 18.1275\\nL 13.3358 18.9236\\nL 10.5203 18.9236\\nL 10.5203 22.1275\\nL 9.59794 22.1275\\nL 9.59794 15.2538\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 111.019 24.9106\\nL 113.271 28.5514\\nQ 113.495 28.9106, 113.854 29.561\\nQ 114.213 30.2115, 114.233 30.2504\\nL 114.233 24.9106\\nL 115.145 24.9106\\nL 115.145 31.7843\\nL 114.203 31.7843\\nL 111.786 27.8038\\nQ 111.504 27.3378, 111.204 26.8038\\nQ 110.912 26.2698, 110.825 26.1048\\nL 110.825 31.7843\\nL 109.932 31.7843\\nL 109.932 24.9106\\nL 111.019 24.9106\\n' fill='#0000FF'/>\\n<path class='atom-19' d='M 115.722 26.1496\\nL 116.933 26.1496\\nL 116.933 24.8745\\nL 117.471 24.8745\\nL 117.471 26.1496\\nL 118.714 26.1496\\nL 118.714 26.611\\nL 117.471 26.611\\nL 117.471 27.8925\\nL 116.933 27.8925\\nL 116.933 26.611\\nL 115.722 26.611\\nL 115.722 26.1496\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 109.356 8.94965\\nQ 109.356 7.29918, 110.171 6.37686\\nQ 110.987 5.45455, 112.511 5.45455\\nQ 114.035 5.45455, 114.851 6.37686\\nQ 115.666 7.29918, 115.666 8.94965\\nQ 115.666 10.6195, 114.841 11.571\\nQ 114.016 12.5127, 112.511 12.5127\\nQ 110.996 12.5127, 110.171 11.571\\nQ 109.356 10.6292, 109.356 8.94965\\nM 112.511 11.736\\nQ 113.559 11.736, 114.123 11.037\\nQ 114.695 10.3283, 114.695 8.94965\\nQ 114.695 7.60015, 114.123 6.92055\\nQ 113.559 6.23124, 112.511 6.23124\\nQ 111.462 6.23124, 110.89 6.91084\\nQ 110.326 7.59044, 110.326 8.94965\\nQ 110.326 10.338, 110.89 11.037\\nQ 111.462 11.736, 112.511 11.736\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 115.987 6.57647\\nL 118.338 6.57647\\nL 118.338 7.08909\\nL 115.987 7.08909\\nL 115.987 6.57647\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 126.216 38.0464\\nQ 126.216 36.3959, 127.032 35.4736\\nQ 127.847 34.5513, 129.372 34.5513\\nQ 130.896 34.5513, 131.711 35.4736\\nQ 132.527 36.3959, 132.527 38.0464\\nQ 132.527 39.7163, 131.702 40.6677\\nQ 130.876 41.6094, 129.372 41.6094\\nQ 127.857 41.6094, 127.032 40.6677\\nQ 126.216 39.726, 126.216 38.0464\\nM 129.372 40.8328\\nQ 130.42 40.8328, 130.983 40.1337\\nQ 131.556 39.425, 131.556 38.0464\\nQ 131.556 36.6969, 130.983 36.0173\\nQ 130.42 35.328, 129.372 35.328\\nQ 128.323 35.328, 127.75 36.0076\\nQ 127.187 36.6872, 127.187 38.0464\\nQ 127.187 39.4347, 127.75 40.1337\\nQ 128.323 40.8328, 129.372 40.8328\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 223, "data-ID": 1123, "data-Solubility": -5.47, "data-SMILES": "CCN(CC)c1c(cc(c(N)c1N(=O)=O)C(F)(F)F)N(=O)=O", "mols2grid-tooltip": "<strong>Name</strong>: Dinitramine<br><strong>SMILES</strong>: CCN(CC)c1c(cc(c(N)c1N(=O)=O)C(F)(F)F)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.47</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.7396,55.3377 L 14.9326,67.7944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.1737,56.3066 L 11.4984,66.8255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-0' d='M 46.7946,40.7999 L 16.4566,55.8222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 13.2155,67.3099 L 40.3143,54.9381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 40.3143,54.9381 L 40.3143,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 40.3143,54.9381 L 68.2952,64.9529' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-3' d='M 46.7946,40.7999 L 40.3143,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.2952,64.9529 L 87.2088,87.8768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 68.2952,64.9529 L 76.5438,51.1101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 84.4238,86.8349 L 81.1638,95.5483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 81.1638,95.5483 L 77.9037,104.262' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.9938,88.9188 L 86.7337,97.6323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.7337,97.6323 L 83.4737,106.346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 87.2088,87.8768 L 99.5775,85.8132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.5775,85.8132 L 111.946,83.7495' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 120.665,87.9641 L 126.177,94.6496' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.177,94.6496 L 131.689,101.335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 76.5438,51.1101 L 106.101,48.6599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-9 atom-14' d='M 76.5438,51.1101 L 46.7946,40.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 108.791,49.9268 L 112.685,41.6575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 112.685,41.6575 L 116.58,33.3881' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 103.411,47.393 L 107.305,39.1237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 107.305,39.1237 L 111.199,30.8543' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 106.101,48.6599 L 112.852,58.3743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 112.852,58.3743 L 119.603,68.0886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 127.54,72.719 L 137.162,71.9175' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 137.162,71.9175 L 146.785,71.116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 75.0074 110.18\\nQ 75.0074 108.158, 76.0065 107.028\\nQ 77.0057 105.898, 78.873 105.898\\nQ 80.7404 105.898, 81.7395 107.028\\nQ 82.7386 108.158, 82.7386 110.18\\nQ 82.7386 112.226, 81.7276 113.392\\nQ 80.7166 114.545, 78.873 114.545\\nQ 77.0175 114.545, 76.0065 113.392\\nQ 75.0074 112.238, 75.0074 110.18\\nM 78.873 113.594\\nQ 80.1576 113.594, 80.8475 112.738\\nQ 81.5492 111.869, 81.5492 110.18\\nQ 81.5492 108.527, 80.8475 107.694\\nQ 80.1576 106.85, 78.873 106.85\\nQ 77.5885 106.85, 76.8867 107.683\\nQ 76.1969 108.515, 76.1969 110.18\\nQ 76.1969 111.881, 76.8867 112.738\\nQ 77.5885 113.594, 78.873 113.594\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 112.69 83.0042\\nQ 112.69 80.9822, 113.689 79.8523\\nQ 114.688 78.7223, 116.556 78.7223\\nQ 118.423 78.7223, 119.422 79.8523\\nQ 120.421 80.9822, 120.421 83.0042\\nQ 120.421 85.05, 119.41 86.2156\\nQ 118.399 87.3694, 116.556 87.3694\\nQ 114.7 87.3694, 113.689 86.2156\\nQ 112.69 85.0619, 112.69 83.0042\\nM 116.556 86.4178\\nQ 117.84 86.4178, 118.53 85.5615\\nQ 119.232 84.6932, 119.232 83.0042\\nQ 119.232 81.3509, 118.53 80.5184\\nQ 117.84 79.6739, 116.556 79.6739\\nQ 115.271 79.6739, 114.569 80.5065\\nQ 113.879 81.339, 113.879 83.0042\\nQ 113.879 84.7051, 114.569 85.5615\\nQ 115.271 86.4178, 116.556 86.4178\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 112.371 27.1613\\nQ 112.371 25.1393, 113.37 24.0094\\nQ 114.369 22.8794, 116.236 22.8794\\nQ 118.104 22.8794, 119.103 24.0094\\nQ 120.102 25.1393, 120.102 27.1613\\nQ 120.102 29.2071, 119.091 30.3727\\nQ 118.08 31.5265, 116.236 31.5265\\nQ 114.381 31.5265, 113.37 30.3727\\nQ 112.371 29.219, 112.371 27.1613\\nM 116.236 30.5749\\nQ 117.521 30.5749, 118.211 29.7186\\nQ 118.913 28.8503, 118.913 27.1613\\nQ 118.913 25.508, 118.211 24.6754\\nQ 117.521 23.831, 116.236 23.831\\nQ 114.952 23.831, 114.25 24.6636\\nQ 113.56 25.4961, 113.56 27.1613\\nQ 113.56 28.8622, 114.25 29.7186\\nQ 114.952 30.5749, 116.236 30.5749\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 119.214 73.1143\\nQ 119.214 71.0923, 120.213 69.9623\\nQ 121.212 68.8324, 123.08 68.8324\\nQ 124.947 68.8324, 125.946 69.9623\\nQ 126.945 71.0923, 126.945 73.1143\\nQ 126.945 75.1601, 125.934 76.3257\\nQ 124.923 77.4794, 123.08 77.4794\\nQ 121.224 77.4794, 120.213 76.3257\\nQ 119.214 75.1719, 119.214 73.1143\\nM 123.08 76.5279\\nQ 124.364 76.5279, 125.054 75.6715\\nQ 125.756 74.8032, 125.756 73.1143\\nQ 125.756 71.461, 125.054 70.6284\\nQ 124.364 69.7839, 123.08 69.7839\\nQ 121.795 69.7839, 121.093 70.6165\\nQ 120.403 71.4491, 120.403 73.1143\\nQ 120.403 74.8151, 121.093 75.6715\\nQ 121.795 76.5279, 123.08 76.5279\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 224, "data-ID": 1128, "data-Solubility": -1.2, "data-SMILES": "C1=CC(C2)C(C(=O)OC)C(C(=O)OC)C12", "mols2grid-tooltip": "<strong>Name</strong>: Dimethyl_Carbate<br><strong>SMILES</strong>: C1=CC(C2)C(C(=O)OC)C(C(=O)OC)C12<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.2</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.684,26.1546 L 108.684,12.3545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.924,24.0846 L 105.924,14.4246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 96.733,33.0546 L 108.684,26.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.684,12.3545 L 96.733,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.733,5.45455 L 84.7822,12.3545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.3204,8.87976 L 87.9548,13.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.7822,12.3545 L 84.7822,26.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 84.7822,26.1546 L 96.733,33.0546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.9548,24.7993 L 96.3204,29.6293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 96.733,33.0546 L 96.733,38.7267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 96.733,38.7267 L 96.733,44.3987' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.6813,49.0023 L 100.554,50.6599' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 100.554,50.6599 L 103.427,52.3174' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 99.0606,46.6117 L 101.934,48.2692' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 101.934,48.2692 L 104.806,49.9268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 95.3542,49.3706 L 95.3558,52.456' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 95.3558,52.456 L 95.3573,55.5413' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 98.1142,49.3692 L 98.1158,52.4546' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 98.1158,52.4546 L 98.1173,55.5399' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-9' d='M 95.0258,47.8491 L 90.856,50.2602' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-9' d='M 90.856,50.2602 L 86.6863,52.6713' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.7794,56.2431 L 84.7794,61.9122' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.7794,61.9122 L 84.7794,67.5813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 84.0898,68.7766 L 87.7585,70.8931' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 87.7585,70.8931 L 91.4272,73.0096' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.469,66.3859 L 89.1377,68.5024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.1377,68.5024 L 92.8064,70.6189' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 84.7794,67.5813 L 79.7812,70.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 79.7812,70.4713 L 74.7829,73.3612' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.8268,76.9615 L 72.8268,82.6311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.8268,82.6311 L 72.8268,88.3006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 72.8268,88.3006 L 60.8732,95.2116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 60.8732,95.2116 L 60.8732,109.019' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 60.8732,109.019 L 51.3162,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 95.533 48.3199\\nQ 95.581 48.3379, 95.779 48.4219\\nQ 95.977 48.5059, 96.193 48.5599\\nQ 96.415 48.6079, 96.631 48.6079\\nQ 97.033 48.6079, 97.267 48.4159\\nQ 97.501 48.2179, 97.501 47.8759\\nQ 97.501 47.6419, 97.381 47.4979\\nQ 97.267 47.3539, 97.087 47.2759\\nQ 96.907 47.1979, 96.607 47.1079\\nQ 96.229 46.9939, 96.001 46.8859\\nQ 95.779 46.7779, 95.617 46.5499\\nQ 95.461 46.3219, 95.461 45.9379\\nQ 95.461 45.4039, 95.821 45.0739\\nQ 96.187 44.7439, 96.907 44.7439\\nQ 97.399 44.7439, 97.957 44.9779\\nL 97.819 45.4399\\nQ 97.309 45.2299, 96.925 45.2299\\nQ 96.511 45.2299, 96.283 45.4039\\nQ 96.055 45.5719, 96.061 45.8659\\nQ 96.061 46.0939, 96.175 46.2319\\nQ 96.295 46.3699, 96.463 46.4479\\nQ 96.637 46.5259, 96.925 46.6159\\nQ 97.309 46.7359, 97.537 46.8559\\nQ 97.765 46.9759, 97.927 47.2219\\nQ 98.095 47.4619, 98.095 47.8759\\nQ 98.095 48.4639, 97.699 48.7819\\nQ 97.309 49.0939, 96.655 49.0939\\nQ 96.277 49.0939, 95.989 49.0099\\nQ 95.707 48.9319, 95.371 48.7939\\nL 95.533 48.3199\\n' fill='#CCCC00'/>\\n<path class='atom-7' d='M 104.345 52.3912\\nQ 104.345 51.3712, 104.849 50.8012\\nQ 105.353 50.2312, 106.295 50.2312\\nQ 107.237 50.2312, 107.741 50.8012\\nQ 108.245 51.3712, 108.245 52.3912\\nQ 108.245 53.4232, 107.735 54.0112\\nQ 107.225 54.5932, 106.295 54.5932\\nQ 105.359 54.5932, 104.849 54.0112\\nQ 104.345 53.4292, 104.345 52.3912\\nM 106.295 54.1132\\nQ 106.943 54.1132, 107.291 53.6812\\nQ 107.645 53.2432, 107.645 52.3912\\nQ 107.645 51.5572, 107.291 51.1372\\nQ 106.943 50.7112, 106.295 50.7112\\nQ 105.647 50.7112, 105.293 51.1312\\nQ 104.945 51.5512, 104.945 52.3912\\nQ 104.945 53.2492, 105.293 53.6812\\nQ 105.647 54.1132, 106.295 54.1132\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 94.7885 57.9139\\nQ 94.7885 56.8939, 95.2925 56.3239\\nQ 95.7965 55.7539, 96.7385 55.7539\\nQ 97.6805 55.7539, 98.1845 56.3239\\nQ 98.6885 56.8939, 98.6885 57.9139\\nQ 98.6885 58.9459, 98.1785 59.5339\\nQ 97.6685 60.1159, 96.7385 60.1159\\nQ 95.8025 60.1159, 95.2925 59.5339\\nQ 94.7885 58.9519, 94.7885 57.9139\\nM 96.7385 59.6359\\nQ 97.3865 59.6359, 97.7345 59.2039\\nQ 98.0885 58.7659, 98.0885 57.9139\\nQ 98.0885 57.0799, 97.7345 56.6599\\nQ 97.3865 56.2339, 96.7385 56.2339\\nQ 96.0905 56.2339, 95.7365 56.6539\\nQ 95.3885 57.0739, 95.3885 57.9139\\nQ 95.3885 58.7719, 95.7365 59.2039\\nQ 96.0905 59.6359, 96.7385 59.6359\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 79.3464 51.6499\\nL 79.9224 51.6499\\nL 79.9224 53.4559\\nL 82.0944 53.4559\\nL 82.0944 51.6499\\nL 82.6704 51.6499\\nL 82.6704 55.8979\\nL 82.0944 55.8979\\nL 82.0944 53.9359\\nL 79.9224 53.9359\\nL 79.9224 55.8979\\nL 79.3464 55.8979\\nL 79.3464 51.6499\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 83.8404 51.6499\\nL 85.2324 53.8999\\nQ 85.3704 54.1219, 85.5924 54.5239\\nQ 85.8144 54.9259, 85.8264 54.9499\\nL 85.8264 51.6499\\nL 86.3904 51.6499\\nL 86.3904 55.8979\\nL 85.8084 55.8979\\nL 84.3144 53.4379\\nQ 84.1404 53.1499, 83.9544 52.8199\\nQ 83.7744 52.4899, 83.7204 52.3879\\nL 83.7204 55.8979\\nL 83.1684 55.8979\\nL 83.1684 51.6499\\nL 83.8404 51.6499\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 92.3928 73.1105\\nQ 92.3928 72.0905, 92.8968 71.5205\\nQ 93.4008 70.9505, 94.3428 70.9505\\nQ 95.2848 70.9505, 95.7888 71.5205\\nQ 96.2928 72.0905, 96.2928 73.1105\\nQ 96.2928 74.1425, 95.7828 74.7305\\nQ 95.2728 75.3125, 94.3428 75.3125\\nQ 93.4068 75.3125, 92.8968 74.7305\\nQ 92.3928 74.1485, 92.3928 73.1105\\nM 94.3428 74.8325\\nQ 94.9908 74.8325, 95.3388 74.4005\\nQ 95.6928 73.9625, 95.6928 73.1105\\nQ 95.6928 72.2765, 95.3388 71.8565\\nQ 94.9908 71.4305, 94.3428 71.4305\\nQ 93.6948 71.4305, 93.3408 71.8505\\nQ 92.9928 72.2705, 92.9928 73.1105\\nQ 92.9928 73.9685, 93.3408 74.4005\\nQ 93.6948 74.8325, 94.3428 74.8325\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 67.3938 72.3683\\nL 67.9698 72.3683\\nL 67.9698 74.1743\\nL 70.1418 74.1743\\nL 70.1418 72.3683\\nL 70.7178 72.3683\\nL 70.7178 76.6163\\nL 70.1418 76.6163\\nL 70.1418 74.6543\\nL 67.9698 74.6543\\nL 67.9698 76.6163\\nL 67.3938 76.6163\\nL 67.3938 72.3683\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 71.8878 72.3683\\nL 73.2798 74.6183\\nQ 73.4178 74.8403, 73.6398 75.2423\\nQ 73.8618 75.6443, 73.8738 75.6683\\nL 73.8738 72.3683\\nL 74.4378 72.3683\\nL 74.4378 76.6163\\nL 73.8558 76.6163\\nL 72.3618 74.1563\\nQ 72.1878 73.8683, 72.0018 73.5383\\nQ 71.8218 73.2083, 71.7678 73.1063\\nL 71.7678 76.6163\\nL 71.2158 76.6163\\nL 71.2158 72.3683\\nL 71.8878 72.3683\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 225, "data-ID": 1133, "data-Solubility": -3.05, "data-SMILES": "c1ccccc1S(=O)(=O)NC(=O)NCCCC", "mols2grid-tooltip": "<strong>Name</strong>: Phenbutamide<br><strong>SMILES</strong>: c1ccccc1S(=O)(=O)NC(=O)NCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.05</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 147.505,114.545 L 147.531,96.1964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 147.531,96.1964 L 127.68,84.6808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.68,84.6808 L 127.714,61.7323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 127.714,61.7323 L 107.862,50.2167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.862,50.2167 L 107.862,27.2804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.274,46.7763 L 103.274,30.7209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 87.9987,61.6849 L 107.862,50.2167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 107.862,27.2804 L 123.753,18.1059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 107.862,27.2804 L 99.4485,22.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.4485,22.423 L 91.0354,17.5656' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.9619,17.5656 L 76.5489,22.423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 76.5489,22.423 L 68.1358,27.2804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.7317,22.9955 L 78.8425,26.3957' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.8425,26.3957 L 72.9534,29.7959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 68.1358,27.2804 L 59.7053,22.4365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 59.7053,22.4365 L 51.2749,17.5925' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 68.1358,27.2804 L 68.1358,36.838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 68.1358,36.838 L 68.1358,46.3956' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 45.2007,17.6065 L 36.7901,22.4779' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 36.7901,22.4779 L 28.3795,27.3492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 28.3795,27.3492 L 12.4694,18.2084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 71.1726,51.9701 L 79.5856,56.8275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 79.5856,56.8275 L 87.9987,61.6849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.9902,49.4546 L 81.8793,52.8548' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 81.8793,52.8548 L 87.7684,56.255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.9987,61.6849 L 87.9987,68.9878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.9987,68.9878 L 87.9987,76.2907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 86.5628 12.5645\\nL 88.6913 16.0049\\nQ 88.9023 16.3444, 89.2418 16.9591\\nQ 89.5813 17.5738, 89.5996 17.6105\\nL 89.5996 12.5645\\nL 90.462 12.5645\\nL 90.462 19.0601\\nL 89.5721 19.0601\\nL 87.2876 15.2985\\nQ 87.0216 14.8581, 86.7372 14.3535\\nQ 86.4619 13.8489, 86.3794 13.693\\nL 86.3794 19.0601\\nL 85.5353 19.0601\\nL 85.5353 12.5645\\nL 86.5628 12.5645\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 46.802 12.5997\\nL 48.9305 16.0401\\nQ 49.1415 16.3796, 49.4809 16.9943\\nQ 49.8204 17.609, 49.8388 17.6457\\nL 49.8388 12.5997\\nL 50.7012 12.5997\\nL 50.7012 19.0952\\nL 49.8112 19.0952\\nL 47.5268 15.3337\\nQ 47.2607 14.8933, 46.9763 14.3887\\nQ 46.7011 13.8841, 46.6185 13.7281\\nL 46.6185 19.0952\\nL 45.7744 19.0952\\nL 45.7744 12.5997\\nL 46.802 12.5997\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 45.6965 5.45455\\nL 46.5772 5.45455\\nL 46.5772 8.21608\\nL 49.8984 8.21608\\nL 49.8984 5.45455\\nL 50.7791 5.45455\\nL 50.7791 11.9501\\nL 49.8984 11.9501\\nL 49.8984 8.95004\\nL 46.5772 8.95004\\nL 46.5772 11.9501\\nL 45.6965 11.9501\\nL 45.6965 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 66.7 46.969\\nL 68.8285 50.4094\\nQ 69.0395 50.7489, 69.379 51.3636\\nQ 69.7184 51.9783, 69.7368 52.015\\nL 69.7368 46.969\\nL 70.5992 46.969\\nL 70.5992 53.4645\\nL 69.7092 53.4645\\nL 67.4248 49.703\\nQ 67.1587 49.2626, 66.8743 48.758\\nQ 66.5991 48.2534, 66.5165 48.0974\\nL 66.5165 53.4645\\nL 65.6725 53.4645\\nL 65.6725 46.969\\nL 66.7 46.969\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 85.0169 80.0523\\nQ 85.0169 78.4926, 85.7876 77.6211\\nQ 86.5583 76.7495, 87.9987 76.7495\\nQ 89.4391 76.7495, 90.2097 77.6211\\nQ 90.9804 78.4926, 90.9804 80.0523\\nQ 90.9804 81.6303, 90.2005 82.5294\\nQ 89.4207 83.4194, 87.9987 83.4194\\nQ 86.5674 83.4194, 85.7876 82.5294\\nQ 85.0169 81.6395, 85.0169 80.0523\\nM 87.9987 82.6854\\nQ 88.9895 82.6854, 89.5216 82.0248\\nQ 90.0629 81.3551, 90.0629 80.0523\\nQ 90.0629 78.777, 89.5216 78.1348\\nQ 88.9895 77.4834, 87.9987 77.4834\\nQ 87.0078 77.4834, 86.4665 78.1256\\nQ 85.9344 78.7679, 85.9344 80.0523\\nQ 85.9344 81.3643, 86.4665 82.0248\\nQ 87.0078 82.6854, 87.9987 82.6854\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 91.7602 76.8229\\nL 92.641 76.8229\\nL 92.641 79.5844\\nL 95.9621 79.5844\\nL 95.9621 76.8229\\nL 96.8429 76.8229\\nL 96.8429 83.3184\\nL 95.9621 83.3184\\nL 95.9621 80.3184\\nL 92.641 80.3184\\nL 92.641 83.3184\\nL 91.7602 83.3184\\nL 91.7602 76.8229\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 226, "data-ID": 1138, "data-Solubility": -3.02, "data-SMILES": "CCCCc1c(C)nc(NCC)nc1O", "mols2grid-tooltip": "<strong>Name</strong>: Ethirimol<br><strong>SMILES</strong>: CCCCc1c(C)nc(NCC)nc1O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.02</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.6744,65.1664 L 18.6744,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 22.7138,68.1903 L 22.7138,82.3018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-0' d='M 36.3764,55.0854 L 18.6744,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 18.6744,85.3257 L 36.3764,95.4067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.3764,95.4067 L 53.8321,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.9746,90.3966 L 49.1936,83.3399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.8321,85.3257 L 71.2877,95.4067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-3' d='M 53.8321,65.1664 L 53.8321,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.268,95.4067 L 69.268,101.837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.268,101.837 L 69.268,108.268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3074,95.4067 L 73.3074,101.837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3074,101.837 L 73.3074,108.268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 71.2877,95.4067 L 88.7446,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 88.7446,85.3257 L 94.4362,88.6118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.4362,88.6118 L 100.128,91.8979' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 90.7643,85.3257 L 86.7249,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 86.7249,85.3257 L 90.7643,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.7446,65.1664 L 96.1474,60.872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 96.1474,60.872 L 103.55,56.5776' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 88.7446,65.1664 L 71.2877,55.0854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.22,51.661 L 106.208,43.239' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.208,43.239 L 106.196,34.817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 107.203,33.0661 L 101.714,29.9099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 101.714,29.9099 L 96.2253,26.7536' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 105.189,36.5679 L 99.7006,33.4116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 99.7006,33.4116 L 94.2117,30.2554' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 106.196,34.817 L 123.676,24.6781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.676,24.6781 L 123.667,18.3705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.667,18.3705 L 123.658,12.063' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 123.676,24.6781 L 129.374,27.9545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 129.374,27.9545 L 135.073,31.2309' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 73.3074,55.0854 L 73.3074,48.6991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 73.3074,48.6991 L 73.3074,42.3128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 69.268,55.0854 L 69.268,48.6991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 69.268,48.6991 L 69.268,42.3128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 71.2877,55.0854 L 53.8321,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 53.8321,65.1664 L 36.3764,55.0854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 49.1936,67.1522 L 36.9746,60.0955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 68.6621 111.581\\nQ 68.6621 110.207, 69.3407 109.44\\nQ 70.0193 108.672, 71.2877 108.672\\nQ 72.556 108.672, 73.2347 109.44\\nQ 73.9133 110.207, 73.9133 111.581\\nQ 73.9133 112.97, 73.2266 113.762\\nQ 72.5399 114.545, 71.2877 114.545\\nQ 70.0274 114.545, 69.3407 113.762\\nQ 68.6621 112.978, 68.6621 111.581\\nM 71.2877 113.899\\nQ 72.1602 113.899, 72.6288 113.317\\nQ 73.1054 112.728, 73.1054 111.581\\nQ 73.1054 110.458, 72.6288 109.892\\nQ 72.1602 109.318, 71.2877 109.318\\nQ 70.4152 109.318, 69.9385 109.884\\nQ 69.4699 110.449, 69.4699 111.581\\nQ 69.4699 112.736, 69.9385 113.317\\nQ 70.4152 113.899, 71.2877 113.899\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 100.532 93.6025\\nQ 100.532 92.1806, 101.194 91.4374\\nQ 101.865 90.686, 103.133 90.686\\nQ 104.313 90.686, 104.943 91.5181\\nL 104.409 91.9544\\nQ 103.949 91.3485, 103.133 91.3485\\nQ 102.269 91.3485, 101.808 91.9302\\nQ 101.356 92.5038, 101.356 93.6025\\nQ 101.356 94.7335, 101.824 95.3152\\nQ 102.301 95.8969, 103.222 95.8969\\nQ 103.852 95.8969, 104.587 95.5172\\nL 104.813 96.1231\\nQ 104.514 96.317, 104.062 96.4301\\nQ 103.61 96.5432, 103.109 96.5432\\nQ 101.865 96.5432, 101.194 95.7838\\nQ 100.532 95.0243, 100.532 93.6025\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 105.637 90.3386\\nL 106.381 90.3386\\nL 106.381 96.4705\\nL 105.637 96.4705\\nL 105.637 90.3386\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 104.96 52.1662\\nL 106.834 55.1958\\nQ 107.02 55.4947, 107.319 56.036\\nQ 107.618 56.5773, 107.634 56.6096\\nL 107.634 52.1662\\nL 108.394 52.1662\\nL 108.394 57.886\\nL 107.61 57.886\\nL 105.598 54.5737\\nQ 105.364 54.1859, 105.114 53.7416\\nQ 104.871 53.2973, 104.799 53.1599\\nL 104.799 57.886\\nL 104.055 57.886\\nL 104.055 52.1662\\nL 104.96 52.1662\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 109.08 52.1662\\nL 109.856 52.1662\\nL 109.856 54.598\\nL 112.78 54.598\\nL 112.78 52.1662\\nL 113.556 52.1662\\nL 113.556 57.886\\nL 112.78 57.886\\nL 112.78 55.2443\\nL 109.856 55.2443\\nL 109.856 57.886\\nL 109.08 57.886\\nL 109.08 52.1662\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 89.5633 26.7786\\nQ 89.5633 25.4052, 90.2419 24.6377\\nQ 90.9205 23.8702, 92.1889 23.8702\\nQ 93.4573 23.8702, 94.1359 24.6377\\nQ 94.8145 25.4052, 94.8145 26.7786\\nQ 94.8145 28.1681, 94.1278 28.9599\\nQ 93.4411 29.7435, 92.1889 29.7435\\nQ 90.9286 29.7435, 90.2419 28.9599\\nQ 89.5633 28.1762, 89.5633 26.7786\\nM 92.1889 29.0972\\nQ 93.0614 29.0972, 93.53 28.5155\\nQ 94.0066 27.9258, 94.0066 26.7786\\nQ 94.0066 25.6556, 93.53 25.0901\\nQ 93.0614 24.5165, 92.1889 24.5165\\nQ 91.3164 24.5165, 90.8397 25.082\\nQ 90.3712 25.6475, 90.3712 26.7786\\nQ 90.3712 27.9338, 90.8397 28.5155\\nQ 91.3164 29.0972, 92.1889 29.0972\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 121.448 8.71839\\nQ 121.448 7.29651, 122.11 6.55326\\nQ 122.781 5.80193, 124.049 5.80193\\nQ 125.229 5.80193, 125.859 6.63405\\nL 125.326 7.07031\\nQ 124.865 6.4644, 124.049 6.4644\\nQ 123.185 6.4644, 122.724 7.04607\\nQ 122.272 7.61967, 122.272 8.71839\\nQ 122.272 9.84942, 122.74 10.4311\\nQ 123.217 11.0128, 124.138 11.0128\\nQ 124.768 11.0128, 125.503 10.6331\\nL 125.729 11.239\\nQ 125.431 11.4329, 124.978 11.546\\nQ 124.526 11.6591, 124.025 11.6591\\nQ 122.781 11.6591, 122.11 10.8997\\nQ 121.448 10.1403, 121.448 8.71839\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 126.553 5.45455\\nL 127.297 5.45455\\nL 127.297 11.5864\\nL 126.553 11.5864\\nL 126.553 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 135.477 32.9292\\nQ 135.477 31.5074, 136.139 30.7641\\nQ 136.81 30.0128, 138.078 30.0128\\nQ 139.257 30.0128, 139.888 30.8449\\nL 139.354 31.2812\\nQ 138.894 30.6753, 138.078 30.6753\\nQ 137.213 30.6753, 136.753 31.2569\\nQ 136.301 31.8305, 136.301 32.9292\\nQ 136.301 34.0603, 136.769 34.642\\nQ 137.246 35.2236, 138.167 35.2236\\nQ 138.797 35.2236, 139.532 34.8439\\nL 139.758 35.4498\\nQ 139.459 35.6437, 139.007 35.7568\\nQ 138.555 35.8699, 138.054 35.8699\\nQ 136.81 35.8699, 136.139 35.1105\\nQ 135.477 34.3511, 135.477 32.9292\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 140.582 29.6654\\nL 141.326 29.6654\\nL 141.326 35.7972\\nL 140.582 35.7972\\nL 140.582 29.6654\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 68.6621 38.9439\\nQ 68.6621 37.5705, 69.3407 36.803\\nQ 70.0193 36.0355, 71.2877 36.0355\\nQ 72.556 36.0355, 73.2347 36.803\\nQ 73.9133 37.5705, 73.9133 38.9439\\nQ 73.9133 40.3335, 73.2266 41.1252\\nQ 72.5399 41.9088, 71.2877 41.9088\\nQ 70.0274 41.9088, 69.3407 41.1252\\nQ 68.6621 40.3416, 68.6621 38.9439\\nM 71.2877 41.2625\\nQ 72.1602 41.2625, 72.6288 40.6809\\nQ 73.1054 40.0911, 73.1054 38.9439\\nQ 73.1054 37.821, 72.6288 37.2554\\nQ 72.1602 36.6819, 71.2877 36.6819\\nQ 70.4152 36.6819, 69.9385 37.2474\\nQ 69.4699 37.8129, 69.4699 38.9439\\nQ 69.4699 40.0992, 69.9385 40.6809\\nQ 70.4152 41.2625, 71.2877 41.2625\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 227, "data-ID": 1143, "data-Solubility": -5.03, "data-SMILES": "c1ccc2C(=O)C(Cl)=C(NC(=O)C(Cl)Cl)C(=O)c2c1", "mols2grid-tooltip": "<strong>Name</strong>: Quinonamid<br><strong>SMILES</strong>: c1ccc2C(=O)C(Cl)=C(NC(=O)C(Cl)Cl)C(=O)c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.03</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.906,65.779 L 137.36,61.4225' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 137.36,61.4225 L 129.814,57.0659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 142.126,70.5946 L 134.58,66.238' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.58,66.238 L 127.033,61.8814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.423,59.4736 L 128.423,31.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-1' d='M 104.347,73.3746 L 128.423,59.4736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 129.814,29.264 L 102.957,20.1785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.033,34.0794 L 105.737,15.3631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.347,17.7708 L 80.2706,31.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.2706,31.6717 L 56.8392,45.9471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-4 atom-13' d='M 80.2706,31.6717 L 80.2706,59.4736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-4 atom-15' d='M 80.2706,31.6717 L 80.4764,22.8836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-4 atom-15' d='M 80.4764,22.8836 L 80.6823,14.0954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.8392,45.9471 L 57.4953,73.7415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 51.3788,50.2475 L 51.838,69.7036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 32.4421,32.6188 L 56.8392,45.9471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.4953,73.7415 L 33.7543,88.2059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 33.7543,88.2059 L 9.3554,74.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.7601,81.3269 L 15.6809,71.9972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-12' d='M 33.7543,88.2059 L 33.9631,97.0553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-12' d='M 33.9631,97.0553 L 34.1718,105.905' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 9.3554,74.8777 L 8.69927,47.0832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 8.69927,47.0832 L 32.4421,32.6188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 15.1536,49.6622 L 31.7736,39.5371' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 32.4421,32.6188 L 32.234,23.8307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 32.234,23.8307 L 32.026,15.0425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 78.8805,61.8813 L 105.737,70.9669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 81.6607,57.0659 L 102.957,75.7823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 144.072 70.6166\\nQ 144.072 68.7261, 145.006 67.6696\\nQ 145.941 66.6131, 147.686 66.6131\\nQ 149.432 66.6131, 150.367 67.6696\\nQ 151.301 68.7261, 151.301 70.6166\\nQ 151.301 72.5294, 150.355 73.6192\\nQ 149.41 74.6979, 147.686 74.6979\\nQ 145.952 74.6979, 145.006 73.6192\\nQ 144.072 72.5405, 144.072 70.6166\\nM 147.686 73.8083\\nQ 148.888 73.8083, 149.533 73.0076\\nQ 150.189 72.1958, 150.189 70.6166\\nQ 150.189 69.0708, 149.533 68.2924\\nQ 148.888 67.5028, 147.686 67.5028\\nQ 146.485 67.5028, 145.829 68.2813\\nQ 145.184 69.0597, 145.184 70.6166\\nQ 145.184 72.2069, 145.829 73.0076\\nQ 146.485 73.8083, 147.686 73.8083\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 28.3015 10.4051\\nQ 28.3015 8.51461, 29.2356 7.45813\\nQ 30.1697 6.40166, 31.9157 6.40166\\nQ 33.6617 6.40166, 34.5958 7.45813\\nQ 35.53 8.51461, 35.53 10.4051\\nQ 35.53 12.3179, 34.5847 13.4077\\nQ 33.6394 14.4865, 31.9157 14.4865\\nQ 30.1809 14.4865, 29.2356 13.4077\\nQ 28.3015 12.329, 28.3015 10.4051\\nM 31.9157 13.5968\\nQ 33.1167 13.5968, 33.7618 12.7961\\nQ 34.4179 11.9843, 34.4179 10.4051\\nQ 34.4179 8.85935, 33.7618 8.0809\\nQ 33.1167 7.29132, 31.9157 7.29132\\nQ 30.7147 7.29132, 30.0585 8.06978\\nQ 29.4135 8.84823, 29.4135 10.4051\\nQ 29.4135 11.9954, 30.0585 12.7961\\nQ 30.7147 13.5968, 31.9157 13.5968\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 36.4752 6.49063\\nL 37.5428 6.49063\\nL 37.5428 9.83798\\nL 41.5685 9.83798\\nL 41.5685 6.49063\\nL 42.6361 6.49063\\nL 42.6361 14.3641\\nL 41.5685 14.3641\\nL 41.5685 10.7276\\nL 37.5428 10.7276\\nL 37.5428 14.3641\\nL 36.4752 14.3641\\nL 36.4752 6.49063\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 30.6646 110.464\\nQ 30.6646 108.574, 31.5988 107.517\\nQ 32.5329 106.461, 34.2789 106.461\\nQ 36.0248 106.461, 36.959 107.517\\nQ 37.8931 108.574, 37.8931 110.464\\nQ 37.8931 112.377, 36.9478 113.467\\nQ 36.0026 114.545, 34.2789 114.545\\nQ 32.544 114.545, 31.5988 113.467\\nQ 30.6646 112.388, 30.6646 110.464\\nM 34.2789 113.656\\nQ 35.4799 113.656, 36.1249 112.855\\nQ 36.781 112.043, 36.781 110.464\\nQ 36.781 108.918, 36.1249 108.14\\nQ 35.4799 107.35, 34.2789 107.35\\nQ 33.0778 107.35, 32.4217 108.129\\nQ 31.7767 108.907, 31.7767 110.464\\nQ 31.7767 112.054, 32.4217 112.855\\nQ 33.0778 113.656, 34.2789 113.656\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 38.8384 106.55\\nL 39.906 106.55\\nL 39.906 109.897\\nL 43.9317 109.897\\nL 43.9317 106.55\\nL 44.9993 106.55\\nL 44.9993 114.423\\nL 43.9317 114.423\\nL 43.9317 110.787\\nL 39.906 110.787\\nL 39.906 114.423\\nL 38.8384 114.423\\nL 38.8384 106.55\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 77.1772 9.45802\\nQ 77.1772 7.56749, 78.1113 6.51102\\nQ 79.0455 5.45455, 80.7914 5.45455\\nQ 82.5374 5.45455, 83.4715 6.51102\\nQ 84.4057 7.56749, 84.4057 9.45802\\nQ 84.4057 11.3708, 83.4604 12.4606\\nQ 82.5151 13.5393, 80.7914 13.5393\\nQ 79.0566 13.5393, 78.1113 12.4606\\nQ 77.1772 11.3819, 77.1772 9.45802\\nM 80.7914 12.6497\\nQ 81.9925 12.6497, 82.6375 11.849\\nQ 83.2936 11.0372, 83.2936 9.45802\\nQ 83.2936 7.91223, 82.6375 7.13378\\nQ 81.9925 6.34421, 80.7914 6.34421\\nQ 79.5904 6.34421, 78.9343 7.12266\\nQ 78.2893 7.90111, 78.2893 9.45802\\nQ 78.2893 11.0483, 78.9343 11.849\\nQ 79.5904 12.6497, 80.7914 12.6497\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 85.3509 5.54351\\nL 86.4185 5.54351\\nL 86.4185 8.89086\\nL 90.4442 8.89086\\nL 90.4442 5.54351\\nL 91.5118 5.54351\\nL 91.5118 13.417\\nL 90.4442 13.417\\nL 90.4442 9.78052\\nL 86.4185 9.78052\\nL 86.4185 13.417\\nL 85.3509 13.417\\nL 85.3509 5.54351\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 228, "data-ID": 1148, "data-Solubility": -1.73, "data-SMILES": "O=C1C=CC(c2cc(ccc2O)O)(C=C1)O", "mols2grid-tooltip": "<strong>Name</strong>: Quinhydrone<br><strong>SMILES</strong>: O=C1C=CC(c2cc(ccc2O)O)(C=C1)O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.73</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 15.8727,24.5704 L 15.8727,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.9232,28.3457 L 20.9232,45.9636' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-0' d='M 37.9721,11.6798 L 15.8727,24.5704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 15.8727,49.7389 L 37.9721,62.6295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 37.9721,62.6295 L 59.7651,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.6698,56.3489 L 53.9249,47.3255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.7651,49.7389 L 83.7062,57.4123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 59.7651,24.5704 L 59.7651,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 83.7062,57.4123 L 91.6473,81.3534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 83.7062,57.4123 L 98.4386,36.8482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 81.8105,51.3863 L 92.1231,36.9915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.6473,81.3534 L 116.39,86.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 116.39,86.4713 L 124.344,110.453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 116.39,86.4713 L 121.497,80.7332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 121.497,80.7332 L 126.604,74.9951' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.344,110.453 L 144.127,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 98.4386,36.8482 L 92.6216,28.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 92.6216,28.9705 L 86.8045,21.0928' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 80.3656,17.9677 L 70.0653,21.2691' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 70.0653,21.2691 L 59.7651,24.5704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 59.7651,24.5704 L 37.9721,11.6798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.9249,26.9838 L 38.6698,17.9604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 128.24 67.8046\\nL 130.583 71.5925\\nQ 130.816 71.9662, 131.19 72.643\\nQ 131.563 73.3197, 131.583 73.3601\\nL 131.583 67.8046\\nL 132.533 67.8046\\nL 132.533 74.9561\\nL 131.553 74.9561\\nL 129.038 70.8147\\nQ 128.745 70.3298, 128.432 69.7743\\nQ 128.129 69.2187, 128.038 69.047\\nL 128.038 74.9561\\nL 127.109 74.9561\\nL 127.109 67.8046\\nL 128.24 67.8046\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 133.392 67.8046\\nL 134.361 67.8046\\nL 134.361 70.845\\nL 138.018 70.845\\nL 138.018 67.8046\\nL 138.988 67.8046\\nL 138.988 74.9561\\nL 138.018 74.9561\\nL 138.018 71.6531\\nL 134.361 71.6531\\nL 134.361 74.9561\\nL 133.392 74.9561\\nL 133.392 67.8046\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 139.334 74.7052\\nQ 139.508 74.2585, 139.921 74.0119\\nQ 140.334 73.7585, 140.908 73.7585\\nQ 141.621 73.7585, 142.021 74.1452\\nQ 142.421 74.5319, 142.421 75.2185\\nQ 142.421 75.9185, 141.901 76.5719\\nQ 141.388 77.2252, 140.321 77.9985\\nL 142.501 77.9985\\nL 142.501 78.5319\\nL 139.321 78.5319\\nL 139.321 78.0852\\nQ 140.201 77.4585, 140.721 76.9919\\nQ 141.248 76.5252, 141.501 76.1052\\nQ 141.754 75.6852, 141.754 75.2519\\nQ 141.754 74.7985, 141.528 74.5452\\nQ 141.301 74.2919, 140.908 74.2919\\nQ 140.528 74.2919, 140.274 74.4452\\nQ 140.021 74.5985, 139.841 74.9385\\nL 139.334 74.7052\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 82.1254 13.3212\\nL 84.4689 17.1091\\nQ 84.7012 17.4829, 85.0749 18.1596\\nQ 85.4487 18.8364, 85.4689 18.8768\\nL 85.4689 13.3212\\nL 86.4184 13.3212\\nL 86.4184 20.4728\\nL 85.4386 20.4728\\nL 82.9234 16.3313\\nQ 82.6305 15.8465, 82.3173 15.2909\\nQ 82.0143 14.7354, 81.9234 14.5637\\nL 81.9234 20.4728\\nL 80.9941 20.4728\\nL 80.9941 13.3212\\nL 82.1254 13.3212\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 80.9083 5.45455\\nL 81.878 5.45455\\nL 81.878 8.49496\\nL 85.5345 8.49496\\nL 85.5345 5.45455\\nL 86.5042 5.45455\\nL 86.5042 12.6061\\nL 85.5345 12.6061\\nL 85.5345 9.30304\\nL 81.878 9.30304\\nL 81.878 12.6061\\nL 80.9083 12.6061\\nL 80.9083 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 229, "data-ID": 1153, "data-Solubility": -2.57, "data-SMILES": "c1ccc2c(CC(CC)N)cn(H)c2c1", "mols2grid-tooltip": "<strong>Name</strong>: Etryptamine<br><strong>SMILES</strong>: c1ccc2c(CC(CC)N)cn(H)c2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 92.0049,110.182 L 86.9474,107.262' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 86.9474,107.262 L 81.89,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.89,104.342 L 81.89,85.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 78.1635,101.547 L 78.1635,88.5046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-1 atom-13' d='M 81.89,104.342 L 65.7542,113.659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.89,85.7098 L 65.7542,76.3935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 81.89,85.7098 L 98.0158,76.355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.7542,76.3935 L 49.6184,85.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1971,81.0182 L 53.9021,87.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.6184,85.7098 L 49.6184,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 49.6184,104.342 L 44.561,107.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 44.561,107.262 L 39.5035,110.182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-5' d='M 65.7542,113.659 L 49.6184,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-5' d='M 65.1971,109.034 L 53.9021,102.513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 98.0158,76.355 L 97.9897,57.7125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.9897,57.7125 L 114.116,48.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 114.116,48.3578 L 114.089,29.7153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 114.089,29.7153 L 130.215,20.3606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 130.215,20.3606 L 130.193,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 92.3776 111.81\\nQ 92.3776 110.543, 93.0036 109.835\\nQ 93.6297 109.127, 94.7998 109.127\\nQ 95.9699 109.127, 96.596 109.835\\nQ 97.222 110.543, 97.222 111.81\\nQ 97.222 113.092, 96.5885 113.823\\nQ 95.955 114.545, 94.7998 114.545\\nQ 93.6371 114.545, 93.0036 113.823\\nQ 92.3776 113.1, 92.3776 111.81\\nM 94.7998 113.949\\nQ 95.6047 113.949, 96.037 113.413\\nQ 96.4767 112.869, 96.4767 111.81\\nQ 96.4767 110.774, 96.037 110.253\\nQ 95.6047 109.723, 94.7998 109.723\\nQ 93.9949 109.723, 93.5552 110.245\\nQ 93.1229 110.767, 93.1229 111.81\\nQ 93.1229 112.876, 93.5552 113.413\\nQ 93.9949 113.949, 94.7998 113.949\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 97.8555 109.187\\nL 98.571 109.187\\nL 98.571 111.43\\nL 101.269 111.43\\nL 101.269 109.187\\nL 101.985 109.187\\nL 101.985 114.463\\nL 101.269 114.463\\nL 101.269 112.026\\nL 98.571 112.026\\nL 98.571 114.463\\nL 97.8555 114.463\\nL 97.8555 109.187\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 29.7847 109.187\\nL 30.5002 109.187\\nL 30.5002 111.43\\nL 33.1982 111.43\\nL 33.1982 109.187\\nL 33.9137 109.187\\nL 33.9137 114.463\\nL 33.1982 114.463\\nL 33.1982 112.026\\nL 30.5002 112.026\\nL 30.5002 114.463\\nL 29.7847 114.463\\nL 29.7847 109.187\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 34.2864 111.81\\nQ 34.2864 110.543, 34.9124 109.835\\nQ 35.5385 109.127, 36.7086 109.127\\nQ 37.8787 109.127, 38.5048 109.835\\nQ 39.1308 110.543, 39.1308 111.81\\nQ 39.1308 113.092, 38.4973 113.823\\nQ 37.8638 114.545, 36.7086 114.545\\nQ 35.5459 114.545, 34.9124 113.823\\nQ 34.2864 113.1, 34.2864 111.81\\nM 36.7086 113.949\\nQ 37.5135 113.949, 37.9458 113.413\\nQ 38.3855 112.869, 38.3855 111.81\\nQ 38.3855 110.774, 37.9458 110.253\\nQ 37.5135 109.723, 36.7086 109.723\\nQ 35.9037 109.723, 35.4639 110.245\\nQ 35.0317 110.767, 35.0317 111.81\\nQ 35.0317 112.876, 35.4639 113.413\\nQ 35.9037 113.949, 36.7086 113.949\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 230, "data-ID": 1158, "data-Solubility": -2.59, "data-SMILES": "Oc(c(ccc1O)CCCCCC)c1", "mols2grid-tooltip": "<strong>Name</strong>: 4-Hexylresorcinol<br><strong>SMILES</strong>: Oc(c(ccc1O)CCCCCC)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.59</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.846,36.9638 L 101.359,33.7962' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.359,33.7962 L 95.872,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.872,30.6286 L 95.872,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.5154,28.1112 L 92.5154,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 81.3381,39.0199 L 95.872,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.872,13.8459 L 81.3381,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.3381,5.45455 L 66.8043,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.8364,9.62008 L 70.6627,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.8043,13.8459 L 66.8043,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8043,30.6286 L 81.3381,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.6627,28.9805 L 80.8364,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 81.3381,39.0199 L 81.3035,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.4618,57.2636 L 85.011,59.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 85.011,59.9006 L 89.5603,62.5376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 82.1451,54.3596 L 86.6943,56.9966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 86.6943,56.9966 L 91.2436,59.6336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 81.3035,55.8116 L 75.1376,59.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 75.1376,59.36 L 68.9718,62.9084' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.7437,66.9835 L 66.7293,73.9812' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.7293,73.9812 L 66.7148,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 66.7148,80.9789 L 52.181,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 66.2132,85.1445 L 56.0395,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-10' d='M 81.2498,89.3714 L 66.7148,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 52.181,89.3714 L 52.181,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.181,106.154 L 66.7148,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 56.0394,104.506 L 66.213,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 66.7148,114.545 L 81.2486,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.2486,106.154 L 81.2498,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 77.8923,103.636 L 77.893,91.8886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.181 34.9552\\nL 107.819 34.9552\\nL 107.819 39.7282\\nL 107.181 39.7282\\nL 107.181 34.9552\\n' fill='#A01EEF'/>\\n<path class='atom-8' d='M 90.7376 62.5582\\nQ 90.7376 61.417, 91.3015 60.7793\\nQ 91.8654 60.1415, 92.9193 60.1415\\nQ 93.9733 60.1415, 94.5372 60.7793\\nQ 95.1011 61.417, 95.1011 62.5582\\nQ 95.1011 63.7129, 94.5305 64.3708\\nQ 93.9599 65.0219, 92.9193 65.0219\\nQ 91.8721 65.0219, 91.3015 64.3708\\nQ 90.7376 63.7196, 90.7376 62.5582\\nM 92.9193 64.4849\\nQ 93.6443 64.4849, 94.0337 64.0016\\nQ 94.4298 63.5115, 94.4298 62.5582\\nQ 94.4298 61.6251, 94.0337 61.1552\\nQ 93.6443 60.6786, 92.9193 60.6786\\nQ 92.1943 60.6786, 91.7982 61.1485\\nQ 91.4089 61.6184, 91.4089 62.5582\\nQ 91.4089 63.5182, 91.7982 64.0016\\nQ 92.1943 64.4849, 92.9193 64.4849\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 60.6708 61.8109\\nL 61.3153 61.8109\\nL 61.3153 63.8315\\nL 63.7454 63.8315\\nL 63.7454 61.8109\\nL 64.3899 61.8109\\nL 64.3899 66.5637\\nL 63.7454 66.5637\\nL 63.7454 64.3685\\nL 61.3153 64.3685\\nL 61.3153 66.5637\\nL 60.6708 66.5637\\nL 60.6708 61.8109\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 65.6989 61.8109\\nL 67.2563 64.3283\\nQ 67.4107 64.5766, 67.6591 65.0264\\nQ 67.9075 65.4762, 67.9209 65.503\\nL 67.9209 61.8109\\nL 68.552 61.8109\\nL 68.552 66.5637\\nL 67.9008 66.5637\\nL 66.2292 63.8114\\nQ 66.0346 63.4891, 65.8265 63.1199\\nQ 65.6251 62.7507, 65.5646 62.6366\\nL 65.5646 66.5637\\nL 64.947 66.5637\\nL 64.947 61.8109\\nL 65.6989 61.8109\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 231, "data-ID": 1163, "data-Solubility": -4.21, "data-SMILES": "Ic1ccccc1C(=O)Nc2ccccc2", "mols2grid-tooltip": "<strong>Name</strong>: Benodanil<br><strong>SMILES</strong>: Ic1ccccc1C(=O)Nc2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.21</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.973,114.545 L 121.073,107.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.073,107.061 L 121.099,88.4096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.099,88.4096 L 104.965,79.0501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.965,79.0501 L 104.977,71.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.977,71.2772 L 104.988,63.5043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.461,58.9856 L 114.321,55.0594' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.321,55.0594 L 121.181,51.1333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 102.524,58.9664 L 95.6907,55.0026' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 95.6907,55.0026 L 88.8574,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 121.181,51.1333 L 134.073,58.6311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 88.8574,51.0389 L 88.8574,32.397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 85.129,48.2426 L 85.129,35.1933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 72.7135,60.3598 L 88.8574,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.8574,32.397 L 72.7135,23.0761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-8 atom-20' d='M 88.8574,32.397 L 95.6901,28.4333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-8 atom-20' d='M 95.6901,28.4333 L 102.523,24.4695' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 72.7135,23.0761 L 56.5697,32.397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 72.1562,27.7031 L 60.8555,34.2277' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 56.5697,32.397 L 56.5697,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-10 atom-16' d='M 56.5697,32.397 L 40.4159,23.0711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 56.5697,51.0389 L 72.7135,60.3598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 60.8555,49.2082 L 72.1562,55.7328' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.7135,60.3598 L 72.6975,68.1327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.6975,68.1327 L 72.6814,75.9056' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 70.3,80.3784 L 66.8594,82.3586' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 66.8594,82.3586 L 63.4187,84.3388' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 74.1151,82.0011 L 78.0151,84.2617' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 78.0151,84.2617 L 81.9151,86.5224' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 75.9849,78.7754 L 79.8849,81.0361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 79.8849,81.0361 L 83.7849,83.2968' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 40.4159,23.0711 L 40.4119,17.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 40.4119,17.1206 L 40.4079,11.1701' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 40.4159,23.0711 L 34.9308,26.2402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 34.9308,26.2402 L 29.4458,29.4093' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 40.4159,23.0711 L 34.9277,19.906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 34.9277,19.906 L 29.4395,16.7408' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 104.987,20.025 L 104.981,15.5991' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 104.981,15.5991 L 104.974,11.1731' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 106.437,26.0193 L 110.35,28.2693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 110.35,28.2693 L 114.263,30.5194' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 108.296,22.7872 L 112.209,25.0372' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 112.209,25.0372 L 116.122,27.2873' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 103.826 57.7586\\nL 105.556 60.5549\\nQ 105.727 60.8308, 106.003 61.3304\\nQ 106.279 61.83, 106.294 61.8598\\nL 106.294 57.7586\\nL 106.995 57.7586\\nL 106.995 63.038\\nL 106.271 63.038\\nL 104.415 59.9807\\nQ 104.198 59.6228, 103.967 59.2127\\nQ 103.744 58.8026, 103.676 58.6758\\nL 103.676 63.038\\nL 102.99 63.038\\nL 102.99 57.7586\\nL 103.826 57.7586\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 71.508 76.3719\\nL 73.238 79.1682\\nQ 73.4095 79.4441, 73.6854 79.9437\\nQ 73.9613 80.4433, 73.9762 80.4731\\nL 73.9762 76.3719\\nL 74.6771 76.3719\\nL 74.6771 81.6513\\nL 73.9538 81.6513\\nL 72.0971 78.594\\nQ 71.8808 78.2361, 71.6497 77.826\\nQ 71.426 77.4158, 71.3589 77.2891\\nL 71.3589 81.6513\\nL 70.6729 81.6513\\nL 70.6729 76.3719\\nL 71.508 76.3719\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 75.1201 77.3235\\nL 76.0502 77.3235\\nL 76.0502 76.3442\\nL 76.4636 76.3442\\nL 76.4636 77.3235\\nL 77.4184 77.3235\\nL 77.4184 77.6779\\nL 76.4636 77.6779\\nL 76.4636 78.6622\\nL 76.0502 78.6622\\nL 76.0502 77.6779\\nL 75.1201 77.6779\\nL 75.1201 77.3235\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 57.3253 86.4658\\nQ 57.3253 85.1982, 57.9517 84.4898\\nQ 58.578 83.7814, 59.7487 83.7814\\nQ 60.9194 83.7814, 61.5458 84.4898\\nQ 62.1722 85.1982, 62.1722 86.4658\\nQ 62.1722 87.7484, 61.5383 88.4792\\nQ 60.9045 89.2025, 59.7487 89.2025\\nQ 58.5855 89.2025, 57.9517 88.4792\\nQ 57.3253 87.7559, 57.3253 86.4658\\nM 59.7487 88.6059\\nQ 60.5541 88.6059, 60.9865 88.069\\nQ 61.4265 87.5247, 61.4265 86.4658\\nQ 61.4265 85.4294, 60.9865 84.9074\\nQ 60.5541 84.378, 59.7487 84.378\\nQ 58.9434 84.378, 58.5035 84.8999\\nQ 58.071 85.4219, 58.071 86.4658\\nQ 58.071 87.5322, 58.5035 88.069\\nQ 58.9434 88.6059, 59.7487 88.6059\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 62.4182 84.6431\\nL 64.2244 84.6431\\nL 64.2244 85.0368\\nL 62.4182 85.0368\\nL 62.4182 84.6431\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 83.1542 86.5056\\nQ 83.1542 85.238, 83.7806 84.5296\\nQ 84.4069 83.8212, 85.5776 83.8212\\nQ 86.7484 83.8212, 87.3747 84.5296\\nQ 88.0011 85.238, 88.0011 86.5056\\nQ 88.0011 87.7882, 87.3673 88.5189\\nQ 86.7334 89.2422, 85.5776 89.2422\\nQ 84.4144 89.2422, 83.7806 88.5189\\nQ 83.1542 87.7956, 83.1542 86.5056\\nM 85.5776 88.6457\\nQ 86.383 88.6457, 86.8155 88.1088\\nQ 87.2554 87.5645, 87.2554 86.5056\\nQ 87.2554 85.4691, 86.8155 84.9472\\nQ 86.383 84.4177, 85.5776 84.4177\\nQ 84.7723 84.4177, 84.3324 84.9397\\nQ 83.8999 85.4617, 83.8999 86.5056\\nQ 83.8999 87.5719, 84.3324 88.1088\\nQ 84.7723 88.6457, 85.5776 88.6457\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 38.8363 5.51793\\nL 41.9756 5.51793\\nL 41.9756 6.12192\\nL 39.5447 6.12192\\nL 39.5447 7.72512\\nL 41.7071 7.72512\\nL 41.7071 8.33658\\nL 39.5447 8.33658\\nL 39.5447 10.7973\\nL 38.8363 10.7973\\nL 38.8363 5.51793\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 25.9336 27.8919\\nL 29.0729 27.8919\\nL 29.0729 28.4959\\nL 26.642 28.4959\\nL 26.642 30.0991\\nL 28.8045 30.0991\\nL 28.8045 30.7105\\nL 26.642 30.7105\\nL 26.642 33.1713\\nL 25.9336 33.1713\\nL 25.9336 27.8919\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 25.9274 12.9809\\nL 29.0667 12.9809\\nL 29.0667 13.5849\\nL 26.6358 13.5849\\nL 26.6358 15.1881\\nL 28.7983 15.1881\\nL 28.7983 15.7995\\nL 26.6358 15.7995\\nL 26.6358 18.2603\\nL 25.9274 18.2603\\nL 25.9274 12.9809\\n' fill='#33CCCC'/>\\n<path class='atom-20' d='M 103.824 20.3979\\nL 105.554 23.1941\\nQ 105.726 23.47, 106.002 23.9696\\nQ 106.278 24.4692, 106.292 24.4991\\nL 106.292 20.3979\\nL 106.993 20.3979\\nL 106.993 25.6772\\nL 106.27 25.6772\\nL 104.413 22.62\\nQ 104.197 22.262, 103.966 21.8519\\nQ 103.742 21.4418, 103.675 21.315\\nL 103.675 25.6772\\nL 102.989 25.6772\\nL 102.989 20.3979\\nL 103.824 20.3979\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 107.436 21.3495\\nL 108.366 21.3495\\nL 108.366 20.3701\\nL 108.78 20.3701\\nL 108.78 21.3495\\nL 109.735 21.3495\\nL 109.735 21.7038\\nL 108.78 21.7038\\nL 108.78 22.6881\\nL 108.366 22.6881\\nL 108.366 21.7038\\nL 107.436 21.7038\\nL 107.436 21.3495\\n' fill='#0000FF'/>\\n<path class='atom-21' d='M 102.547 8.13897\\nQ 102.547 6.87133, 103.173 6.16294\\nQ 103.799 5.45455, 104.97 5.45455\\nQ 106.141 5.45455, 106.767 6.16294\\nQ 107.394 6.87133, 107.394 8.13897\\nQ 107.394 9.42153, 106.76 10.1523\\nQ 106.126 10.8756, 104.97 10.8756\\nQ 103.807 10.8756, 103.173 10.1523\\nQ 102.547 9.42899, 102.547 8.13897\\nM 104.97 10.2791\\nQ 105.775 10.2791, 106.208 9.74217\\nQ 106.648 9.19783, 106.648 8.13897\\nQ 106.648 7.10249, 106.208 6.58051\\nQ 105.775 6.05108, 104.97 6.05108\\nQ 104.165 6.05108, 103.725 6.57306\\nQ 103.292 7.09503, 103.292 8.13897\\nQ 103.292 9.20529, 103.725 9.74217\\nQ 104.165 10.2791, 104.97 10.2791\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 107.64 6.31625\\nL 109.446 6.31625\\nL 109.446 6.70996\\nL 107.64 6.70996\\nL 107.64 6.31625\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 115.497 30.4868\\nQ 115.497 29.2192, 116.123 28.5108\\nQ 116.749 27.8024, 117.92 27.8024\\nQ 119.091 27.8024, 119.717 28.5108\\nQ 120.343 29.2192, 120.343 30.4868\\nQ 120.343 31.7694, 119.71 32.5002\\nQ 119.076 33.2235, 117.92 33.2235\\nQ 116.757 33.2235, 116.123 32.5002\\nQ 115.497 31.7768, 115.497 30.4868\\nM 117.92 32.6269\\nQ 118.725 32.6269, 119.158 32.09\\nQ 119.598 31.5457, 119.598 30.4868\\nQ 119.598 29.4503, 119.158 28.9284\\nQ 118.725 28.3989, 117.92 28.3989\\nQ 117.115 28.3989, 116.675 28.9209\\nQ 116.242 29.4429, 116.242 30.4868\\nQ 116.242 31.5531, 116.675 32.09\\nQ 117.115 32.6269, 117.92 32.6269\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 232, "data-ID": 1168, "data-Solubility": -5.53, "data-SMILES": "CCCCN(CC)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O", "mols2grid-tooltip": "<strong>Name</strong>: Benfluralin<br><strong>SMILES</strong>: CCCCN(CC)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.53</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.98,102.386 L 140.003,86.0818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.003,86.0818 L 122.365,75.8498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 122.365,75.8498 L 122.395,55.4593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 122.395,55.4593 L 104.756,45.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.756,45.2273 L 104.756,24.8476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.68,42.1703 L 100.68,27.9046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 87.1071,55.4171 L 104.756,45.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.756,24.8476 L 118.876,16.6957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 104.756,24.8476 L 97.2806,20.5316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.2806,20.5316 L 89.8053,16.2156' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.4088,16.2156 L 76.9335,20.5316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 76.9335,20.5316 L 69.4583,24.8476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.2043,21.0403 L 78.9716,24.0615' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.9716,24.0615 L 73.7389,27.0826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 69.4583,24.8476 L 61.9675,20.5436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 61.9675,20.5436 L 54.4767,16.2395' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 69.4583,24.8476 L 69.4583,33.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 69.4583,33.3398 L 69.4583,41.832' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.0796,16.252 L 41.6065,20.5804' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 41.6065,20.5804 L 34.1334,24.9087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 34.1334,24.9087 L 19.9967,16.7867' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 72.1565,46.7852 L 79.6318,51.1012' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 79.6318,51.1012 L 87.1071,55.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 76.4371,44.5501 L 81.6698,47.5713' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 81.6698,47.5713 L 86.9025,50.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.1071,55.4171 L 87.0896,63.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.0896,63.8984 L 87.072,72.3796' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 83.9058,77.6258 L 77.7833,81.1492' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 77.7833,81.1492 L 71.6608,84.6727' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 68.1556,82.9065 L 63.7278,80.3398' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 63.7278,80.3398 L 59.3,77.7732' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 66.1116,86.4328 L 61.6837,83.8662' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 61.6837,83.8662 L 57.2559,81.2995' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 71.4349,82.6966 L 71.4425,77.854' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 71.4425,77.854 L 71.4502,73.0115' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 67.3589,82.6901 L 67.3666,77.8476' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 67.3666,77.8476 L 67.3743,73.0051' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 69.3844,89.5208 L 69.3704,96.2915' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 69.3704,96.2915 L 69.3564,103.062' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 66.7532,107.863 L 60.9857,111.182' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 60.9857,111.182 L 55.2183,114.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 71.9459,107.874 L 77.7005,111.21' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 77.7005,111.21 L 83.455,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 85.8313 11.772\\nL 87.7225 14.8289\\nQ 87.91 15.1306, 88.2117 15.6767\\nQ 88.5133 16.2229, 88.5296 16.2555\\nL 88.5296 11.772\\nL 89.2959 11.772\\nL 89.2959 17.5435\\nL 88.5051 17.5435\\nL 86.4753 14.2012\\nQ 86.2389 13.81, 85.9862 13.3616\\nQ 85.7416 12.9132, 85.6683 12.7747\\nL 85.6683 17.5435\\nL 84.9183 17.5435\\nL 84.9183 11.772\\nL 85.8313 11.772\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 50.5024 11.8032\\nL 52.3937 14.8602\\nQ 52.5812 15.1618, 52.8828 15.708\\nQ 53.1844 16.2542, 53.2007 16.2868\\nL 53.2007 11.8032\\nL 53.967 11.8032\\nL 53.967 17.5748\\nL 53.1762 17.5748\\nL 51.1464 14.2325\\nQ 50.91 13.8412, 50.6573 13.3928\\nQ 50.4128 12.9445, 50.3394 12.8059\\nL 50.3394 17.5748\\nL 49.5894 17.5748\\nL 49.5894 11.8032\\nL 50.5024 11.8032\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 49.5201 5.45455\\nL 50.3027 5.45455\\nL 50.3027 7.90826\\nL 53.2537 7.90826\\nL 53.2537 5.45455\\nL 54.0363 5.45455\\nL 54.0363 11.2261\\nL 53.2537 11.2261\\nL 53.2537 8.56041\\nL 50.3027 8.56041\\nL 50.3027 11.2261\\nL 49.5201 11.2261\\nL 49.5201 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 68.1825 42.3415\\nL 70.0737 45.3985\\nQ 70.2612 45.7001, 70.5628 46.2463\\nQ 70.8645 46.7925, 70.8808 46.8251\\nL 70.8808 42.3415\\nL 71.647 42.3415\\nL 71.647 48.1131\\nL 70.8563 48.1131\\nL 68.8265 44.7708\\nQ 68.5901 44.3795, 68.3374 43.9311\\nQ 68.0928 43.4828, 68.0195 43.3442\\nL 68.0195 48.1131\\nL 67.2695 48.1131\\nL 67.2695 42.3415\\nL 68.1825 42.3415\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 84.4156 75.824\\nQ 84.4156 74.4382, 85.1004 73.6638\\nQ 85.7851 72.8893, 87.065 72.8893\\nQ 88.3448 72.8893, 89.0296 73.6638\\nQ 89.7143 74.4382, 89.7143 75.824\\nQ 89.7143 77.2261, 89.0214 78.025\\nQ 88.3285 78.8158, 87.065 78.8158\\nQ 85.7933 78.8158, 85.1004 78.025\\nQ 84.4156 77.2343, 84.4156 75.824\\nM 87.065 78.1636\\nQ 87.9454 78.1636, 88.4182 77.5767\\nQ 88.8991 76.9816, 88.8991 75.824\\nQ 88.8991 74.6909, 88.4182 74.1203\\nQ 87.9454 73.5415, 87.065 73.5415\\nQ 86.1846 73.5415, 85.7036 74.1121\\nQ 85.2308 74.6828, 85.2308 75.824\\nQ 85.2308 76.9897, 85.7036 77.5767\\nQ 86.1846 78.1636, 87.065 78.1636\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 67.7613 87.9595\\nQ 67.8265 87.9839, 68.0955 88.098\\nQ 68.3645 88.2122, 68.658 88.2855\\nQ 68.9596 88.3507, 69.2531 88.3507\\nQ 69.7993 88.3507, 70.1172 88.0899\\nQ 70.4351 87.8209, 70.4351 87.3562\\nQ 70.4351 87.0383, 70.2721 86.8426\\nQ 70.1172 86.647, 69.8726 86.541\\nQ 69.6281 86.4351, 69.2205 86.3128\\nQ 68.7069 86.1579, 68.3972 86.0112\\nQ 68.0955 85.8644, 67.8754 85.5547\\nQ 67.6635 85.2449, 67.6635 84.7232\\nQ 67.6635 83.9976, 68.1526 83.5493\\nQ 68.6499 83.1009, 69.6281 83.1009\\nQ 70.2965 83.1009, 71.0547 83.4189\\nL 70.8672 84.0466\\nQ 70.1743 83.7612, 69.6525 83.7612\\nQ 69.0901 83.7612, 68.7803 83.9976\\nQ 68.4705 84.2259, 68.4787 84.6253\\nQ 68.4787 84.9351, 68.6336 85.1226\\nQ 68.7966 85.3101, 69.0249 85.4161\\nQ 69.2613 85.522, 69.6525 85.6443\\nQ 70.1743 85.8074, 70.484 85.9704\\nQ 70.7938 86.1334, 71.0139 86.4677\\nQ 71.2422 86.7937, 71.2422 87.3562\\nQ 71.2422 88.1551, 70.7041 88.5872\\nQ 70.1743 89.011, 69.2857 89.011\\nQ 68.7721 89.011, 68.3809 88.8969\\nQ 67.9977 88.7909, 67.5412 88.6035\\nL 67.7613 87.9595\\n' fill='#CCCC00'/>\\n<path class='atom-16' d='M 52.6369 77.8185\\nQ 52.6369 76.4327, 53.3216 75.6583\\nQ 54.0064 74.8838, 55.2862 74.8838\\nQ 56.5661 74.8838, 57.2508 75.6583\\nQ 57.9356 76.4327, 57.9356 77.8185\\nQ 57.9356 79.2206, 57.2427 80.0195\\nQ 56.5498 80.8103, 55.2862 80.8103\\nQ 54.0145 80.8103, 53.3216 80.0195\\nQ 52.6369 79.2288, 52.6369 77.8185\\nM 55.2862 80.1581\\nQ 56.1666 80.1581, 56.6394 79.5712\\nQ 57.1204 78.9761, 57.1204 77.8185\\nQ 57.1204 76.6854, 56.6394 76.1148\\nQ 56.1666 75.536, 55.2862 75.536\\nQ 54.4058 75.536, 53.9249 76.1066\\nQ 53.452 76.6773, 53.452 77.8185\\nQ 53.452 78.9842, 53.9249 79.5712\\nQ 54.4058 80.1581, 55.2862 80.1581\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 66.7681 69.6911\\nQ 66.7681 68.3053, 67.4529 67.5308\\nQ 68.1377 66.7564, 69.4175 66.7564\\nQ 70.6973 66.7564, 71.3821 67.5308\\nQ 72.0669 68.3053, 72.0669 69.6911\\nQ 72.0669 71.0932, 71.374 71.8921\\nQ 70.681 72.6828, 69.4175 72.6828\\nQ 68.1458 72.6828, 67.4529 71.8921\\nQ 66.7681 71.1014, 66.7681 69.6911\\nM 69.4175 72.0307\\nQ 70.2979 72.0307, 70.7707 71.4437\\nQ 71.2517 70.8487, 71.2517 69.6911\\nQ 71.2517 68.558, 70.7707 67.9873\\nQ 70.2979 67.4086, 69.4175 67.4086\\nQ 68.5371 67.4086, 68.0561 67.9792\\nQ 67.5833 68.5498, 67.5833 69.6911\\nQ 67.5833 70.8568, 68.0561 71.4437\\nQ 68.5371 72.0307, 69.4175 72.0307\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 68.0738 103.483\\nL 69.965 106.54\\nQ 70.1525 106.842, 70.4541 107.388\\nQ 70.7558 107.934, 70.7721 107.967\\nL 70.7721 103.483\\nL 71.5383 103.483\\nL 71.5383 109.255\\nL 70.7476 109.255\\nL 68.7178 105.913\\nQ 68.4814 105.521, 68.2287 105.073\\nQ 67.9841 104.625, 67.9108 104.486\\nL 67.9108 109.255\\nL 67.1608 109.255\\nL 67.1608 103.483\\nL 68.0738 103.483\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 233, "data-ID": 1173, "data-Solubility": -4.16, "data-SMILES": "CCCCc1c(C)nc(NCC)nc1OS(=O)(=O)N(C)C", "mols2grid-tooltip": "<strong>Name</strong>: Bupirimate<br><strong>SMILES</strong>: CCCCc1c(C)nc(NCC)nc1OS(=O)(=O)N(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.16</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 145.309,102.484 L 138.557,98.5853' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 138.557,98.5853 L 131.804,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.804,94.6868 L 131.804,70.7269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.012,91.0928 L 127.012,74.3209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 111.055,106.667 L 131.804,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.804,70.7269 L 111.055,58.7469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 111.055,58.7469 L 90.3052,70.7269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.338,64.6938 L 95.8136,73.0798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.3052,70.7269 L 90.3052,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 90.3052,70.7269 L 69.5191,58.7836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 90.3052,94.6868 L 111.055,106.667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8136,92.3339 L 110.338,100.72' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 69.5191,58.7836 L 48.7746,70.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-7 atom-15' d='M 69.5191,58.7836 L 69.4265,34.8093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 48.7746,70.7988 L 48.856,94.7603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 43.9948,74.4093 L 44.0519,91.1824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 27.9821,58.8923 L 48.7746,70.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 48.856,94.7603 L 28.1482,106.812' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 28.1482,106.812 L 7.35579,94.9041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 27.4109,100.868 L 12.8562,92.532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 7.35579,94.9041 L 7.27273,70.9441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 7.27273,70.9441 L 27.9821,58.8923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 12.7894,73.278 L 27.286,64.8417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 27.9821,58.8923 L 27.9559,51.4096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 27.9559,51.4096 L 27.9297,43.9269' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 69.4265,34.8093 L 61.5716,30.3073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 61.5716,30.3073 L 53.7167,25.8053' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 69.4265,34.8093 L 69.4022,27.3274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 69.4022,27.3274 L 69.3778,19.8455' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-15 atom-18' d='M 69.4265,34.8093 L 76.1624,30.8893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-15 atom-18' d='M 76.1624,30.8893 L 82.8983,26.9693' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.788 104.506\\nQ 145.788 102.819, 146.574 101.937\\nQ 147.37 101.046, 148.875 101.046\\nQ 150.274 101.046, 151.021 102.033\\nL 150.389 102.55\\nQ 149.842 101.832, 148.875 101.832\\nQ 147.849 101.832, 147.303 102.522\\nQ 146.766 103.202, 146.766 104.506\\nQ 146.766 105.847, 147.322 106.537\\nQ 147.887 107.227, 148.98 107.227\\nQ 149.727 107.227, 150.6 106.777\\nL 150.868 107.496\\nQ 150.513 107.726, 149.977 107.86\\nQ 149.44 107.994, 148.846 107.994\\nQ 147.37 107.994, 146.574 107.093\\nQ 145.788 106.192, 145.788 104.506\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 151.846 100.634\\nL 152.727 100.634\\nL 152.727 107.908\\nL 151.846 107.908\\nL 151.846 100.634\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 25.2986 39.9591\\nQ 25.2986 38.2723, 26.0845 37.3906\\nQ 26.88 36.4993, 28.3846 36.4993\\nQ 29.7839 36.4993, 30.5315 37.4864\\nL 29.8989 38.004\\nQ 29.3526 37.2852, 28.3846 37.2852\\nQ 27.3592 37.2852, 26.8129 37.9752\\nQ 26.2762 38.6557, 26.2762 39.9591\\nQ 26.2762 41.3008, 26.832 41.9909\\nQ 27.3975 42.6809, 28.4901 42.6809\\nQ 29.2376 42.6809, 30.1098 42.2305\\nL 30.3781 42.9493\\nQ 30.0235 43.1793, 29.4868 43.3135\\nQ 28.9501 43.4477, 28.3559 43.4477\\nQ 26.88 43.4477, 26.0845 42.5468\\nQ 25.2986 41.6459, 25.2986 39.9591\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 31.3557 36.0872\\nL 32.2374 36.0872\\nL 32.2374 43.3614\\nL 31.3557 43.3614\\nL 31.3557 36.0872\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 46.2987 25.5128\\nQ 46.2987 23.826, 47.0846 22.9443\\nQ 47.8801 22.053, 49.3848 22.053\\nQ 50.784 22.053, 51.5316 23.0402\\nL 50.899 23.5577\\nQ 50.3527 22.8389, 49.3848 22.8389\\nQ 48.3593 22.8389, 47.813 23.5289\\nQ 47.2763 24.2094, 47.2763 25.5128\\nQ 47.2763 26.8546, 47.8322 27.5446\\nQ 48.3976 28.2347, 49.4902 28.2347\\nQ 50.2377 28.2347, 51.1099 27.7842\\nL 51.3782 28.503\\nQ 51.0236 28.733, 50.4869 28.8672\\nQ 49.9502 29.0014, 49.356 29.0014\\nQ 47.8801 29.0014, 47.0846 28.1005\\nQ 46.2987 27.1996, 46.2987 25.5128\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 52.3558 21.6409\\nL 53.2375 21.6409\\nL 53.2375 28.9151\\nL 52.3558 28.9151\\nL 52.3558 21.6409\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 66.7477 15.8777\\nQ 66.7477 14.1909, 67.5336 13.3092\\nQ 68.3291 12.4179, 69.8338 12.4179\\nQ 71.233 12.4179, 71.9806 13.4051\\nL 71.3481 13.9226\\nQ 70.8018 13.2038, 69.8338 13.2038\\nQ 68.8083 13.2038, 68.262 13.8938\\nQ 67.7253 14.5743, 67.7253 15.8777\\nQ 67.7253 17.2195, 68.2812 17.9095\\nQ 68.8466 18.5996, 69.9392 18.5996\\nQ 70.6868 18.5996, 71.5589 18.1491\\nL 71.8273 18.8679\\nQ 71.4726 19.0979, 70.9359 19.2321\\nQ 70.3992 19.3663, 69.805 19.3663\\nQ 68.3291 19.3663, 67.5336 18.4654\\nQ 66.7477 17.5645, 66.7477 15.8777\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 72.8048 12.0058\\nL 73.6865 12.0058\\nL 73.6865 19.28\\nL 72.8048 19.28\\nL 72.8048 12.0058\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 83.3776 25.4026\\nQ 83.3776 23.7158, 84.1634 22.8341\\nQ 84.9589 21.9428, 86.4636 21.9428\\nQ 87.8629 21.9428, 88.6104 22.9299\\nL 87.9779 23.4475\\nQ 87.4316 22.7287, 86.4636 22.7287\\nQ 85.4381 22.7287, 84.8918 23.4187\\nQ 84.3551 24.0992, 84.3551 25.4026\\nQ 84.3551 26.7444, 84.911 27.4344\\nQ 85.4764 28.1245, 86.569 28.1245\\nQ 87.3166 28.1245, 88.1887 27.674\\nL 88.4571 28.3928\\nQ 88.1025 28.6228, 87.5658 28.757\\nQ 87.0291 28.8912, 86.4348 28.8912\\nQ 84.9589 28.8912, 84.1634 27.9903\\nQ 83.3776 27.0894, 83.3776 25.4026\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 89.4346 21.5307\\nL 90.3164 21.5307\\nL 90.3164 28.8049\\nL 89.4346 28.8049\\nL 89.4346 21.5307\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 234, "data-ID": 1178, "data-Solubility": -6.62, "data-SMILES": "Clc1ccc(cc1)C(c2ccccc2Cl)C(Cl)(Cl)Cl", "mols2grid-tooltip": "<strong>Name</strong>: o,p'-DDT<br><strong>SMILES</strong>: Clc1ccc(cc1)C(c2ccccc2Cl)C(Cl)(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.62</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.1834,89.4024 L 93.547,92.6364' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.547,92.6364 L 87.9107,95.8705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.246,92.9979 L 95.6101,96.232' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.6101,96.232 L 89.9738,99.466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.9423,97.6683 L 88.9296,102.92' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.9296,102.92 L 88.917,108.173' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 88.9423,97.6683 L 71.0025,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.0025,87.262 L 71.0025,66.5352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.8571,84.153 L 66.8571,69.6442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-3 atom-17' d='M 71.0025,87.262 L 53.053,97.6254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.0025,66.5352 L 88.9616,56.1662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-4 atom-14' d='M 71.0025,66.5352 L 53.053,56.1718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 88.9616,56.1662 L 88.9961,35.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.1121,53.0639 L 93.1363,38.5541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-13' d='M 88.9616,56.1662 L 106.897,66.5573' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 88.9961,35.438 L 106.962,25.1036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 88.9961,35.438 L 71.0743,25.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 106.962,25.1036 L 124.896,35.496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 107.574,30.2492 L 120.128,37.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 124.896,35.496 L 124.863,56.2229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-9' d='M 106.897,66.5573 L 124.863,56.2229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-9' d='M 107.525,61.4138 L 120.101,54.1797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 73.147,25.0091 L 73.1672,18.456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 73.1672,18.456 L 73.1874,11.9028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.0017,24.9963 L 69.0219,18.4432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.0219,18.4432 L 69.0421,11.89' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 71.0743,25.0027 L 66.5994,27.5664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 66.5994,27.5664 L 62.1245,30.13' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 53.053,56.1718 L 35.1036,66.5352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 52.4333,61.3162 L 39.8687,68.5706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 35.1036,66.5352 L 35.1036,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-16' d='M 53.053,97.6254 L 35.1036,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-16' d='M 52.4333,92.481 L 39.8687,85.2266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 100.629 89.4328\\nQ 100.629 88.0234, 101.326 87.2358\\nQ 102.022 86.4481, 103.324 86.4481\\nQ 104.626 86.4481, 105.322 87.2358\\nQ 106.018 88.0234, 106.018 89.4328\\nQ 106.018 90.8588, 105.314 91.6713\\nQ 104.609 92.4755, 103.324 92.4755\\nQ 102.031 92.4755, 101.326 91.6713\\nQ 100.629 90.8671, 100.629 89.4328\\nM 103.324 91.8123\\nQ 104.219 91.8123, 104.7 91.2153\\nQ 105.189 90.6101, 105.189 89.4328\\nQ 105.189 88.2804, 104.7 87.7\\nQ 104.219 87.1114, 103.324 87.1114\\nQ 102.429 87.1114, 101.939 87.6918\\nQ 101.459 88.2721, 101.459 89.4328\\nQ 101.459 90.6184, 101.939 91.2153\\nQ 102.429 91.8123, 103.324 91.8123\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 86.2146 111.503\\nQ 86.2146 110.093, 86.911 109.306\\nQ 87.6074 108.518, 88.9091 108.518\\nQ 90.2107 108.518, 90.9072 109.306\\nQ 91.6036 110.093, 91.6036 111.503\\nQ 91.6036 112.929, 90.8989 113.741\\nQ 90.1942 114.545, 88.9091 114.545\\nQ 87.6157 114.545, 86.911 113.741\\nQ 86.2146 112.937, 86.2146 111.503\\nM 88.9091 113.882\\nQ 89.8045 113.882, 90.2854 113.285\\nQ 90.7745 112.68, 90.7745 111.503\\nQ 90.7745 110.35, 90.2854 109.77\\nQ 89.8045 109.181, 88.9091 109.181\\nQ 88.0137 109.181, 87.5245 109.762\\nQ 87.0437 110.342, 87.0437 111.503\\nQ 87.0437 112.688, 87.5245 113.285\\nQ 88.0137 113.882, 88.9091 113.882\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 92.3083 108.584\\nL 93.1042 108.584\\nL 93.1042 111.08\\nL 96.1054 111.08\\nL 96.1054 108.584\\nL 96.9014 108.584\\nL 96.9014 114.454\\nL 96.1054 114.454\\nL 96.1054 111.743\\nL 93.1042 111.743\\nL 93.1042 114.454\\nL 92.3083 114.454\\nL 92.3083 108.584\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 68.431 8.43921\\nQ 68.431 7.02979, 69.1274 6.24217\\nQ 69.8238 5.45455, 71.1255 5.45455\\nQ 72.4271 5.45455, 73.1235 6.24217\\nQ 73.8199 7.02979, 73.8199 8.43921\\nQ 73.8199 9.86522, 73.1152 10.6777\\nQ 72.4105 11.4819, 71.1255 11.4819\\nQ 69.8321 11.4819, 69.1274 10.6777\\nQ 68.431 9.87351, 68.431 8.43921\\nM 71.1255 10.8187\\nQ 72.0209 10.8187, 72.5017 10.2217\\nQ 72.9909 9.6165, 72.9909 8.43921\\nQ 72.9909 7.2868, 72.5017 6.70645\\nQ 72.0209 6.1178, 71.1255 6.1178\\nQ 70.2301 6.1178, 69.7409 6.69816\\nQ 69.26 7.27851, 69.26 8.43921\\nQ 69.26 9.62479, 69.7409 10.2217\\nQ 70.2301 10.8187, 71.1255 10.8187\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 51.3824 28.9698\\nL 52.1784 28.9698\\nL 52.1784 31.4654\\nL 55.1796 31.4654\\nL 55.1796 28.9698\\nL 55.9755 28.9698\\nL 55.9755 34.8397\\nL 55.1796 34.8397\\nL 55.1796 32.1286\\nL 52.1784 32.1286\\nL 52.1784 34.8397\\nL 51.3824 34.8397\\nL 51.3824 28.9698\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 56.3901 31.8882\\nQ 56.3901 30.4788, 57.0865 29.6911\\nQ 57.7829 28.9035, 59.0845 28.9035\\nQ 60.3862 28.9035, 61.0826 29.6911\\nQ 61.779 30.4788, 61.779 31.8882\\nQ 61.779 33.3142, 61.0743 34.1267\\nQ 60.3696 34.9309, 59.0845 34.9309\\nQ 57.7912 34.9309, 57.0865 34.1267\\nQ 56.3901 33.3225, 56.3901 31.8882\\nM 59.0845 34.2676\\nQ 59.9799 34.2676, 60.4608 33.6707\\nQ 60.95 33.0655, 60.95 31.8882\\nQ 60.95 30.7358, 60.4608 30.1554\\nQ 59.9799 29.5668, 59.0845 29.5668\\nQ 58.1891 29.5668, 57.7 30.1471\\nQ 57.2191 30.7275, 57.2191 31.8882\\nQ 57.2191 33.0738, 57.7 33.6707\\nQ 58.1891 34.2676, 59.0845 34.2676\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 235, "data-ID": 1183, "data-Solubility": -2.28, "data-SMILES": "O=C(O)c(c(c(c(ccc1)C(=O)O)c1)ccc2)c2", "mols2grid-tooltip": "<strong>Name</strong>: Diphenic_Acid<br><strong>SMILES</strong>: O=C(O)c(c(c(c(ccc1)C(=O)O)c1)ccc2)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.28</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 87.2216,30.6286 L 87.2216,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 83.8651,28.1112 L 83.8651,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 72.6878,39.0199 L 87.2216,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 87.2216,13.8459 L 72.6878,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.6878,5.45455 L 58.154,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.186,9.62008 L 62.0123,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.154,13.8459 L 58.154,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.154,30.6286 L 72.6878,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.0123,28.9805 L 72.186,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 72.6878,39.0199 L 72.7225,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 71.8808,54.3596 L 67.3316,56.9966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 67.3316,56.9966 L 62.7824,59.6336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 73.5641,57.2636 L 69.0149,59.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 69.0149,59.9006 L 64.4656,62.5376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 72.7225,55.8116 L 78.6987,59.2509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 78.6987,59.2509 L 84.6749,62.6901' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.2824,67.0842 L 87.2968,74.0316' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.2968,74.0316 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.3111,80.9789 L 101.845,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.8127,85.1445 L 97.9864,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-9' d='M 72.7773,89.3714 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 101.845,89.3714 L 101.846,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 101.846,106.154 L 87.3122,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 97.9877,104.506 L 87.814,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 87.3122,114.545 L 72.7773,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 72.7773,106.154 L 72.7773,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 76.1338,103.637 L 76.1338,91.8888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 58.9248 62.5582\\nQ 58.9248 61.417, 59.4887 60.7793\\nQ 60.0526 60.1415, 61.1066 60.1415\\nQ 62.1605 60.1415, 62.7244 60.7793\\nQ 63.2883 61.417, 63.2883 62.5582\\nQ 63.2883 63.7129, 62.7177 64.3708\\nQ 62.1471 65.0219, 61.1066 65.0219\\nQ 60.0594 65.0219, 59.4887 64.3708\\nQ 58.9248 63.7196, 58.9248 62.5582\\nM 61.1066 64.4849\\nQ 61.8316 64.4849, 62.221 64.0016\\nQ 62.617 63.5115, 62.617 62.5582\\nQ 62.617 61.6251, 62.221 61.1552\\nQ 61.8316 60.6786, 61.1066 60.6786\\nQ 60.3816 60.6786, 59.9855 61.1485\\nQ 59.5962 61.6184, 59.5962 62.5582\\nQ 59.5962 63.5182, 59.9855 64.0016\\nQ 60.3816 64.4849, 61.1066 64.4849\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 85.0947 64.2007\\nQ 85.0947 63.0595, 85.6586 62.4217\\nQ 86.2225 61.784, 87.2764 61.784\\nQ 88.3304 61.784, 88.8943 62.4217\\nQ 89.4582 63.0595, 89.4582 64.2007\\nQ 89.4582 65.3554, 88.8876 66.0132\\nQ 88.3169 66.6644, 87.2764 66.6644\\nQ 86.2292 66.6644, 85.6586 66.0132\\nQ 85.0947 65.3621, 85.0947 64.2007\\nM 87.2764 66.1274\\nQ 88.0014 66.1274, 88.3908 65.644\\nQ 88.7869 65.154, 88.7869 64.2007\\nQ 88.7869 63.2676, 88.3908 62.7977\\nQ 88.0014 62.321, 87.2764 62.321\\nQ 86.5514 62.321, 86.1553 62.791\\nQ 85.766 63.2609, 85.766 64.2007\\nQ 85.766 65.1607, 86.1553 65.644\\nQ 86.5514 66.1274, 87.2764 66.1274\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 236, "data-ID": 1188, "data-Solubility": -2.85, "data-SMILES": "c1ccccc1C(=O)Oc2ccccc2", "mols2grid-tooltip": "<strong>Name</strong>: Benzoin<br><strong>SMILES</strong>: c1ccccc1C(=O)Oc2ccccc2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.85</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.405,71.6826 L 125.322,64.8219' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.322,64.8219 L 121.24,57.9611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.906,74.3594 L 120.824,67.4986' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.824,67.4986 L 116.741,60.6378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.991,59.2994 L 92.8474,59.6484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 118.991,59.2994 L 131.791,36.4541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8474,59.6484 L 77.5781,80.9618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-11' d='M 92.8474,59.6484 L 77.5781,38.9701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.0933,81.7838 L 77.675,89.5877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.675,89.5877 L 80.2566,97.3915' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.063,80.1398 L 82.6446,87.9436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 82.6446,87.9436 L 85.2263,95.7475' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 77.5781,80.9618 L 52.7646,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 52.7646,73.0088 L 52.7646,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.53,69.0959 L 47.53,50.836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 52.7646,73.0088 L 30.1774,86.3691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.7646,46.9232 L 30.1774,33.5628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-6' d='M 77.5781,38.9701 L 52.7646,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.1774,33.5628 L 7.27273,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 29.3792,40.0885 L 13.3459,49.4407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 7.27273,46.9232 L 7.27273,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 30.1774,86.3691 L 7.27273,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 29.3792,79.8435 L 13.3459,70.4912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 80.0688,39.7743 L 82.5774,32.0044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 82.5774,32.0044 L 85.0859,24.2346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 75.0875,38.166 L 77.596,30.3962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 77.596,30.3962 L 80.1045,22.6264' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 131.791,36.4541 L 152.727,36.1714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 131.791,36.4541 L 142.019,18.1837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-16' d='M 131.791,36.4541 L 121.084,18.4594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.294 77.3133\\nQ 126.294 75.5336, 127.174 74.539\\nQ 128.053 73.5444, 129.697 73.5444\\nQ 131.341 73.5444, 132.22 74.539\\nQ 133.099 75.5336, 133.099 77.3133\\nQ 133.099 79.114, 132.21 80.14\\nQ 131.32 81.1555, 129.697 81.1555\\nQ 128.064 81.1555, 127.174 80.14\\nQ 126.294 79.1245, 126.294 77.3133\\nM 129.697 80.318\\nQ 130.828 80.318, 131.435 79.5642\\nQ 132.052 78.7999, 132.052 77.3133\\nQ 132.052 75.8581, 131.435 75.1253\\nQ 130.828 74.382, 129.697 74.382\\nQ 128.566 74.382, 127.949 75.1148\\nQ 127.341 75.8476, 127.341 77.3133\\nQ 127.341 78.8104, 127.949 79.5642\\nQ 128.566 80.318, 129.697 80.318\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 80.752 100.862\\nQ 80.752 99.0821, 81.6314 98.0876\\nQ 82.5108 97.093, 84.1545 97.093\\nQ 85.7982 97.093, 86.6776 98.0876\\nQ 87.557 99.0821, 87.557 100.862\\nQ 87.557 102.663, 86.6671 103.689\\nQ 85.7772 104.704, 84.1545 104.704\\nQ 82.5213 104.704, 81.6314 103.689\\nQ 80.752 102.673, 80.752 100.862\\nM 84.1545 103.867\\nQ 85.2852 103.867, 85.8924 103.113\\nQ 86.5101 102.348, 86.5101 100.862\\nQ 86.5101 99.4067, 85.8924 98.6738\\nQ 85.2852 97.9305, 84.1545 97.9305\\nQ 83.0238 97.9305, 82.4062 98.6634\\nQ 81.7989 99.3962, 81.7989 100.862\\nQ 81.7989 102.359, 82.4062 103.113\\nQ 83.0238 103.867, 84.1545 103.867\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 80.609 19.0648\\nQ 80.609 17.2851, 81.4884 16.2905\\nQ 82.3678 15.296, 84.0114 15.296\\nQ 85.6551 15.296, 86.5345 16.2905\\nQ 87.4139 17.2851, 87.4139 19.0648\\nQ 87.4139 20.8655, 86.524 21.8915\\nQ 85.6341 22.907, 84.0114 22.907\\nQ 82.3782 22.907, 81.4884 21.8915\\nQ 80.609 20.876, 80.609 19.0648\\nM 84.0114 22.0695\\nQ 85.1421 22.0695, 85.7493 21.3157\\nQ 86.367 20.5515, 86.367 19.0648\\nQ 86.367 17.6096, 85.7493 16.8768\\nQ 85.1421 16.1335, 84.0114 16.1335\\nQ 82.8808 16.1335, 82.2631 16.8663\\nQ 81.6559 17.5992, 81.6559 19.0648\\nQ 81.6559 20.5619, 82.2631 21.3157\\nQ 82.8808 22.0695, 84.0114 22.0695\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 237, "data-ID": 1193, "data-Solubility": -4.11, "data-SMILES": "O=C(C(C(=O)c(c1ccc2)c2)C1=O)C(C)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: Pindone<br><strong>SMILES</strong>: O=C(C(C(=O)c(c1ccc2)c2)C1=O)C(C)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.11</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.747,114.545 L 100.47,110.907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.47,110.907 L 94.1936,107.268' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.529,107.256 L 82.2373,110.875' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.2373,110.875 L 75.9456,114.495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.3655,101.922 L 91.376,92.6512' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.376,92.6512 L 91.3865,83.3806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.3865,83.3806 L 72.141,72.2246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.141,72.2246 L 72.1515,62.9548' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.1515,62.9548 L 72.162,53.6849' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 75.11,48.2946 L 83.2898,43.6093' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 83.2898,43.6093 L 91.4695,38.9241' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-12' d='M 69.2224,48.2697 L 61.0782,43.5361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-12' d='M 61.0782,43.5361 L 52.934,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.4695,38.9241 L 110.702,50.1008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.702,50.1008 L 130.776,40.9946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 115.55,52.7841 L 129.601,46.4098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 112.313,68.3698 L 111.507,59.2353' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 111.507,59.2353 L 110.702,50.1008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 130.776,40.9946 L 145.572,57.5886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 145.572,57.5886 L 134.362,76.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 140.051,58.2267 L 132.204,71.6663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 134.362,76.7881 L 124.788,74.7043' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 124.788,74.7043 L 115.213,72.6204' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.934,38.8025 L 52.934,16.5705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 48.4876,35.4677 L 48.4876,19.9053' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-12' d='M 36.6246,48.219 L 44.7793,43.5108' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-12' d='M 44.7793,43.5108 L 52.934,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 52.934,16.5705 L 33.6811,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.6811,5.45455 L 14.4282,16.5705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.0164,10.9726 L 19.5394,18.7538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 14.4282,16.5705 L 14.4282,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 14.4282,38.8025 L 22.5829,43.5108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 22.5829,43.5108 L 30.7376,48.219' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 19.0979,36.3643 L 24.8062,39.6601' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 24.8062,39.6601 L 30.5145,42.9559' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 89.9696 102.478\\nL 92.0327 105.813\\nQ 92.2372 106.142, 92.5663 106.738\\nQ 92.8953 107.333, 92.9131 107.369\\nL 92.9131 102.478\\nL 93.749 102.478\\nL 93.749 108.774\\nL 92.8864 108.774\\nL 90.6721 105.128\\nQ 90.4142 104.701, 90.1385 104.212\\nQ 89.8717 103.723, 89.7917 103.572\\nL 89.7917 108.774\\nL 88.9736 108.774\\nL 88.9736 102.478\\nL 89.9696 102.478\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 70.7745 46.8327\\nL 72.8376 50.1675\\nQ 73.0421 50.4966, 73.3712 51.0924\\nQ 73.7002 51.6882, 73.718 51.7238\\nL 73.718 46.8327\\nL 74.5539 46.8327\\nL 74.5539 53.1288\\nL 73.6913 53.1288\\nL 71.477 49.4828\\nQ 71.2191 49.0559, 70.9434 48.5668\\nQ 70.6766 48.0777, 70.5966 47.9265\\nL 70.5966 53.1288\\nL 69.7785 53.1288\\nL 69.7785 46.8327\\nL 70.7745 46.8327\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 110.86 74.2211\\nQ 110.931 74.2477, 111.225 74.3722\\nQ 111.518 74.4967, 111.838 74.5768\\nQ 112.167 74.6479, 112.488 74.6479\\nQ 113.083 74.6479, 113.43 74.3633\\nQ 113.777 74.0699, 113.777 73.563\\nQ 113.777 73.2162, 113.599 73.0028\\nQ 113.43 72.7893, 113.163 72.6737\\nQ 112.897 72.5581, 112.452 72.4247\\nQ 111.892 72.2558, 111.554 72.0957\\nQ 111.225 71.9356, 110.985 71.5977\\nQ 110.754 71.2598, 110.754 70.6906\\nQ 110.754 69.8992, 111.287 69.4101\\nQ 111.83 68.921, 112.897 68.921\\nQ 113.626 68.921, 114.453 69.2678\\nL 114.248 69.9525\\nQ 113.492 69.6413, 112.923 69.6413\\nQ 112.31 69.6413, 111.972 69.8992\\nQ 111.634 70.1482, 111.643 70.5839\\nQ 111.643 70.9218, 111.812 71.1264\\nQ 111.99 71.3309, 112.239 71.4465\\nQ 112.497 71.5621, 112.923 71.6955\\nQ 113.492 71.8734, 113.83 72.0512\\nQ 114.168 72.2291, 114.408 72.5937\\nQ 114.657 72.9494, 114.657 73.563\\nQ 114.657 74.4345, 114.071 74.9058\\nQ 113.492 75.3682, 112.523 75.3682\\nQ 111.963 75.3682, 111.536 75.2437\\nQ 111.118 75.1281, 110.62 74.9236\\nL 110.86 74.2211\\n' fill='#CCCC00'/>\\n<path class='atom-17' d='M 32.2894 46.7705\\nL 34.3525 50.1053\\nQ 34.5571 50.4343, 34.8861 51.0301\\nQ 35.2151 51.6259, 35.2329 51.6615\\nL 35.2329 46.7705\\nL 36.0688 46.7705\\nL 36.0688 53.0666\\nL 35.2062 53.0666\\nL 32.9919 49.4205\\nQ 32.734 48.9937, 32.4584 48.5046\\nQ 32.1916 48.0155, 32.1115 47.8643\\nL 32.1115 53.0666\\nL 31.2934 53.0666\\nL 31.2934 46.7705\\nL 32.2894 46.7705\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 238, "data-ID": 1198, "data-Solubility": -2.64, "data-SMILES": "CN(C)CCN(Cc1cccs1)c2ccccn2", "mols2grid-tooltip": "<strong>Name</strong>: Methapyrilene<br><strong>SMILES</strong>: CN(C)CCN(Cc1cccs1)c2ccccn2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.64</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.5118,50.8778 L 21.309,53.6664' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.309,53.6664 L 26.1062,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 26.1062,56.4551 L 26.1062,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.6488,59.107 L 29.6488,71.4829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-1' d='M 41.631,47.614 L 26.1062,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 26.1062,74.1349 L 41.631,82.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 41.631,82.976 L 41.6479,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 41.6479,88.6157 L 41.6648,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 41.631,82.976 L 56.9396,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 42.1556,78.5821 L 52.8716,72.3933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.9396,74.1349 L 72.2483,82.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-5' d='M 56.9396,56.4551 L 56.9396,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.477,82.976 L 70.477,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.477,88.6157 L 70.477,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.0195,82.976 L 74.0195,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.0195,88.6157 L 74.0195,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 72.2483,82.976 L 87.5581,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 87.5581,74.1349 L 92.3654,76.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 92.3654,76.9104 L 97.1726,79.686' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 89.3294,74.1349 L 85.7868,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 85.7868,74.1349 L 89.3294,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.5581,56.4551 L 102.906,47.5939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-10 atom-19' d='M 87.5581,56.4551 L 81.2755,52.827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-10 atom-19' d='M 81.2755,52.827 L 74.9929,49.199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.906,47.5939 L 118.232,56.4751' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 106.981,45.861 L 117.709,52.0778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-11' d='M 102.935,29.881 L 102.906,47.5939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 118.232,56.4751 L 133.587,47.6423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.587,47.6423 L 133.614,29.9295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 130.048,44.98 L 130.067,32.5809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 133.614,29.9295 L 138.427,27.161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.427,27.161 L 143.24,24.3926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 133.614,29.9295 L 118.289,21.0494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 118.289,21.0494 L 102.935,29.881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 117.752,25.4449 L 107.005,31.6271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 102.935,29.881 L 98.1333,27.0983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 98.1333,27.0983 L 93.3313,24.3155' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 69.5036,49.1991 L 63.2216,52.8271' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 63.2216,52.8271 L 56.9396,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 56.9396,56.4551 L 41.631,47.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 52.8716,58.1966 L 42.1556,52.0079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 46.8535\\nL 7.9529 46.8535\\nL 7.9529 48.9861\\nL 10.5177 48.9861\\nL 10.5177 46.8535\\nL 11.1979 46.8535\\nL 11.1979 51.8698\\nL 10.5177 51.8698\\nL 10.5177 49.5529\\nL 7.9529 49.5529\\nL 7.9529 51.8698\\nL 7.27273 51.8698\\nL 7.27273 46.8535\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 11.5522 49.3475\\nQ 11.5522 48.143, 12.1473 47.4699\\nQ 12.7425 46.7968, 13.8548 46.7968\\nQ 14.9672 46.7968, 15.5624 47.4699\\nQ 16.1575 48.143, 16.1575 49.3475\\nQ 16.1575 50.5661, 15.5553 51.2605\\nQ 14.953 51.9477, 13.8548 51.9477\\nQ 12.7495 51.9477, 12.1473 51.2605\\nQ 11.5522 50.5732, 11.5522 49.3475\\nM 13.8548 51.3809\\nQ 14.62 51.3809, 15.031 50.8708\\nQ 15.449 50.3536, 15.449 49.3475\\nQ 15.449 48.3626, 15.031 47.8667\\nQ 14.62 47.3636, 13.8548 47.3636\\nQ 13.0896 47.3636, 12.6716 47.8596\\nQ 12.2607 48.3556, 12.2607 49.3475\\nQ 12.2607 50.3607, 12.6716 50.8708\\nQ 13.0896 51.3809, 13.8548 51.3809\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 39.3708 97.1604\\nQ 39.3708 95.9559, 39.966 95.2829\\nQ 40.5611 94.6098, 41.6735 94.6098\\nQ 42.7859 94.6098, 43.381 95.2829\\nQ 43.9762 95.9559, 43.9762 97.1604\\nQ 43.9762 98.3791, 43.3739 99.0734\\nQ 42.7717 99.7607, 41.6735 99.7607\\nQ 40.5682 99.7607, 39.966 99.0734\\nQ 39.3708 98.3862, 39.3708 97.1604\\nM 41.6735 99.1939\\nQ 42.4387 99.1939, 42.8496 98.6837\\nQ 43.2676 98.1665, 43.2676 97.1604\\nQ 43.2676 96.1756, 42.8496 95.6796\\nQ 42.4387 95.1766, 41.6735 95.1766\\nQ 40.9083 95.1766, 40.4903 95.6725\\nQ 40.0793 96.1685, 40.0793 97.1604\\nQ 40.0793 98.1736, 40.4903 98.6837\\nQ 40.9083 99.1939, 41.6735 99.1939\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 44.5784 94.6664\\nL 45.2586 94.6664\\nL 45.2586 96.7991\\nL 47.8234 96.7991\\nL 47.8234 94.6664\\nL 48.5036 94.6664\\nL 48.5036 99.6827\\nL 47.8234 99.6827\\nL 47.8234 97.3659\\nL 45.2586 97.3659\\nL 45.2586 99.6827\\nL 44.5784 99.6827\\nL 44.5784 94.6664\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 69.9456 97.1604\\nQ 69.9456 95.9559, 70.5407 95.2829\\nQ 71.1359 94.6098, 72.2483 94.6098\\nQ 73.3606 94.6098, 73.9558 95.2829\\nQ 74.5509 95.9559, 74.5509 97.1604\\nQ 74.5509 98.3791, 73.9487 99.0734\\nQ 73.3465 99.7607, 72.2483 99.7607\\nQ 71.143 99.7607, 70.5407 99.0734\\nQ 69.9456 98.3862, 69.9456 97.1604\\nM 72.2483 99.1939\\nQ 73.0135 99.1939, 73.4244 98.6837\\nQ 73.8424 98.1665, 73.8424 97.1604\\nQ 73.8424 96.1756, 73.4244 95.6796\\nQ 73.0135 95.1766, 72.2483 95.1766\\nQ 71.4831 95.1766, 71.065 95.6725\\nQ 70.6541 96.1685, 70.6541 97.1604\\nQ 70.6541 98.1736, 71.065 98.6837\\nQ 71.4831 99.1939, 72.2483 99.1939\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 97.5269 81.2342\\nQ 97.5269 80.0297, 98.122 79.3566\\nQ 98.7172 78.6835, 99.8296 78.6835\\nQ 100.942 78.6835, 101.537 79.3566\\nQ 102.132 80.0297, 102.132 81.2342\\nQ 102.132 82.4528, 101.53 83.1472\\nQ 100.928 83.8344, 99.8296 83.8344\\nQ 98.7243 83.8344, 98.122 83.1472\\nQ 97.5269 82.4599, 97.5269 81.2342\\nM 99.8296 83.2676\\nQ 100.595 83.2676, 101.006 82.7575\\nQ 101.424 82.2403, 101.424 81.2342\\nQ 101.424 80.2494, 101.006 79.7534\\nQ 100.595 79.2503, 99.8296 79.2503\\nQ 99.0644 79.2503, 98.6463 79.7463\\nQ 98.2354 80.2423, 98.2354 81.2342\\nQ 98.2354 82.2474, 98.6463 82.7575\\nQ 99.0644 83.2676, 99.8296 83.2676\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 102.734 78.7402\\nL 103.415 78.7402\\nL 103.415 80.8728\\nL 105.979 80.8728\\nL 105.979 78.7402\\nL 106.66 78.7402\\nL 106.66 83.7565\\nL 105.979 83.7565\\nL 105.979 81.4397\\nL 103.415 81.4397\\nL 103.415 83.7565\\nL 102.734 83.7565\\nL 102.734 78.7402\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 143.595 22.8785\\nQ 143.595 21.6741, 144.19 21.001\\nQ 144.785 20.3279, 145.897 20.3279\\nQ 147.01 20.3279, 147.605 21.001\\nQ 148.2 21.6741, 148.2 22.8785\\nQ 148.2 24.0972, 147.598 24.7915\\nQ 146.995 25.4788, 145.897 25.4788\\nQ 144.792 25.4788, 144.19 24.7915\\nQ 143.595 24.1043, 143.595 22.8785\\nM 145.897 24.912\\nQ 146.662 24.912, 147.073 24.4019\\nQ 147.491 23.8846, 147.491 22.8785\\nQ 147.491 21.8937, 147.073 21.3978\\nQ 146.662 20.8947, 145.897 20.8947\\nQ 145.132 20.8947, 144.714 21.3907\\nQ 144.303 21.8866, 144.303 22.8785\\nQ 144.303 23.8917, 144.714 24.4019\\nQ 145.132 24.912, 145.897 24.912\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 148.802 20.3846\\nL 149.482 20.3846\\nL 149.482 22.5172\\nL 152.047 22.5172\\nL 152.047 20.3846\\nL 152.727 20.3846\\nL 152.727 25.4009\\nL 152.047 25.4009\\nL 152.047 23.084\\nL 149.482 23.084\\nL 149.482 25.4009\\nL 148.802 25.4009\\nL 148.802 20.3846\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 84.0923 20.296\\nL 84.7724 20.296\\nL 84.7724 22.4286\\nL 87.3373 22.4286\\nL 87.3373 20.296\\nL 88.0174 20.296\\nL 88.0174 25.3123\\nL 87.3373 25.3123\\nL 87.3373 22.9955\\nL 84.7724 22.9955\\nL 84.7724 25.3123\\nL 84.0923 25.3123\\nL 84.0923 20.296\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 88.3717 22.79\\nQ 88.3717 21.5855, 88.9668 20.9124\\nQ 89.562 20.2393, 90.6744 20.2393\\nQ 91.7867 20.2393, 92.3819 20.9124\\nQ 92.977 21.5855, 92.977 22.79\\nQ 92.977 24.0086, 92.3748 24.703\\nQ 91.7726 25.3902, 90.6744 25.3902\\nQ 89.5691 25.3902, 88.9668 24.703\\nQ 88.3717 24.0157, 88.3717 22.79\\nM 90.6744 24.8234\\nQ 91.4396 24.8234, 91.8505 24.3133\\nQ 92.2685 23.7961, 92.2685 22.79\\nQ 92.2685 21.8051, 91.8505 21.3092\\nQ 91.4396 20.8061, 90.6744 20.8061\\nQ 89.9092 20.8061, 89.4911 21.3021\\nQ 89.0802 21.7981, 89.0802 22.79\\nQ 89.0802 23.8032, 89.4911 24.3133\\nQ 89.9092 24.8234, 90.6744 24.8234\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 69.9456 47.6282\\nQ 69.9456 46.4237, 70.5407 45.7506\\nQ 71.1359 45.0775, 72.2483 45.0775\\nQ 73.3606 45.0775, 73.9558 45.7506\\nQ 74.5509 46.4237, 74.5509 47.6282\\nQ 74.5509 48.8468, 73.9487 49.5411\\nQ 73.3465 50.2284, 72.2483 50.2284\\nQ 71.143 50.2284, 70.5407 49.5411\\nQ 69.9456 48.8539, 69.9456 47.6282\\nM 72.2483 49.6616\\nQ 73.0135 49.6616, 73.4244 49.1515\\nQ 73.8424 48.6342, 73.8424 47.6282\\nQ 73.8424 46.6433, 73.4244 46.1474\\nQ 73.0135 45.6443, 72.2483 45.6443\\nQ 71.4831 45.6443, 71.065 46.1403\\nQ 70.6541 46.6362, 70.6541 47.6282\\nQ 70.6541 48.6413, 71.065 49.1515\\nQ 71.4831 49.6616, 72.2483 49.6616\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 239, "data-ID": 1203, "data-Solubility": -3.08, "data-SMILES": "Oc1cc(O)c2C(=O)C(O)=C(c3ccc(O)cc3O)Oc2c1", "mols2grid-tooltip": "<strong>Name</strong>: Morin<br><strong>SMILES</strong>: Oc1cc(O)c2C(=O)C(O)=C(c3ccc(O)cc3O)Oc2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.08</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 17.4395,49.1315 L 21.1442,46.9916' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.1442,46.9916 L 24.8489,44.8517' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.1969,41.2437 L 28.195,37.4014' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.195,37.4014 L 28.193,33.5591' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.9628,41.2453 L 24.9609,37.403' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.9609,37.403 L 24.959,33.5607' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 25.5976,41.4168 L 22.0778,39.3861' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 22.0778,39.3861 L 18.5581,37.3553' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.9813,44.2181 L 20.4616,42.1873' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 20.4616,42.1873 L 16.9419,40.1565' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 28.4539,44.9329 L 34.522,48.4379' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 34.522,48.4379 L 40.5901,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.5901,51.9428 L 54.7629,43.8717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 44.3164,53.5425 L 54.2374,47.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-4' d='M 40.5901,68.083 L 40.5901,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.7629,43.8717 L 68.7384,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.7384,51.9428 L 68.7384,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.5043,54.3639 L 65.5043,65.662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-6' d='M 80.8421,44.9526 L 74.7903,48.4477' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-6' d='M 74.7903,48.4477 L 68.7384,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 68.7384,68.083 L 74.656,71.5006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 74.656,71.5006 L 80.5737,74.9182' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-7 atom-21' d='M 68.7384,68.083 L 54.7629,76.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 84.8541,74.9183 L 90.7723,71.5007' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 90.7723,71.5007 L 96.6905,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 96.6905,68.083 L 110.719,76.1445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-17' d='M 96.6905,68.083 L 96.6905,61.3596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-17' d='M 96.6905,61.3596 L 96.6905,54.6361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 110.719,76.1445 L 124.719,68.0345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 124.719,68.0345 L 138.752,76.0712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 128.431,66.4336 L 138.254,72.0593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 124.663,51.8641 L 124.719,68.0345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 138.752,76.0712 L 152.727,67.9375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 152.727,67.9375 L 152.671,51.7671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 149.485,65.5232 L 149.446,54.2039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 152.671,51.7671 L 138.64,43.7305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 138.64,43.7305 L 124.663,51.8641' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 138.17,47.7457 L 128.386,53.4393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 94.5503,50.7069 L 89.5371,47.8119' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 89.5371,47.8119 L 84.5239,44.9169' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 81.6974,41.4738 L 78.1042,39.5108' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 78.1042,39.5108 L 74.511,37.5479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 80.147,44.312 L 76.5537,42.349' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 76.5537,42.349 L 72.9605,40.3861' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 85.2809,44.3118 L 88.8741,42.3485' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 88.8741,42.3485 L 92.4674,40.3852' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 83.7302,41.4737 L 87.3235,39.5104' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 87.3235,39.5104 L 90.9167,37.5471' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 54.7629,76.1542 L 40.5901,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 54.2374,72.1332 L 44.3164,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 40.5901,68.083 L 26.5811,76.1747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.5811,76.1747 L 26.5786,81.3363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.5786,81.3363 L 26.576,86.4978' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-25' d='M 26.5811,76.1747 L 21.8227,73.4262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-25' d='M 21.8227,73.4262 L 17.0643,70.6776' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-26' d='M 26.5811,76.1747 L 21.8211,78.9211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-26' d='M 21.8211,78.9211 L 17.0611,81.6674' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 48.0318\\nL 7.89367 48.0318\\nL 7.89367 49.9787\\nL 10.2351 49.9787\\nL 10.2351 48.0318\\nL 10.8561 48.0318\\nL 10.8561 52.6112\\nL 10.2351 52.6112\\nL 10.2351 50.4961\\nL 7.89367 50.4961\\nL 7.89367 52.6112\\nL 7.27273 52.6112\\nL 7.27273 48.0318\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 11.0781 52.4506\\nQ 11.1891 52.1645, 11.4537 52.0066\\nQ 11.7184 51.8444, 12.0855 51.8444\\nQ 12.5423 51.8444, 12.7985 52.092\\nQ 13.0546 52.3396, 13.0546 52.7793\\nQ 13.0546 53.2275, 12.7216 53.6459\\nQ 12.3929 54.0642, 11.7099 54.5594\\nL 13.1058 54.5594\\nL 13.1058 54.9009\\nL 11.0695 54.9009\\nL 11.0695 54.6149\\nQ 11.633 54.2136, 11.966 53.9148\\nQ 12.3033 53.616, 12.4655 53.347\\nQ 12.6277 53.0781, 12.6277 52.8006\\nQ 12.6277 52.5103, 12.4826 52.3481\\nQ 12.3374 52.1859, 12.0855 52.1859\\nQ 11.8422 52.1859, 11.68 52.2841\\nQ 11.5178 52.3822, 11.4025 52.6\\nL 11.0781 52.4506\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 14.3671 48.0318\\nL 15.8677 50.4573\\nQ 16.0165 50.6966, 16.2558 51.13\\nQ 16.4951 51.5634, 16.5081 51.5893\\nL 16.5081 48.0318\\nL 17.1161 48.0318\\nL 17.1161 52.6112\\nL 16.4887 52.6112\\nL 14.8781 49.9593\\nQ 14.6905 49.6488, 14.49 49.2931\\nQ 14.296 48.9373, 14.2378 48.8274\\nL 14.2378 52.6112\\nL 13.6427 52.6112\\nL 13.6427 48.0318\\nL 14.3671 48.0318\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 25.2875 45.423\\nQ 25.3393 45.4424, 25.5527 45.5329\\nQ 25.7662 45.6235, 25.999 45.6817\\nQ 26.2383 45.7334, 26.4712 45.7334\\nQ 26.9045 45.7334, 27.1568 45.5264\\nQ 27.4091 45.313, 27.4091 44.9443\\nQ 27.4091 44.692, 27.2797 44.5368\\nQ 27.1568 44.3816, 26.9628 44.2975\\nQ 26.7687 44.2134, 26.4453 44.1164\\nQ 26.0378 43.9935, 25.792 43.8771\\nQ 25.5527 43.7606, 25.3781 43.5148\\nQ 25.2099 43.2691, 25.2099 42.8551\\nQ 25.2099 42.2794, 25.598 41.9237\\nQ 25.9925 41.5679, 26.7687 41.5679\\nQ 27.2991 41.5679, 27.9006 41.8202\\nL 27.7519 42.3182\\nQ 27.2021 42.0919, 26.7881 42.0919\\nQ 26.3418 42.0919, 26.096 42.2794\\nQ 25.8502 42.4605, 25.8567 42.7775\\nQ 25.8567 43.0233, 25.9796 43.172\\nQ 26.109 43.3208, 26.2901 43.4049\\nQ 26.4777 43.489, 26.7881 43.586\\nQ 27.2021 43.7154, 27.4479 43.8447\\nQ 27.6937 43.9741, 27.8683 44.2393\\nQ 28.0494 44.498, 28.0494 44.9443\\nQ 28.0494 45.5782, 27.6225 45.921\\nQ 27.2021 46.2573, 26.4971 46.2573\\nQ 26.0896 46.2573, 25.7791 46.1668\\nQ 25.4751 46.0827, 25.1129 45.9339\\nL 25.2875 45.423\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 24.4725 30.9278\\nQ 24.4725 29.8282, 25.0158 29.2138\\nQ 25.5592 28.5993, 26.5747 28.5993\\nQ 27.5902 28.5993, 28.1335 29.2138\\nQ 28.6768 29.8282, 28.6768 30.9278\\nQ 28.6768 32.0404, 28.127 32.6742\\nQ 27.5772 33.3016, 26.5747 33.3016\\nQ 25.5656 33.3016, 25.0158 32.6742\\nQ 24.4725 32.0468, 24.4725 30.9278\\nM 26.5747 32.7842\\nQ 27.2732 32.7842, 27.6484 32.3185\\nQ 28.03 31.8463, 28.03 30.9278\\nQ 28.03 30.0288, 27.6484 29.576\\nQ 27.2732 29.1167, 26.5747 29.1167\\nQ 25.8761 29.1167, 25.4945 29.5695\\nQ 25.1193 30.0223, 25.1193 30.9278\\nQ 25.1193 31.8528, 25.4945 32.3185\\nQ 25.8761 32.7842, 26.5747 32.7842\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 13.274 37.3992\\nQ 13.274 36.2996, 13.8173 35.6852\\nQ 14.3607 35.0707, 15.3762 35.0707\\nQ 16.3917 35.0707, 16.935 35.6852\\nQ 17.4783 36.2996, 17.4783 37.3992\\nQ 17.4783 38.5117, 16.9285 39.1456\\nQ 16.3787 39.773, 15.3762 39.773\\nQ 14.3671 39.773, 13.8173 39.1456\\nQ 13.274 38.5182, 13.274 37.3992\\nM 15.3762 39.2556\\nQ 16.0747 39.2556, 16.4499 38.7899\\nQ 16.8315 38.3177, 16.8315 37.3992\\nQ 16.8315 36.5001, 16.4499 36.0474\\nQ 16.0747 35.5881, 15.3762 35.5881\\nQ 14.6776 35.5881, 14.296 36.0409\\nQ 13.9208 36.4937, 13.9208 37.3992\\nQ 13.9208 38.3242, 14.296 38.7899\\nQ 14.6776 39.2556, 15.3762 39.2556\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 81.7016 73.8645\\nL 83.2022 76.29\\nQ 83.351 76.5294, 83.5903 76.9627\\nQ 83.8296 77.3961, 83.8426 77.422\\nL 83.8426 73.8645\\nL 84.4506 73.8645\\nL 84.4506 78.4439\\nL 83.8232 78.4439\\nL 82.2126 75.792\\nQ 82.025 75.4815, 81.8245 75.1258\\nQ 81.6305 74.77, 81.5723 74.6601\\nL 81.5723 78.4439\\nL 80.9772 78.4439\\nL 80.9772 73.8645\\nL 81.7016 73.8645\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 80.9222 78.9019\\nL 81.5431 78.9019\\nL 81.5431 80.8488\\nL 83.8846 80.8488\\nL 83.8846 78.9019\\nL 84.5056 78.9019\\nL 84.5056 83.4813\\nL 83.8846 83.4813\\nL 83.8846 81.3662\\nL 81.5431 81.3662\\nL 81.5431 83.4813\\nL 80.9222 83.4813\\nL 80.9222 78.9019\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 95.6782 49.6531\\nL 97.1788 52.0787\\nQ 97.3276 52.318, 97.5669 52.7514\\nQ 97.8062 53.1847, 97.8192 53.2106\\nL 97.8192 49.6531\\nL 98.4272 49.6531\\nL 98.4272 54.2326\\nL 97.7998 54.2326\\nL 96.1892 51.5806\\nQ 96.0016 51.2702, 95.8011 50.9144\\nQ 95.6071 50.5587, 95.5488 50.4487\\nL 95.5488 54.2326\\nL 94.9538 54.2326\\nL 94.9538 49.6531\\nL 95.6782 49.6531\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 98.977 49.6531\\nL 99.5979 49.6531\\nL 99.5979 51.6\\nL 101.939 51.6\\nL 101.939 49.6531\\nL 102.56 49.6531\\nL 102.56 54.2326\\nL 101.939 54.2326\\nL 101.939 52.1175\\nL 99.5979 52.1175\\nL 99.5979 54.2326\\nL 98.977 54.2326\\nL 98.977 49.6531\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 81.4203 45.4434\\nQ 81.472 45.4628, 81.6854 45.5534\\nQ 81.8989 45.6439, 82.1318 45.7022\\nQ 82.3711 45.7539, 82.6039 45.7539\\nQ 83.0373 45.7539, 83.2895 45.5469\\nQ 83.5418 45.3335, 83.5418 44.9648\\nQ 83.5418 44.7125, 83.4124 44.5573\\nQ 83.2895 44.4021, 83.0955 44.318\\nQ 82.9015 44.2339, 82.5781 44.1369\\nQ 82.1706 44.014, 81.9248 43.8975\\nQ 81.6854 43.7811, 81.5108 43.5353\\nQ 81.3426 43.2895, 81.3426 42.8756\\nQ 81.3426 42.2999, 81.7307 41.9442\\nQ 82.1253 41.5884, 82.9015 41.5884\\nQ 83.4318 41.5884, 84.0334 41.8407\\nL 83.8846 42.3387\\nQ 83.3348 42.1123, 82.9209 42.1123\\nQ 82.4746 42.1123, 82.2288 42.2999\\nQ 81.983 42.481, 81.9895 42.798\\nQ 81.9895 43.0438, 82.1123 43.1925\\nQ 82.2417 43.3413, 82.4228 43.4254\\nQ 82.6104 43.5095, 82.9209 43.6065\\nQ 83.3348 43.7358, 83.5806 43.8652\\nQ 83.8264 43.9946, 84.001 44.2598\\nQ 84.1822 44.5185, 84.1822 44.9648\\nQ 84.1822 45.5987, 83.7553 45.9415\\nQ 83.3348 46.2778, 82.6298 46.2778\\nQ 82.2223 46.2778, 81.9118 46.1873\\nQ 81.6078 46.1032, 81.2456 45.9544\\nL 81.4203 45.4434\\n' fill='#CCCC00'/>\\n<path class='atom-19' d='M 69.2591 37.6827\\nQ 69.2591 36.5831, 69.8024 35.9687\\nQ 70.3457 35.3542, 71.3612 35.3542\\nQ 72.3767 35.3542, 72.92 35.9687\\nQ 73.4634 36.5831, 73.4634 37.6827\\nQ 73.4634 38.7953, 72.9136 39.4291\\nQ 72.3638 40.0565, 71.3612 40.0565\\nQ 70.3522 40.0565, 69.8024 39.4291\\nQ 69.2591 38.8017, 69.2591 37.6827\\nM 71.3612 39.5391\\nQ 72.0598 39.5391, 72.4349 39.0734\\nQ 72.8165 38.6012, 72.8165 37.6827\\nQ 72.8165 36.7837, 72.4349 36.3309\\nQ 72.0598 35.8717, 71.3612 35.8717\\nQ 70.6626 35.8717, 70.281 36.3244\\nQ 69.9059 36.7772, 69.9059 37.6827\\nQ 69.9059 38.6077, 70.281 39.0734\\nQ 70.6626 39.5391, 71.3612 39.5391\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 91.9644 37.6817\\nQ 91.9644 36.5821, 92.5077 35.9676\\nQ 93.0511 35.3531, 94.0666 35.3531\\nQ 95.0821 35.3531, 95.6254 35.9676\\nQ 96.1687 36.5821, 96.1687 37.6817\\nQ 96.1687 38.7942, 95.6189 39.4281\\nQ 95.0691 40.0555, 94.0666 40.0555\\nQ 93.0575 40.0555, 92.5077 39.4281\\nQ 91.9644 38.8006, 91.9644 37.6817\\nM 94.0666 39.538\\nQ 94.7651 39.538, 95.1403 39.0723\\nQ 95.5219 38.6001, 95.5219 37.6817\\nQ 95.5219 36.7826, 95.1403 36.3298\\nQ 94.7651 35.8706, 94.0666 35.8706\\nQ 93.368 35.8706, 92.9864 36.3233\\nQ 92.6112 36.7761, 92.6112 37.6817\\nQ 92.6112 38.6066, 92.9864 39.0723\\nQ 93.368 39.538, 94.0666 39.538\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 25.2131 86.8213\\nL 27.9362 86.8213\\nL 27.9362 87.3452\\nL 25.8276 87.3452\\nL 25.8276 88.7358\\nL 27.7034 88.7358\\nL 27.7034 89.2662\\nL 25.8276 89.2662\\nL 25.8276 91.4007\\nL 25.2131 91.4007\\nL 25.2131 86.8213\\n' fill='#33CCCC'/>\\n<path class='atom-25' d='M 14.0178 67.4147\\nL 16.7409 67.4147\\nL 16.7409 67.9386\\nL 14.6323 67.9386\\nL 14.6323 69.3292\\nL 16.5081 69.3292\\nL 16.5081 69.8596\\nL 14.6323 69.8596\\nL 14.6323 71.9941\\nL 14.0178 71.9941\\nL 14.0178 67.4147\\n' fill='#33CCCC'/>\\n<path class='atom-26' d='M 14.0146 80.3499\\nL 16.7377 80.3499\\nL 16.7377 80.8738\\nL 14.6291 80.8738\\nL 14.6291 82.2644\\nL 16.5048 82.2644\\nL 16.5048 82.7948\\nL 14.6291 82.7948\\nL 14.6291 84.9293\\nL 14.0146 84.9293\\nL 14.0146 80.3499\\n' fill='#33CCCC'/>\\n</svg>\\n", "mols2grid-id": 240, "data-ID": 1208, "data-Solubility": -3.59, "data-SMILES": "NS(=O)(=O)c3cc2c(NC(Cc1ccccc1)NS2(=O)=O)cc3C(F)(F)F", "mols2grid-tooltip": "<strong>Name</strong>: Bendroflumethiazide<br><strong>SMILES</strong>: NS(=O)(=O)c3cc2c(NC(Cc1ccccc1)NS2(=O)=O)cc3C(F)(F)F<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.59</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.256,98.0699 L 109.473,91.8748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.473,91.8748 L 109.451,79.4389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.473,91.8748 L 103.949,95.0746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 103.949,95.0746 L 98.424,98.2744' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 93.6047,98.2855 L 88.0667,95.1035' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.0667,95.1035 L 82.5286,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.5286,91.9214 L 82.5286,76.3765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.4197,89.5897 L 79.4197,78.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-4' d='M 69.0668,99.6939 L 82.5286,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 82.5286,76.3765 L 69.0668,68.6041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 69.0668,68.6041 L 55.6049,76.3765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.602,72.4624 L 59.1787,77.9031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-6 atom-12' d='M 69.0668,68.6041 L 69.0668,62.1225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-6 atom-12' d='M 69.0668,62.1225 L 69.0668,55.6409' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 55.6049,76.3765 L 50.5181,73.4399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 50.5181,73.4399 L 45.4313,70.5032' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 55.6049,76.3765 L 55.6049,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 55.6049,91.9214 L 69.0668,99.6939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 59.1787,90.3949 L 68.602,95.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.0668,99.6939 L 69.0668,104.71' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.0668,104.71 L 69.0668,109.727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 67.0119,51.5999 L 58.4684,45.5669' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-12' d='M 81.6281,44.1209 L 76.3748,47.8555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-12' d='M 76.3748,47.8555 L 71.1216,51.5901' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 58.7926,42.0486 L 59.2852,35.4697' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 59.2852,35.4697 L 59.7779,28.8907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 55.8343,41.0924 L 59.2852,35.4697' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 59.2852,35.4697 L 62.7362,29.8469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 61.257,29.3688 L 67.8242,29.3583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 67.8242,29.3583 L 74.3914,29.3478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-14 atom-18' d='M 61.257,29.3688 L 52.1104,16.822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 77.6773,32.027 L 79.6527,38.0739' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 79.6527,38.0739 L 81.6281,44.1209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 81.1413,45.5972 L 85.8809,47.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 85.8809,47.16 L 90.6205,48.7229' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 82.1149,42.6446 L 86.8545,44.2074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 86.8545,44.2074 L 91.5941,45.7702' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 52.1104,16.822 L 39.7439,18.134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 52.1104,16.822 L 57.1542,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-21' d='M 52.1104,16.822 L 44.7898,6.76964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 93.9935 99.6825\\nQ 93.9935 98.6254, 94.5158 98.0347\\nQ 95.0381 97.444, 96.0143 97.444\\nQ 96.9906 97.444, 97.5129 98.0347\\nQ 98.0352 98.6254, 98.0352 99.6825\\nQ 98.0352 100.752, 97.5067 101.361\\nQ 96.9781 101.964, 96.0143 101.964\\nQ 95.0443 101.964, 94.5158 101.361\\nQ 93.9935 100.758, 93.9935 99.6825\\nM 96.0143 101.467\\nQ 96.6859 101.467, 97.0465 101.019\\nQ 97.4134 100.565, 97.4134 99.6825\\nQ 97.4134 98.8182, 97.0465 98.3829\\nQ 96.6859 97.9414, 96.0143 97.9414\\nQ 95.3428 97.9414, 94.9759 98.3767\\nQ 94.6153 98.812, 94.6153 99.6825\\nQ 94.6153 100.572, 94.9759 101.019\\nQ 95.3428 101.467, 96.0143 101.467\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 40.6186 70.3109\\nQ 40.6186 69.2166, 41.1285 68.6445\\nQ 41.6445 68.0662, 42.6208 68.0662\\nQ 43.5286 68.0662, 44.0136 68.7067\\nL 43.6032 69.0425\\nQ 43.2488 68.5761, 42.6208 68.5761\\nQ 41.9554 68.5761, 41.601 69.0238\\nQ 41.2528 69.4653, 41.2528 70.3109\\nQ 41.2528 71.1814, 41.6135 71.6291\\nQ 41.9803 72.0768, 42.6892 72.0768\\nQ 43.1742 72.0768, 43.74 71.7846\\nL 43.9141 72.2509\\nQ 43.684 72.4002, 43.3358 72.4872\\nQ 42.9876 72.5743, 42.6021 72.5743\\nQ 41.6445 72.5743, 41.1285 71.9898\\nQ 40.6186 71.4053, 40.6186 70.3109\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 44.5483 67.7989\\nL 45.1204 67.7989\\nL 45.1204 72.5183\\nL 44.5483 72.5183\\nL 44.5483 67.7989\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 67.3693 112.282\\nQ 67.3693 111.188, 67.8791 110.616\\nQ 68.3952 110.037, 69.3714 110.037\\nQ 70.2793 110.037, 70.7643 110.678\\nL 70.3539 111.014\\nQ 69.9995 110.547, 69.3714 110.547\\nQ 68.7061 110.547, 68.3517 110.995\\nQ 68.0035 111.436, 68.0035 112.282\\nQ 68.0035 113.153, 68.3641 113.6\\nQ 68.731 114.048, 69.4398 114.048\\nQ 69.9248 114.048, 70.4907 113.756\\nL 70.6648 114.222\\nQ 70.4347 114.371, 70.0865 114.458\\nQ 69.7383 114.545, 69.3528 114.545\\nQ 68.3952 114.545, 67.8791 113.961\\nQ 67.3693 113.376, 67.3693 112.282\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 71.299 109.77\\nL 71.8711 109.77\\nL 71.8711 114.489\\nL 71.299 114.489\\nL 71.299 109.77\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 68.0937 50.8498\\nL 69.5362 53.1815\\nQ 69.6792 53.4116, 69.9093 53.8282\\nQ 70.1394 54.2448, 70.1518 54.2696\\nL 70.1518 50.8498\\nL 70.7363 50.8498\\nL 70.7363 55.2521\\nL 70.1331 55.2521\\nL 68.5849 52.7027\\nQ 68.4046 52.4042, 68.2118 52.0623\\nQ 68.0253 51.7203, 67.9693 51.6146\\nL 67.9693 55.2521\\nL 67.3972 55.2521\\nL 67.3972 50.8498\\nL 68.0937 50.8498\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 55.5033 41.9591\\nL 56.9459 44.2909\\nQ 57.0889 44.5209, 57.319 44.9375\\nQ 57.549 45.3541, 57.5615 45.379\\nL 57.5615 41.9591\\nL 58.146 41.9591\\nL 58.146 46.3614\\nL 57.5428 46.3614\\nL 55.9945 43.8121\\nQ 55.8142 43.5136, 55.6215 43.1716\\nQ 55.4349 42.8296, 55.379 42.7239\\nL 55.379 46.3614\\nL 54.8069 46.3614\\nL 54.8069 41.9591\\nL 55.5033 41.9591\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 74.78 29.3564\\nQ 74.78 28.2993, 75.3023 27.7086\\nQ 75.8246 27.1179, 76.8009 27.1179\\nQ 77.7771 27.1179, 78.2994 27.7086\\nQ 78.8217 28.2993, 78.8217 29.3564\\nQ 78.8217 30.4259, 78.2932 31.0352\\nQ 77.7646 31.6384, 76.8009 31.6384\\nQ 75.8309 31.6384, 75.3023 31.0352\\nQ 74.78 30.4321, 74.78 29.3564\\nM 76.8009 31.1409\\nQ 77.4724 31.1409, 77.833 30.6932\\nQ 78.1999 30.2393, 78.1999 29.3564\\nQ 78.1999 28.4921, 77.833 28.0568\\nQ 77.4724 27.6153, 76.8009 27.6153\\nQ 76.1293 27.6153, 75.7625 28.0506\\nQ 75.4018 28.4859, 75.4018 29.3564\\nQ 75.4018 30.2455, 75.7625 30.6932\\nQ 76.1293 31.1409, 76.8009 31.1409\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 91.4182 48.0278\\nQ 91.4182 46.9708, 91.9405 46.3801\\nQ 92.4629 45.7894, 93.4391 45.7894\\nQ 94.4153 45.7894, 94.9376 46.3801\\nQ 95.4599 46.9708, 95.4599 48.0278\\nQ 95.4599 49.0973, 94.9314 49.7067\\nQ 94.4029 50.3098, 93.4391 50.3098\\nQ 92.4691 50.3098, 91.9405 49.7067\\nQ 91.4182 49.1036, 91.4182 48.0278\\nM 93.4391 49.8124\\nQ 94.1106 49.8124, 94.4713 49.3647\\nQ 94.8381 48.9108, 94.8381 48.0278\\nQ 94.8381 47.1636, 94.4713 46.7283\\nQ 94.1106 46.2868, 93.4391 46.2868\\nQ 92.7675 46.2868, 92.4007 46.7221\\nQ 92.04 47.1573, 92.04 48.0278\\nQ 92.04 48.917, 92.4007 49.3647\\nQ 92.7675 49.8124, 93.4391 49.8124\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 241, "data-ID": 1213, "data-Solubility": -5.69, "data-SMILES": "CC(C)Oc1cc(c(Cl)cc1Cl)N2N=C(OC2=O)C(C)(C)C", "mols2grid-tooltip": "<strong>Name</strong>: Oxadiazon<br><strong>SMILES</strong>: CC(C)Oc1cc(c(Cl)cc1Cl)N2N=C(OC2=O)C(C)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.69</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.952,35.5063 L 106.93,43.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.93,43.0484 L 90.6102,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.6102,33.6716 L 90.6102,14.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.848,30.8499 L 86.848,17.6819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-2' d='M 74.3196,43.0773 L 90.6102,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.6102,14.8602 L 74.3196,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.3196,5.45455 L 58.0289,14.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.7572,10.1236 L 62.3537,16.7076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.0289,14.8602 L 58.0289,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 58.0289,33.6716 L 44.9952,41.1962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 58.0289,33.6716 L 74.3196,43.0773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 62.3537,31.8243 L 73.7572,38.4082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 74.3196,43.0773 L 74.3358,50.9209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 74.3358,50.9209 L 74.352,58.7645' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 76.8494,63.3322 L 83.7605,67.3095' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 83.7605,67.3095 L 90.6717,71.2868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-9 atom-15' d='M 71.8676,63.3496 L 64.9809,67.3608' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-9 atom-15' d='M 64.9809,67.3608 L 58.0942,71.3721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 90.6717,71.2868 L 103.692,63.7397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 90.6717,71.2868 L 90.7106,90.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 90.7106,90.1082 L 97.4092,93.9632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 97.4092,93.9632 L 104.108,97.8182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.03,102.649 L 107.043,108.597' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.043,108.597 L 107.055,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 59.0291,69.7397 L 53.9105,66.8081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 53.9105,66.8081 L 48.7919,63.8765' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 57.1592,73.0045 L 52.0407,70.0728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 52.0407,70.0728 L 46.9221,67.1412' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 58.0942,71.3721 L 58.1531,90.1935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 58.1531,90.1935 L 52.0124,93.7699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 52.0124,93.7699 L 45.8718,97.3463' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 73.1809 59.235\\nL 74.9266 62.0567\\nQ 75.0996 62.3351, 75.378 62.8393\\nQ 75.6565 63.3434, 75.6715 63.3735\\nL 75.6715 59.235\\nL 76.3788 59.235\\nL 76.3788 64.5624\\nL 75.6489 64.5624\\nL 73.7753 61.4773\\nQ 73.5571 61.1161, 73.3238 60.7023\\nQ 73.0981 60.2884, 73.0304 60.1605\\nL 73.0304 64.5624\\nL 72.3381 64.5624\\nL 72.3381 59.235\\nL 73.1809 59.235\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 104.578 99.5114\\nQ 104.578 98.2322, 105.21 97.5174\\nQ 105.842 96.8026, 107.024 96.8026\\nQ 108.205 96.8026, 108.837 97.5174\\nQ 109.469 98.2322, 109.469 99.5114\\nQ 109.469 100.806, 108.83 101.543\\nQ 108.19 102.273, 107.024 102.273\\nQ 105.85 102.273, 105.21 101.543\\nQ 104.578 100.813, 104.578 99.5114\\nM 107.024 101.671\\nQ 107.836 101.671, 108.273 101.129\\nQ 108.717 100.58, 108.717 99.5114\\nQ 108.717 98.4655, 108.273 97.9388\\nQ 107.836 97.4045, 107.024 97.4045\\nQ 106.211 97.4045, 105.767 97.9313\\nQ 105.331 98.458, 105.331 99.5114\\nQ 105.331 100.587, 105.767 101.129\\nQ 106.211 101.671, 107.024 101.671\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 42.5898 63.9077\\nQ 42.5898 62.6286, 43.2219 61.9137\\nQ 43.8539 61.1989, 45.0353 61.1989\\nQ 46.2167 61.1989, 46.8487 61.9137\\nQ 47.4808 62.6286, 47.4808 63.9077\\nQ 47.4808 65.202, 46.8412 65.9394\\nQ 46.2016 66.6693, 45.0353 66.6693\\nQ 43.8615 66.6693, 43.2219 65.9394\\nQ 42.5898 65.2095, 42.5898 63.9077\\nM 45.0353 66.0673\\nQ 45.848 66.0673, 46.2844 65.5255\\nQ 46.7283 64.9762, 46.7283 63.9077\\nQ 46.7283 62.8618, 46.2844 62.3351\\nQ 45.848 61.8009, 45.0353 61.8009\\nQ 44.2227 61.8009, 43.7787 62.3276\\nQ 43.3423 62.8543, 43.3423 63.9077\\nQ 43.3423 64.9838, 43.7787 65.5255\\nQ 44.2227 66.0673, 45.0353 66.0673\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 40.0478 97.9513\\nQ 40.0478 96.627, 40.6648 95.9347\\nQ 41.2893 95.235, 42.4707 95.235\\nQ 43.5693 95.235, 44.1562 96.01\\nL 43.6596 96.4163\\nQ 43.2307 95.852, 42.4707 95.852\\nQ 41.6656 95.852, 41.2367 96.3937\\nQ 40.8153 96.928, 40.8153 97.9513\\nQ 40.8153 99.0048, 41.2517 99.5465\\nQ 41.6957 100.088, 42.5535 100.088\\nQ 43.1404 100.088, 43.8251 99.7346\\nL 44.0358 100.299\\nQ 43.7574 100.48, 43.336 100.585\\nQ 42.9146 100.69, 42.4481 100.69\\nQ 41.2893 100.69, 40.6648 99.9829\\nQ 40.0478 99.2756, 40.0478 97.9513\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 44.8033 94.9114\\nL 45.4956 94.9114\\nL 45.4956 100.623\\nL 44.8033 100.623\\nL 44.8033 94.9114\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 242, "data-ID": 1218, "data-Solubility": -2.73, "data-SMILES": "CCc1cccc(C)c1N(C(C)COC)C(=O)CCl", "mols2grid-tooltip": "<strong>Name</strong>: Metolachlor<br><strong>SMILES</strong>: CCc1cccc(C)c1N(C(C)COC)C(=O)CCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.73</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 147.365,59.2768 L 141.097,59.1509' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.097,59.1509 L 134.829,59.0249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 147.287,63.134 L 141.019,63.0081' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.019,63.0081 L 134.751,62.8822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.79,60.9536 L 124.805,77.3888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-1' d='M 125.267,43.7493 L 134.79,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.851,75.4603 L 105.252,78.8569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.76,79.3173 L 105.343,75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.298,76.9284 L 92.3952,91.3665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-3' d='M 95.9279,60.3389 L 105.298,76.9284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.3952,91.3665 L 74.8836,83.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.8836,83.5334 L 74.8938,89.6754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.8938,89.6754 L 74.9041,95.8174' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 74.8836,83.5334 L 57.5263,91.3665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-5' d='M 77.1881,64.4863 L 74.8836,83.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.5263,91.3665 L 51.1906,86.6461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.1906,86.6461 L 44.8549,81.9257' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 42.2298,76.4594 L 43.1194,68.7065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 43.1194,68.7065 L 44.009,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 44.009,60.9536 L 28.6476,49.1248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 44.0586,56.1225 L 33.3056,47.8423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-9' d='M 61.5193,53.1192 L 44.009,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 28.6476,49.1248 L 22.991,51.5243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 22.991,51.5243 L 17.3345,53.9237' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 28.6476,49.1248 L 30.7991,30.0777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 30.7991,30.0777 L 26.0241,26.5749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 26.0241,26.5749 L 21.2491,23.0722' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 30.7991,30.0777 L 48.4637,22.2446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 35.0127,32.4296 L 47.378,26.9464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 48.4637,22.2446 L 63.6708,33.9177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 63.6708,33.9177 L 61.5193,53.1192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 59.5141,36.3683 L 58.008,49.8094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 61.5193,53.1192 L 77.1881,64.4863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 77.605,66.3697 L 95.5111,58.4554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 76.7713,62.6028 L 96.3448,62.2223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 95.9279,60.3389 L 105.758,43.4419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 105.728,45.3707 L 125.297,41.8205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 105.789,41.5132 L 125.237,45.6781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-21' d='M 125.267,43.7493 L 128.267,38.7493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-21' d='M 128.267,38.7493 L 131.267,33.7493' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 147.712 61.2789\\nQ 147.712 59.9672, 148.36 59.2342\\nQ 149.008 58.5012, 150.22 58.5012\\nQ 151.431 58.5012, 152.079 59.2342\\nQ 152.727 59.9672, 152.727 61.2789\\nQ 152.727 62.6061, 152.071 63.3623\\nQ 151.416 64.1107, 150.22 64.1107\\nQ 149.016 64.1107, 148.36 63.3623\\nQ 147.712 62.6138, 147.712 61.2789\\nM 150.22 63.4935\\nQ 151.053 63.4935, 151.5 62.9379\\nQ 151.956 62.3746, 151.956 61.2789\\nQ 151.956 60.2064, 151.5 59.6663\\nQ 151.053 59.1184, 150.22 59.1184\\nQ 149.386 59.1184, 148.931 59.6586\\nQ 148.483 60.1987, 148.483 61.2789\\nQ 148.483 62.3823, 148.931 62.9379\\nQ 149.386 63.4935, 150.22 63.4935\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 72.4016 98.981\\nQ 72.4016 97.6693, 73.0497 96.9362\\nQ 73.6979 96.2032, 74.9093 96.2032\\nQ 76.1207 96.2032, 76.7689 96.9362\\nQ 77.417 97.6693, 77.417 98.981\\nQ 77.417 100.308, 76.7612 101.064\\nQ 76.1053 101.813, 74.9093 101.813\\nQ 73.7056 101.813, 73.0497 101.064\\nQ 72.4016 100.316, 72.4016 98.981\\nM 74.9093 101.196\\nQ 75.7427 101.196, 76.1902 100.64\\nQ 76.6454 100.077, 76.6454 98.981\\nQ 76.6454 97.9085, 76.1902 97.3683\\nQ 75.7427 96.8205, 74.9093 96.8205\\nQ 74.076 96.8205, 73.6207 97.3606\\nQ 73.1732 97.9007, 73.1732 98.981\\nQ 73.1732 100.084, 73.6207 100.64\\nQ 74.076 101.196, 74.9093 101.196\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 78.0729 96.2649\\nL 78.8137 96.2649\\nL 78.8137 98.5875\\nL 81.6069 98.5875\\nL 81.6069 96.2649\\nL 82.3476 96.2649\\nL 82.3476 101.728\\nL 81.6069 101.728\\nL 81.6069 99.2048\\nL 78.8137 99.2048\\nL 78.8137 101.728\\nL 78.0729 101.728\\nL 78.0729 96.2649\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 39.351 79.7088\\nQ 39.351 78.3971, 39.9992 77.664\\nQ 40.6473 76.931, 41.8588 76.931\\nQ 43.0702 76.931, 43.7183 77.664\\nQ 44.3665 78.3971, 44.3665 79.7088\\nQ 44.3665 81.036, 43.7106 81.7921\\nQ 43.0548 82.5406, 41.8588 82.5406\\nQ 40.6551 82.5406, 39.9992 81.7921\\nQ 39.351 81.0437, 39.351 79.7088\\nM 41.8588 81.9233\\nQ 42.6921 81.9233, 43.1396 81.3678\\nQ 43.5949 80.8045, 43.5949 79.7088\\nQ 43.5949 78.6363, 43.1396 78.0961\\nQ 42.6921 77.5483, 41.8588 77.5483\\nQ 41.0254 77.5483, 40.5702 78.0884\\nQ 40.1227 78.6285, 40.1227 79.7088\\nQ 40.1227 80.8122, 40.5702 81.3678\\nQ 41.0254 81.9233, 41.8588 81.9233\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 7.27273 52.4505\\nL 8.01347 52.4505\\nL 8.01347 54.773\\nL 10.8067 54.773\\nL 10.8067 52.4505\\nL 11.5474 52.4505\\nL 11.5474 57.9134\\nL 10.8067 57.9134\\nL 10.8067 55.3903\\nL 8.01347 55.3903\\nL 8.01347 57.9134\\nL 7.27273 57.9134\\nL 7.27273 52.4505\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 11.9332 55.1665\\nQ 11.9332 53.8548, 12.5814 53.1218\\nQ 13.2295 52.3887, 14.441 52.3887\\nQ 15.6524 52.3887, 16.3005 53.1218\\nQ 16.9487 53.8548, 16.9487 55.1665\\nQ 16.9487 56.4937, 16.2928 57.2499\\nQ 15.637 57.9983, 14.441 57.9983\\nQ 13.2373 57.9983, 12.5814 57.2499\\nQ 11.9332 56.5014, 11.9332 55.1665\\nM 14.441 57.381\\nQ 15.2743 57.381, 15.7218 56.8255\\nQ 16.1771 56.2622, 16.1771 55.1665\\nQ 16.1771 54.094, 15.7218 53.5539\\nQ 15.2743 53.006, 14.441 53.006\\nQ 13.6076 53.006, 13.1524 53.5461\\nQ 12.7048 54.0863, 12.7048 55.1665\\nQ 12.7048 56.2699, 13.1524 56.8255\\nQ 13.6076 57.381, 14.441 57.381\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 11.1874 18.2489\\nL 11.9281 18.2489\\nL 11.9281 20.5715\\nL 14.7213 20.5715\\nL 14.7213 18.2489\\nL 15.4621 18.2489\\nL 15.4621 23.7119\\nL 14.7213 23.7119\\nL 14.7213 21.1888\\nL 11.9281 21.1888\\nL 11.9281 23.7119\\nL 11.1874 23.7119\\nL 11.1874 18.2489\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 15.8479 20.965\\nQ 15.8479 19.6533, 16.496 18.9202\\nQ 17.1442 18.1872, 18.3556 18.1872\\nQ 19.567 18.1872, 20.2152 18.9202\\nQ 20.8633 19.6533, 20.8633 20.965\\nQ 20.8633 22.2922, 20.2075 23.0483\\nQ 19.5516 23.7968, 18.3556 23.7968\\nQ 17.1519 23.7968, 16.496 23.0483\\nQ 15.8479 22.2999, 15.8479 20.965\\nM 18.3556 23.1795\\nQ 19.1889 23.1795, 19.6365 22.6239\\nQ 20.0917 22.0607, 20.0917 20.965\\nQ 20.0917 19.8925, 19.6365 19.3523\\nQ 19.1889 18.8045, 18.3556 18.8045\\nQ 17.5223 18.8045, 17.067 19.3446\\nQ 16.6195 19.8847, 16.6195 20.965\\nQ 16.6195 22.0684, 17.067 22.6239\\nQ 17.5223 23.1795, 18.3556 23.1795\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 130.699 30.5316\\nQ 130.699 29.2199, 131.347 28.4869\\nQ 131.995 27.7539, 133.207 27.7539\\nQ 134.418 27.7539, 135.066 28.4869\\nQ 135.715 29.2199, 135.715 30.5316\\nQ 135.715 31.8588, 135.059 32.615\\nQ 134.403 33.3634, 133.207 33.3634\\nQ 132.003 33.3634, 131.347 32.615\\nQ 130.699 31.8665, 130.699 30.5316\\nM 133.207 32.7462\\nQ 134.04 32.7462, 134.488 32.1906\\nQ 134.943 31.6273, 134.943 30.5316\\nQ 134.943 29.4591, 134.488 28.919\\nQ 134.04 28.3711, 133.207 28.3711\\nQ 132.374 28.3711, 131.918 28.9113\\nQ 131.471 29.4514, 131.471 30.5316\\nQ 131.471 31.635, 131.918 32.1906\\nQ 132.374 32.7462, 133.207 32.7462\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 136.37 27.8156\\nL 137.111 27.8156\\nL 137.111 30.1381\\nL 139.904 30.1381\\nL 139.904 27.8156\\nL 140.645 27.8156\\nL 140.645 33.2786\\nL 139.904 33.2786\\nL 139.904 30.7554\\nL 137.111 30.7554\\nL 137.111 33.2786\\nL 136.37 33.2786\\nL 136.37 27.8156\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 243, "data-ID": 1223, "data-Solubility": -2.7, "data-SMILES": "O=C1C=C2CC3(O)COc4c(O)c(O)ccc4C3=C2C=C1O", "mols2grid-tooltip": "<strong>Name</strong>: Hematein<br><strong>SMILES</strong>: O=C1C=C2CC3(O)COc4c(O)c(O)ccc4C3=C2C=C1O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.7</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 89.2795,100.159 L 89.2795,91.1657' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 89.2795,91.1657 L 89.2795,82.1726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.9631,97.461 L 84.9631,91.1657' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.9631,91.1657 L 84.9631,84.8705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-21' d='M 86.4221,105.404 L 78.5058,109.975' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-21' d='M 78.5058,109.975 L 70.5896,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 89.2795,82.1726 L 70.5896,71.3816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 70.5896,71.3816 L 70.5896,49.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-2 atom-19' d='M 70.5896,71.3816 L 51.8996,82.1726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-2 atom-19' d='M 69.9443,76.7383 L 56.8613,84.292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.5896,49.7881 L 64.7308,46.4078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.7308,46.4078 L 58.872,43.0275' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 70.5896,49.7881 L 89.2838,38.9785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 70.5896,49.7881 L 51.891,60.5877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.2838,38.9785 L 107.981,49.7579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.2443,36.856 L 107.332,44.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 89.2838,38.9785 L 89.2694,17.3965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 107.981,49.7579 L 126.664,38.9555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.664,38.9555 L 126.651,17.3735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.345,35.7208 L 122.336,20.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 126.651,17.3735 L 107.954,6.59407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 126.651,17.3735 L 132.73,13.8583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 132.73,13.8583 L 138.809,10.3431' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-9' d='M 89.2694,17.3965 L 107.954,6.59407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-9' d='M 94.2325,19.513 L 107.311,11.9512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 51.891,60.5877 L 51.8953,82.1697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 47.5752,63.8259 L 47.5783,78.9333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-12 atom-18' d='M 51.891,60.5877 L 33.1996,49.7997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 51.8953,82.1697 L 33.2053,92.9635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-17' d='M 51.8953,82.1697 L 57.9778,85.68' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-17' d='M 57.9778,85.68 L 64.0603,89.1904' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.2053,92.9635 L 14.5139,82.1754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 32.5593,87.6069 L 19.4753,80.0553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 14.5139,82.1754 L 14.5096,60.5935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-16' d='M 33.1996,49.7997 L 14.5096,60.5935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-16' d='M 32.5548,55.1566 L 19.4718,62.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 51.8996,82.1726 L 51.8996,91.1657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 51.8996,91.1657 L 51.8996,100.159' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 70.5896,114.545 L 62.6733,109.975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 62.6733,109.975 L 54.757,105.404' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 70.3729,109.436 L 64.8315,106.237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 64.8315,106.237 L 59.2902,103.037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 87.9285 100.698\\nL 89.9313 103.936\\nQ 90.1298 104.255, 90.4493 104.834\\nQ 90.7687 105.412, 90.7859 105.447\\nL 90.7859 100.698\\nL 91.5974 100.698\\nL 91.5974 106.81\\nL 90.76 106.81\\nL 88.6105 103.271\\nQ 88.3601 102.857, 88.0925 102.382\\nQ 87.8335 101.907, 87.7558 101.76\\nL 87.7558 106.81\\nL 86.9616 106.81\\nL 86.9616 100.698\\nL 87.9285 100.698\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 47.6149 38.1382\\nL 48.4436 38.1382\\nL 48.4436 40.7367\\nL 51.5687 40.7367\\nL 51.5687 38.1382\\nL 52.3974 38.1382\\nL 52.3974 44.2502\\nL 51.5687 44.2502\\nL 51.5687 41.4273\\nL 48.4436 41.4273\\nL 48.4436 44.2502\\nL 47.6149 44.2502\\nL 47.6149 38.1382\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 52.8291 41.177\\nQ 52.8291 39.7094, 53.5542 38.8893\\nQ 54.2794 38.0692, 55.6347 38.0692\\nQ 56.9901 38.0692, 57.7152 38.8893\\nQ 58.4404 39.7094, 58.4404 41.177\\nQ 58.4404 42.6618, 57.7066 43.5078\\nQ 56.9728 44.3452, 55.6347 44.3452\\nQ 54.288 44.3452, 53.5542 43.5078\\nQ 52.8291 42.6704, 52.8291 41.177\\nM 55.6347 43.6546\\nQ 56.5671 43.6546, 57.0678 43.033\\nQ 57.5771 42.4028, 57.5771 41.177\\nQ 57.5771 39.977, 57.0678 39.3727\\nQ 56.5671 38.7598, 55.6347 38.7598\\nQ 54.7024 38.7598, 54.193 39.3641\\nQ 53.6923 39.9684, 53.6923 41.177\\nQ 53.6923 42.4114, 54.193 43.033\\nQ 54.7024 43.6546, 55.6347 43.6546\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 139.24 8.94219\\nQ 139.24 7.42282, 139.948 6.6286\\nQ 140.665 5.82575, 142.02 5.82575\\nQ 143.28 5.82575, 143.954 6.71493\\nL 143.384 7.1811\\nQ 142.892 6.53364, 142.02 6.53364\\nQ 141.096 6.53364, 140.604 7.1552\\nQ 140.121 7.76813, 140.121 8.94219\\nQ 140.121 10.1508, 140.621 10.7723\\nQ 141.131 11.3939, 142.115 11.3939\\nQ 142.788 11.3939, 143.574 10.9882\\nL 143.816 11.6356\\nQ 143.496 11.8428, 143.013 11.9637\\nQ 142.529 12.0845, 141.994 12.0845\\nQ 140.665 12.0845, 139.948 11.273\\nQ 139.24 10.4616, 139.24 8.94219\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 144.696 5.45455\\nL 145.49 5.45455\\nL 145.49 12.0068\\nL 144.696 12.0068\\nL 144.696 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 64.4919 91.0111\\nQ 64.4919 89.4917, 65.1998 88.6975\\nQ 65.9164 87.8946, 67.2717 87.8946\\nQ 68.5321 87.8946, 69.2054 88.7838\\nL 68.6357 89.25\\nQ 68.1436 88.6025, 67.2717 88.6025\\nQ 66.348 88.6025, 65.8559 89.2241\\nQ 65.3725 89.837, 65.3725 91.0111\\nQ 65.3725 92.2197, 65.8732 92.8412\\nQ 66.3825 93.4628, 67.3667 93.4628\\nQ 68.04 93.4628, 68.8256 93.057\\nL 69.0673 93.7045\\nQ 68.7479 93.9117, 68.2645 94.0325\\nQ 67.781 94.1534, 67.2458 94.1534\\nQ 65.9164 94.1534, 65.1998 93.3419\\nQ 64.4919 92.5304, 64.4919 91.0111\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 69.9479 87.5234\\nL 70.7421 87.5234\\nL 70.7421 94.0757\\nL 69.9479 94.0757\\nL 69.9479 87.5234\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 50.5486 100.698\\nL 52.5514 103.936\\nQ 52.7499 104.255, 53.0693 104.834\\nQ 53.3888 105.412, 53.406 105.447\\nL 53.406 100.698\\nL 54.2175 100.698\\nL 54.2175 106.81\\nL 53.3801 106.81\\nL 51.2306 103.271\\nQ 50.9802 102.857, 50.7126 102.382\\nQ 50.4536 101.907, 50.3759 101.76\\nL 50.3759 106.81\\nL 49.5817 106.81\\nL 49.5817 100.698\\nL 50.5486 100.698\\n' fill='#0000FF'/>\\n<path d='M 50.4565,83.6085 L 50.4565,80.7309 L 53.3341,80.7309 L 53.3341,83.6085 L 50.4565,83.6085' style='fill:none;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n</svg>\\n", "mols2grid-id": 244, "data-ID": 1228, "data-Solubility": -4.38, "data-SMILES": "n(cc(C(O)(c(ccc(c1)Cl)c1)c(c(ccc2)Cl)c2)cn3)c3", "mols2grid-tooltip": "<strong>Name</strong>: Fenarimol<br><strong>SMILES</strong>: n(cc(C(O)(c(ccc(c1)Cl)c1)c(c(ccc2)Cl)c2)cn3)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.38</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 54.1165,88.7777 L 49.3683,94.0186' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 49.3683,94.0186 L 44.6201,99.2595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 72.3001,93.5464 L 65.5391,90.4142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 65.5391,90.4142 L 58.7782,87.282' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.6201,99.2595 L 53.3824,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 53.3824,114.545 L 60.8386,112.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 60.8386,112.984 L 68.2948,111.423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.6632,108.172 L 71.6048,100.775' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.6048,100.775 L 70.5463,93.3777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.1557,107.835 L 71.6048,100.775' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.6048,100.775 L 74.0538,93.7151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-5' d='M 72.3001,93.5464 L 87.5754,84.7489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.5754,84.7489 L 87.5877,77.402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.5877,77.402 L 87.5999,70.0552' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 85.2719,65.7686 L 78.8112,62.0272' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.8112,62.0272 L 72.3506,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-13' d='M 89.9377,65.7762 L 96.4095,62.0491' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-13' d='M 96.4095,62.0491 L 102.881,58.3221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 72.3506,58.2857 L 72.3506,40.6671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.8269,55.6429 L 68.8269,43.3099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-7' d='M 57.0929,67.095 L 72.3506,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.3506,40.6671 L 57.0929,31.8578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 57.0929,31.8578 L 41.8352,40.6671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 56.5661,36.2308 L 45.8857,42.3973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 41.8352,40.6671 L 41.8352,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 41.8352,58.2857 L 57.0929,67.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 45.8857,56.5555 L 56.5661,62.722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 102.881,58.3221 L 102.911,40.6929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 102.911,40.6929 L 118.165,31.8778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 103.436,36.3197 L 114.114,30.1491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-14' d='M 87.6482,31.8883 L 102.911,40.6929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 118.165,31.8778 L 118.158,14.2592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 118.158,14.2592 L 102.897,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 114.108,15.9907 L 103.425,9.82743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 102.897,5.45455 L 87.6424,14.2697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 87.6424,14.2697 L 87.6482,31.8883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 91.167,16.9113 L 91.1711,29.2444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 55.3463 83.7082\\nL 56.9813 86.351\\nQ 57.1434 86.6117, 57.4041 87.0839\\nQ 57.6649 87.5561, 57.679 87.5843\\nL 57.679 83.7082\\nL 58.3414 83.7082\\nL 58.3414 88.6978\\nL 57.6578 88.6978\\nL 55.903 85.8083\\nQ 55.6987 85.47, 55.4802 85.0824\\nQ 55.2688 84.6948, 55.2053 84.575\\nL 55.2053 88.6978\\nL 54.557 88.6978\\nL 54.557 83.7082\\nL 55.3463 83.7082\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 54.4971 78.2196\\nL 55.1736 78.2196\\nL 55.1736 80.3409\\nL 57.7248 80.3409\\nL 57.7248 78.2196\\nL 58.4013 78.2196\\nL 58.4013 83.2092\\nL 57.7248 83.2092\\nL 57.7248 80.9047\\nL 55.1736 80.9047\\nL 55.1736 83.2092\\nL 54.4971 83.2092\\nL 54.4971 78.2196\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 69.5246 108.44\\nL 71.1596 111.083\\nQ 71.3217 111.344, 71.5824 111.816\\nQ 71.8432 112.288, 71.8573 112.316\\nL 71.8573 108.44\\nL 72.5197 108.44\\nL 72.5197 113.43\\nL 71.8361 113.43\\nL 70.0813 110.54\\nQ 69.8769 110.202, 69.6585 109.814\\nQ 69.447 109.427, 69.3836 109.307\\nL 69.3836 113.43\\nL 68.7352 113.43\\nL 68.7352 108.44\\nL 69.5246 108.44\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 86.5019 64.6249\\nL 88.1369 67.2677\\nQ 88.299 67.5284, 88.5597 68.0006\\nQ 88.8205 68.4728, 88.8346 68.501\\nL 88.8346 64.6249\\nL 89.497 64.6249\\nL 89.497 69.6145\\nL 88.8134 69.6145\\nL 87.0586 66.725\\nQ 86.8542 66.3867, 86.6358 65.9991\\nQ 86.4243 65.6115, 86.3609 65.4917\\nL 86.3609 69.6145\\nL 85.7125 69.6145\\nL 85.7125 64.6249\\nL 86.5019 64.6249\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 245, "data-ID": 1233, "data-Solubility": -2.6, "data-SMILES": "N1CCN=C1CN(c2ccccc2)Cc3ccccc3", "mols2grid-tooltip": "<strong>Name</strong>: Antazoline<br><strong>SMILES</strong>: N1CCN=C1CN(c2ccccc2)Cc3ccccc3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.6</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 85.5848,37.2559 L 85.5848,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.989,35.3091 L 82.989,26.224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 74.3452,43.7453 L 85.5848,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.5848,24.2772 L 74.3452,17.7878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,17.7878 L 74.3452,13.8331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,13.8331 L 74.3452,9.87836' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 74.3452,17.7878 L 63.1056,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9571,21.0092 L 66.0894,25.5517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.1056,24.2772 L 63.1056,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.1056,37.2559 L 74.3452,43.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.0894,35.9814 L 73.9571,40.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.3452,43.7453 L 74.372,56.731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 74.372,56.731 L 63.1505,63.2671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 74.372,56.731 L 85.6272,63.2082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 61.8527,63.2712 L 61.8856,73.6542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 64.4484,63.263 L 64.4813,73.646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6272,63.2082 L 96.8486,56.6721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-13' d='M 85.6272,63.2082 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 98.1465,56.668 L 98.1136,46.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 95.5507,56.6762 L 95.5178,46.2932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 85.654,76.1939 L 96.8936,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0419,79.4153 L 93.9096,83.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-13' d='M 74.4144,82.6842 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.8936,82.6842 L 96.8944,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.8944,95.6629 L 85.6548,102.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.9106,94.3883 L 86.0429,98.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,102.152 L 85.6548,106.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,106.14 L 85.6548,110.128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 85.6548,102.152 L 74.4144,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 74.4144,95.6629 L 74.4144,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 77.0101,93.7161 L 77.0101,84.631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 72.3952 7.41679\\nQ 72.3952 6.39679, 72.8992 5.82679\\nQ 73.4032 5.25679, 74.3452 5.25679\\nQ 75.2872 5.25679, 75.7912 5.82679\\nQ 76.2952 6.39679, 76.2952 7.41679\\nQ 76.2952 8.44879, 75.7852 9.03679\\nQ 75.2752 9.61879, 74.3452 9.61879\\nQ 73.4092 9.61879, 72.8992 9.03679\\nQ 72.3952 8.45479, 72.3952 7.41679\\nM 74.3452 9.13879\\nQ 74.9932 9.13879, 75.3412 8.70679\\nQ 75.6952 8.26879, 75.6952 7.41679\\nQ 75.6952 6.58279, 75.3412 6.16279\\nQ 74.9932 5.73679, 74.3452 5.73679\\nQ 73.6972 5.73679, 73.3432 6.15679\\nQ 72.9952 6.57679, 72.9952 7.41679\\nQ 72.9952 8.27479, 73.3432 8.70679\\nQ 73.6972 9.13879, 74.3452 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 76.8052 5.30479\\nL 77.3812 5.30479\\nL 77.3812 7.11079\\nL 79.5532 7.11079\\nL 79.5532 5.30479\\nL 80.1292 5.30479\\nL 80.1292 9.55279\\nL 79.5532 9.55279\\nL 79.5532 7.59079\\nL 77.3812 7.59079\\nL 77.3812 9.55279\\nL 76.8052 9.55279\\nL 76.8052 5.30479\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 83.7048 112.547\\nQ 83.7048 111.527, 84.2088 110.957\\nQ 84.7128 110.387, 85.6548 110.387\\nQ 86.5968 110.387, 87.1008 110.957\\nQ 87.6048 111.527, 87.6048 112.547\\nQ 87.6048 113.579, 87.0948 114.167\\nQ 86.5848 114.749, 85.6548 114.749\\nQ 84.7188 114.749, 84.2088 114.167\\nQ 83.7048 113.585, 83.7048 112.547\\nM 85.6548 114.269\\nQ 86.3028 114.269, 86.6508 113.837\\nQ 87.0048 113.399, 87.0048 112.547\\nQ 87.0048 111.713, 86.6508 111.293\\nQ 86.3028 110.867, 85.6548 110.867\\nQ 85.0068 110.867, 84.6528 111.287\\nQ 84.3048 111.707, 84.3048 112.547\\nQ 84.3048 113.405, 84.6528 113.837\\nQ 85.0068 114.269, 85.6548 114.269\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 88.1148 110.435\\nL 88.6908 110.435\\nL 88.6908 112.241\\nL 90.8628 112.241\\nL 90.8628 110.435\\nL 91.4388 110.435\\nL 91.4388 114.683\\nL 90.8628 114.683\\nL 90.8628 112.721\\nL 88.6908 112.721\\nL 88.6908 114.683\\nL 88.1148 114.683\\nL 88.1148 110.435\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 246, "data-ID": 1237, "data-Solubility": -4.95, "data-SMILES": "c1cc(O)ccc1C(C=C)C(C=C)c2ccc(O)cc2", "mols2grid-tooltip": "<strong>Name</strong>: Dienestrol<br><strong>SMILES</strong>: c1cc(O)ccc1C(C=C)C(C=C)c2ccc(O)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.95</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 85.5848,37.2559 L 85.5848,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.989,35.3091 L 82.989,26.224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 74.3452,43.7453 L 85.5848,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.5848,24.2772 L 74.3452,17.7878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,17.7878 L 74.3452,13.8331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,13.8331 L 74.3452,9.87836' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 74.3452,17.7878 L 63.1056,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9571,21.0092 L 66.0894,25.5517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.1056,24.2772 L 63.1056,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.1056,37.2559 L 74.3452,43.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.0894,35.9814 L 73.9571,40.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.3452,43.7453 L 74.372,56.731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 74.372,56.731 L 63.1505,63.2671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 74.372,56.731 L 85.6272,63.2082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 63.1505,63.2671 L 63.1834,73.6501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6272,63.2082 L 96.8486,56.6721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-13' d='M 85.6272,63.2082 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 96.8486,56.6721 L 96.8157,46.2891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 85.654,76.1939 L 96.8936,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0419,79.4153 L 93.9096,83.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-13' d='M 74.4144,82.6842 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.8936,82.6842 L 96.8944,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.8944,95.6629 L 85.6548,102.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.9106,94.3883 L 86.0429,98.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,102.152 L 85.6548,106.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,106.14 L 85.6548,110.128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 85.6548,102.152 L 74.4144,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 74.4144,95.6629 L 74.4144,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 77.0101,93.7161 L 77.0101,84.631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 72.3952 7.41679\\nQ 72.3952 6.39679, 72.8992 5.82679\\nQ 73.4032 5.25679, 74.3452 5.25679\\nQ 75.2872 5.25679, 75.7912 5.82679\\nQ 76.2952 6.39679, 76.2952 7.41679\\nQ 76.2952 8.44879, 75.7852 9.03679\\nQ 75.2752 9.61879, 74.3452 9.61879\\nQ 73.4092 9.61879, 72.8992 9.03679\\nQ 72.3952 8.45479, 72.3952 7.41679\\nM 74.3452 9.13879\\nQ 74.9932 9.13879, 75.3412 8.70679\\nQ 75.6952 8.26879, 75.6952 7.41679\\nQ 75.6952 6.58279, 75.3412 6.16279\\nQ 74.9932 5.73679, 74.3452 5.73679\\nQ 73.6972 5.73679, 73.3432 6.15679\\nQ 72.9952 6.57679, 72.9952 7.41679\\nQ 72.9952 8.27479, 73.3432 8.70679\\nQ 73.6972 9.13879, 74.3452 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 76.8052 5.30479\\nL 77.3812 5.30479\\nL 77.3812 7.11079\\nL 79.5532 7.11079\\nL 79.5532 5.30479\\nL 80.1292 5.30479\\nL 80.1292 9.55279\\nL 79.5532 9.55279\\nL 79.5532 7.59079\\nL 77.3812 7.59079\\nL 77.3812 9.55279\\nL 76.8052 9.55279\\nL 76.8052 5.30479\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 83.7048 112.547\\nQ 83.7048 111.527, 84.2088 110.957\\nQ 84.7128 110.387, 85.6548 110.387\\nQ 86.5968 110.387, 87.1008 110.957\\nQ 87.6048 111.527, 87.6048 112.547\\nQ 87.6048 113.579, 87.0948 114.167\\nQ 86.5848 114.749, 85.6548 114.749\\nQ 84.7188 114.749, 84.2088 114.167\\nQ 83.7048 113.585, 83.7048 112.547\\nM 85.6548 114.269\\nQ 86.3028 114.269, 86.6508 113.837\\nQ 87.0048 113.399, 87.0048 112.547\\nQ 87.0048 111.713, 86.6508 111.293\\nQ 86.3028 110.867, 85.6548 110.867\\nQ 85.0068 110.867, 84.6528 111.287\\nQ 84.3048 111.707, 84.3048 112.547\\nQ 84.3048 113.405, 84.6528 113.837\\nQ 85.0068 114.269, 85.6548 114.269\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 88.1148 110.435\\nL 88.6908 110.435\\nL 88.6908 112.241\\nL 90.8628 112.241\\nL 90.8628 110.435\\nL 91.4388 110.435\\nL 91.4388 114.683\\nL 90.8628 114.683\\nL 90.8628 112.721\\nL 88.6908 112.721\\nL 88.6908 114.683\\nL 88.1148 114.683\\nL 88.1148 110.435\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 247, "data-ID": 1242, "data-Solubility": -4.43, "data-SMILES": "c1cc(O)ccc1C(CC)C(CC)c2ccc(O)cc2", "mols2grid-tooltip": "<strong>Name</strong>: Hexestrol<br><strong>SMILES</strong>: c1cc(O)ccc1C(CC)C(CC)c2ccc(O)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.43</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 56.1823,84.459 L 40.316,75.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 51.9661,86.2641 L 40.8597,79.8499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 56.1823,102.783 L 56.1823,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 72.0485,75.2959 L 56.1823,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.316,75.2959 L 24.2258,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 24.2258,84.459 L 24.2258,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 27.8974,87.2076 L 27.8974,100.034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 24.2258,102.783 L 40.316,111.946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.316,111.946 L 56.1823,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8597,107.392 L 51.9661,100.978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 56.1823,102.783 L 62.9005,106.663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 62.9005,106.663 L 69.6188,110.543' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.4782,110.543 L 81.1971,106.663' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 81.1971,106.663 L 87.916,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.6578,106.199 L 79.361,103.483' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.361,103.483 L 84.0642,100.767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.916,102.783 L 87.916,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.916,84.459 L 72.0485,75.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 83.6998,86.2641 L 72.5925,79.8499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-10' d='M 72.0485,75.2959 L 72.0865,56.9281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 72.0865,56.9281 L 67.1102,54.0436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 67.1102,54.0436 L 62.1339,51.159' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-12' d='M 72.0865,56.9281 L 88.0066,47.7662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 88.0066,47.7662 L 88.0209,40.0567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 88.0209,40.0567 L 88.0352,32.3473' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-12' d='M 104.613,57.1508 L 88.0066,47.7662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 90.4549,27.8833 L 96.8983,24.14' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 96.8983,24.14 L 103.342,20.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 90.4132,28.983 L 97.1773,28.1198' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 97.1773,28.1198 L 103.941,27.2566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-14' d='M 120.021,29.7875 L 103.342,20.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 103.941,27.2566 L 104.487,48.8432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 104.487,48.8432 L 120.355,47.481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 120.355,47.481 L 120.021,29.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-17 atom-21' d='M 120.355,47.481 L 104.613,57.1508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 120.021,29.7875 L 135.774,20.1373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 135.774,20.1373 L 135.407,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 70.8993 109.346\\nL 72.6029 112.1\\nQ 72.7718 112.372, 73.0435 112.864\\nQ 73.3152 113.356, 73.3299 113.385\\nL 73.3299 109.346\\nL 74.0202 109.346\\nL 74.0202 114.545\\nL 73.3079 114.545\\nL 71.4794 111.535\\nQ 71.2665 111.182, 71.0388 110.778\\nQ 70.8185 110.375, 70.7524 110.25\\nL 70.7524 114.545\\nL 70.0769 114.545\\nL 70.0769 109.346\\nL 70.8993 109.346\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 52.5584 46.9927\\nL 53.2633 46.9927\\nL 53.2633 49.203\\nL 55.9216 49.203\\nL 55.9216 46.9927\\nL 56.6265 46.9927\\nL 56.6265 52.1917\\nL 55.9216 52.1917\\nL 55.9216 49.7905\\nL 53.2633 49.7905\\nL 53.2633 52.1917\\nL 52.5584 52.1917\\nL 52.5584 46.9927\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 56.9937 49.5775\\nQ 56.9937 48.3292, 57.6105 47.6316\\nQ 58.2273 46.934, 59.3802 46.934\\nQ 60.5331 46.934, 61.1499 47.6316\\nQ 61.7668 48.3292, 61.7668 49.5775\\nQ 61.7668 50.8406, 61.1426 51.5602\\nQ 60.5184 52.2725, 59.3802 52.2725\\nQ 58.2347 52.2725, 57.6105 51.5602\\nQ 56.9937 50.8479, 56.9937 49.5775\\nM 59.3802 51.685\\nQ 60.1733 51.685, 60.5992 51.1563\\nQ 61.0325 50.6203, 61.0325 49.5775\\nQ 61.0325 48.5568, 60.5992 48.0428\\nQ 60.1733 47.5214, 59.3802 47.5214\\nQ 58.5872 47.5214, 58.1539 48.0354\\nQ 57.728 48.5495, 57.728 49.5775\\nQ 57.728 50.6276, 58.1539 51.1563\\nQ 58.5872 51.685, 59.3802 51.685\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 86.8916 26.6862\\nL 88.5952 29.44\\nQ 88.7641 29.7117, 89.0358 30.2037\\nQ 89.3075 30.6956, 89.3222 30.725\\nL 89.3222 26.6862\\nL 90.0125 26.6862\\nL 90.0125 31.8852\\nL 89.3002 31.8852\\nL 87.4717 28.8745\\nQ 87.2588 28.5221, 87.0311 28.1182\\nQ 86.8108 27.7143, 86.7447 27.5895\\nL 86.7447 31.8852\\nL 86.0692 31.8852\\nL 86.0692 26.6862\\nL 86.8916 26.6862\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 248, "data-ID": 1253, "data-Solubility": -2.63, "data-SMILES": "c12ccccc1nccc2C(O)C3N(C4)CCC(C4CC)C3", "mols2grid-tooltip": "<strong>Name</strong>: Hydrocinchonine<br><strong>SMILES</strong>: c12ccccc1nccc2C(O)C3N(C4)CCC(C4CC)C3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.63</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.6388,74.5682 L 26.1483,77.1041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 26.1483,77.1041 L 11.6578,79.6399' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 40.6388,74.5682 L 40.9019,92.9865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-0' d='M 56.689,65.0959 L 40.6388,74.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-1' d='M 40.9019,92.9865 L 26.3085,87.0768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-1' d='M 26.3085,87.0768 L 11.7151,81.1671' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-3' d='M 40.9019,92.9865 L 57.0837,102.064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-4' d='M 57.0837,102.064 L 73.0024,92.5918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-5' d='M 73.0024,92.5918 L 89.1842,101.669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-4' d='M 72.7392,74.1735 L 73.0024,92.5918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 89.1842,101.669 L 104.971,92.3287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 104.971,92.3287 L 104.708,73.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 104.708,73.9104 L 120.627,64.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-7' d='M 88.6579,64.7013 L 104.708,73.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 120.627,64.4382 L 152.727,64.175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 120.364,46.0199 L 120.627,64.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 152.727,64.175 L 152.464,45.6252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 152.464,45.6252 L 136.282,36.5476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 136.282,36.5476 L 136.203,30.3084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 136.203,30.3084 L 136.123,24.0692' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 136.282,36.5476 L 120.364,46.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 120.364,46.0199 L 120.19,30.2341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 120.364,46.0199 L 104.313,36.9423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 104.313,36.9423 L 88.3948,46.4145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 88.3948,46.4145 L 88.6579,64.7013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-18' d='M 88.6579,64.7013 L 72.7392,74.1735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-19' d='M 72.7392,74.1735 L 72.5656,58.3877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-18 atom-20' d='M 72.7392,74.1735 L 56.689,65.0959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 7.48585 82.0118\\nQ 7.549 82.0355, 7.80949 82.146\\nQ 8.06998 82.2565, 8.35414 82.3276\\nQ 8.64621 82.3907, 8.93037 82.3907\\nQ 9.45924 82.3907, 9.76709 82.1381\\nQ 10.0749 81.8776, 10.0749 81.4277\\nQ 10.0749 81.1199, 9.91707 80.9304\\nQ 9.76709 80.741, 9.53028 80.6384\\nQ 9.29348 80.5357, 8.8988 80.4173\\nQ 8.40151 80.2674, 8.10155 80.1253\\nQ 7.80949 79.9832, 7.59636 79.6832\\nQ 7.39113 79.3833, 7.39113 78.8781\\nQ 7.39113 78.1756, 7.86474 77.7414\\nQ 8.34625 77.3073, 9.29348 77.3073\\nQ 9.94075 77.3073, 10.6748 77.6151\\nL 10.4933 78.2229\\nQ 9.82235 77.9467, 9.31716 77.9467\\nQ 8.7725 77.9467, 8.47255 78.1756\\nQ 8.17259 78.3966, 8.18049 78.7834\\nQ 8.18049 79.0833, 8.33046 79.2649\\nQ 8.48833 79.4464, 8.70935 79.549\\nQ 8.93827 79.6517, 9.31716 79.7701\\nQ 9.82235 79.9279, 10.1223 80.0858\\nQ 10.4223 80.2437, 10.6354 80.5673\\nQ 10.8564 80.8831, 10.8564 81.4277\\nQ 10.8564 82.2013, 10.3354 82.6196\\nQ 9.82235 83.0301, 8.96195 83.0301\\nQ 8.46465 83.0301, 8.08576 82.9196\\nQ 7.71477 82.817, 7.27273 82.6354\\nL 7.48585 82.0118\\n' fill='#CCCC00'/>\\n<path class='atom-12' d='M 133.516 20.7776\\nQ 133.516 19.4357, 134.179 18.6858\\nQ 134.842 17.9359, 136.081 17.9359\\nQ 137.32 17.9359, 137.983 18.6858\\nQ 138.646 19.4357, 138.646 20.7776\\nQ 138.646 22.1353, 137.976 22.9088\\nQ 137.305 23.6745, 136.081 23.6745\\nQ 134.85 23.6745, 134.179 22.9088\\nQ 133.516 22.1432, 133.516 20.7776\\nM 136.081 23.043\\nQ 136.934 23.043, 137.391 22.4747\\nQ 137.857 21.8985, 137.857 20.7776\\nQ 137.857 19.6804, 137.391 19.1278\\nQ 136.934 18.5674, 136.081 18.5674\\nQ 135.229 18.5674, 134.763 19.1199\\nQ 134.305 19.6725, 134.305 20.7776\\nQ 134.305 21.9064, 134.763 22.4747\\nQ 135.229 23.043, 136.081 23.043\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 139.317 17.999\\nL 140.075 17.999\\nL 140.075 20.375\\nL 142.933 20.375\\nL 142.933 17.999\\nL 143.69 17.999\\nL 143.69 23.5877\\nL 142.933 23.5877\\nL 142.933 21.0065\\nL 140.075 21.0065\\nL 140.075 23.5877\\nL 139.317 23.5877\\nL 139.317 17.999\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 249, "data-ID": 1258, "data-Solubility": -5.41, "data-SMILES": "C1(S5)C5CC2CCC3C4CCC(O)C4(C)CCC3C2(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: Epitiostanol<br><strong>SMILES</strong>: C1(S5)C5CC2CCC3C4CCC(O)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.41</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.885,7.34252 L 131.202,9.98731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.202,9.98731 L 126.519,12.6321' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.243,12.5306 L 116.247,8.99259' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.247,8.99259 L 110.25,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-1' d='M 124.267,30.2713 L 124.332,23.4144' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-1' d='M 124.332,23.4144 L 124.396,16.5575' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.25,5.45455 L 95.9227,13.5473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9227,13.5473 L 95.8573,20.4042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.8573,20.4042 L 95.792,27.2611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 93.5869,31.239 L 87.5167,34.6836' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5167,34.6836 L 81.4464,38.1282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-4 atom-23' d='M 97.9445,31.2878 L 103.942,34.8259' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-4 atom-23' d='M 103.942,34.8259 L 109.939,38.364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 81.4464,38.1282 L 81.3148,54.5922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.3148,54.5922 L 66.9954,62.719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 66.9954,62.719 L 66.9405,69.5796' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 66.9405,69.5796 L 66.8857,76.4403' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.6851,80.4401 L 58.6498,83.9254' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.6498,83.9254 L 52.6146,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-8' d='M 80.9122,87.4107 L 74.9751,83.9331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-8' d='M 74.9751,83.9331 L 69.0381,80.4555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 52.6146,87.4107 L 38.3654,79.1819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 48.8314,89.0263 L 38.8569,83.2662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-9' d='M 52.6146,103.868 L 52.6146,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.3654,79.1819 L 24.1151,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 24.1151,87.4107 L 24.1151,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 27.4061,89.8793 L 27.4061,101.4' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 24.1151,103.868 L 38.3654,112.097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 38.3654,112.097 L 52.6146,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 38.8569,108.013 L 48.8314,102.253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 52.6146,103.868 L 58.7864,107.432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 58.7864,107.432 L 64.9582,110.997' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 68.7649,110.983 L 74.8385,107.426' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 74.8385,107.426 L 80.9122,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 80.9122,103.868 L 95.3621,112.097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.7083,102.243 L 94.8232,108.003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-16' d='M 80.9122,87.4107 L 80.9122,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 95.3621,112.097 L 109.612,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 109.612,103.868 L 109.612,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 106.321,101.4 L 106.321,89.8793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 109.612,87.4107 L 114.25,84.7338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 114.25,84.7338 L 118.887,82.0569' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 109.612,87.4107 L 95.3621,79.1819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 95.3621,79.1819 L 80.9122,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 94.8232,83.2761 L 84.7083,89.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 109.939,38.364 L 124.267,30.2713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 123.392 11.486\\nL 124.919 13.9543\\nQ 125.07 14.1978, 125.314 14.6388\\nQ 125.558 15.0798, 125.571 15.1061\\nL 125.571 11.486\\nL 126.189 11.486\\nL 126.189 16.1461\\nL 125.551 16.1461\\nL 123.912 13.4474\\nQ 123.721 13.1315, 123.517 12.7695\\nQ 123.32 12.4075, 123.26 12.2956\\nL 123.26 16.1461\\nL 122.655 16.1461\\nL 122.655 11.486\\nL 123.392 11.486\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 94.7357 27.6725\\nL 96.2628 30.1408\\nQ 96.4142 30.3843, 96.6577 30.8253\\nQ 96.9012 31.2663, 96.9144 31.2926\\nL 96.9144 27.6725\\nL 97.5331 27.6725\\nL 97.5331 32.3326\\nL 96.8946 32.3326\\nL 95.2557 29.634\\nQ 95.0648 29.318, 94.8608 28.956\\nQ 94.6633 28.594, 94.6041 28.4821\\nL 94.6041 32.3326\\nL 93.9985 32.3326\\nL 93.9985 27.6725\\nL 94.7357 27.6725\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 65.8336 76.8519\\nL 67.3607 79.3202\\nQ 67.5121 79.5637, 67.7556 80.0047\\nQ 67.9992 80.4457, 68.0123 80.472\\nL 68.0123 76.8519\\nL 68.631 76.8519\\nL 68.631 81.512\\nL 67.9926 81.512\\nL 66.3536 78.8133\\nQ 66.1627 78.4974, 65.9587 78.1354\\nQ 65.7612 77.7734, 65.702 77.6615\\nL 65.702 81.512\\nL 65.0964 81.512\\nL 65.0964 76.8519\\nL 65.8336 76.8519\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 65.5473 113.696\\nQ 65.6 113.716, 65.8172 113.808\\nQ 66.0344 113.9, 66.2713 113.96\\nQ 66.5149 114.012, 66.7518 114.012\\nQ 67.1928 114.012, 67.4495 113.802\\nQ 67.7063 113.584, 67.7063 113.209\\nQ 67.7063 112.953, 67.5746 112.795\\nQ 67.4495 112.637, 67.2521 112.551\\nQ 67.0546 112.466, 66.7255 112.367\\nQ 66.3108 112.242, 66.0607 112.123\\nQ 65.8172 112.005, 65.6395 111.755\\nQ 65.4683 111.505, 65.4683 111.083\\nQ 65.4683 110.497, 65.8633 110.135\\nQ 66.2648 109.773, 67.0546 109.773\\nQ 67.5944 109.773, 68.2065 110.03\\nL 68.0551 110.537\\nQ 67.4956 110.307, 67.0744 110.307\\nQ 66.6202 110.307, 66.3701 110.497\\nQ 66.12 110.682, 66.1265 111.004\\nQ 66.1265 111.254, 66.2516 111.406\\nQ 66.3832 111.557, 66.5675 111.643\\nQ 66.7584 111.728, 67.0744 111.827\\nQ 67.4956 111.959, 67.7457 112.09\\nQ 67.9959 112.222, 68.1736 112.492\\nQ 68.3579 112.755, 68.3579 113.209\\nQ 68.3579 113.854, 67.9235 114.203\\nQ 67.4956 114.545, 66.7782 114.545\\nQ 66.3635 114.545, 66.0476 114.453\\nQ 65.7382 114.368, 65.3696 114.216\\nL 65.5473 113.696\\n' fill='#CCCC00'/>\\n<path class='atom-20' d='M 119.216 80.9909\\nQ 119.216 79.8325, 119.755 79.2269\\nQ 120.302 78.6148, 121.335 78.6148\\nQ 122.296 78.6148, 122.81 79.2927\\nL 122.375 79.6482\\nQ 122 79.1545, 121.335 79.1545\\nQ 120.631 79.1545, 120.256 79.6284\\nQ 119.887 80.0958, 119.887 80.9909\\nQ 119.887 81.9124, 120.269 82.3863\\nQ 120.657 82.8602, 121.408 82.8602\\nQ 121.921 82.8602, 122.52 82.5509\\nL 122.704 83.0445\\nQ 122.461 83.2025, 122.092 83.2947\\nQ 121.723 83.3868, 121.315 83.3868\\nQ 120.302 83.3868, 119.755 82.7681\\nQ 119.216 82.1494, 119.216 80.9909\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 123.376 78.3317\\nL 123.981 78.3317\\nL 123.981 83.3276\\nL 123.376 83.3276\\nL 123.376 78.3317\\n' fill='#00CC00'/>\\n</svg>\\n", "mols2grid-id": 250, "data-ID": 1264, "data-Solubility": -4.4, "data-SMILES": "CN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4", "mols2grid-tooltip": "<strong>Name</strong>: Prochlorperazine<br><strong>SMILES</strong>: CN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.154,26.8715 L 131.039,32.7585' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.039,32.7585 L 130.925,38.6456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.878,26.9438 L 134.764,32.8309' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.764,32.8309 L 134.649,38.7179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 132.787,38.6817 L 137.77,41.687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 137.77,41.687 L 142.752,44.6922' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.787,38.6817 L 116.892,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 116.892,47.9453 L 100.593,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-3 atom-20' d='M 116.892,47.9453 L 116.892,29.3822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-3 atom-21' d='M 116.892,47.9453 L 116.268,62.8308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.593,56.5471 L 84.52,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-4 atom-19' d='M 100.593,56.5471 L 100.593,75.7894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 84.52,47.9453 L 68.6735,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-5 atom-16' d='M 84.52,47.9453 L 84.52,29.3822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-5 atom-18' d='M 84.52,47.9453 L 71.7154,40.3269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.6735,56.5471 L 68.6735,75.7894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-15' d='M 68.6735,56.5471 L 52.375,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 67.7323,77.3965 L 85.4613,83.4633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.6147,74.1824 L 83.5788,86.6774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 68.6735,75.7894 L 52.375,85.0704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-8' d='M 100.593,75.7894 L 84.52,85.0704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 53.3064,83.4575 L 35.3712,77.4022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 51.4437,86.6832 L 37.2339,74.1766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 36.3025,75.7894 L 36.3025,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 36.3025,75.7894 L 20.2387,85.228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-11' d='M 52.375,47.9453 L 36.3025,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 20.2387,85.228 L 7.27273,77.8877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 20.2387,85.228 L 20.3604,100.126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.52,29.3822 L 100.593,19.874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-17' d='M 116.892,29.3822 L 100.593,19.874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 130.655 23.8012\\nQ 130.655 22.5348, 131.281 21.827\\nQ 131.907 21.1193, 133.076 21.1193\\nQ 134.246 21.1193, 134.872 21.827\\nQ 135.498 22.5348, 135.498 23.8012\\nQ 135.498 25.0825, 134.864 25.8126\\nQ 134.231 26.5352, 133.076 26.5352\\nQ 131.914 26.5352, 131.281 25.8126\\nQ 130.655 25.09, 130.655 23.8012\\nM 133.076 25.9392\\nQ 133.881 25.9392, 134.313 25.4028\\nQ 134.753 24.859, 134.753 23.8012\\nQ 134.753 22.7657, 134.313 22.2442\\nQ 133.881 21.7153, 133.076 21.7153\\nQ 132.272 21.7153, 131.832 22.2368\\nQ 131.4 22.7582, 131.4 23.8012\\nQ 131.4 24.8665, 131.832 25.4028\\nQ 132.272 25.9392, 133.076 25.9392\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 143.125 46.3921\\nQ 143.125 45.1256, 143.751 44.4179\\nQ 144.376 43.7102, 145.546 43.7102\\nQ 146.715 43.7102, 147.341 44.4179\\nQ 147.967 45.1256, 147.967 46.3921\\nQ 147.967 47.6734, 147.334 48.4035\\nQ 146.701 49.1261, 145.546 49.1261\\nQ 144.384 49.1261, 143.751 48.4035\\nQ 143.125 47.6809, 143.125 46.3921\\nM 145.546 48.5301\\nQ 146.35 48.5301, 146.782 47.9937\\nQ 147.222 47.4499, 147.222 46.3921\\nQ 147.222 45.3566, 146.782 44.8351\\nQ 146.35 44.3062, 145.546 44.3062\\nQ 144.741 44.3062, 144.302 44.8277\\nQ 143.87 45.3491, 143.87 46.3921\\nQ 143.87 47.4574, 144.302 47.9937\\nQ 144.741 48.5301, 145.546 48.5301\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 148.6 43.7698\\nL 149.315 43.7698\\nL 149.315 46.0121\\nL 152.012 46.0121\\nL 152.012 43.7698\\nL 152.727 43.7698\\nL 152.727 49.0441\\nL 152.012 49.0441\\nL 152.012 46.6081\\nL 149.315 46.6081\\nL 149.315 49.0441\\nL 148.6 49.0441\\nL 148.6 43.7698\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 251, "data-ID": 1270, "data-Solubility": -3.8, "data-SMILES": "O=C(O)C(C(C(C(C(=C1)C=C(C2)C(C)C)C2)(CC3)C)C1)(C3)C", "mols2grid-tooltip": "<strong>Name</strong>: Abietic_Acid<br><strong>SMILES</strong>: O=C(O)C(C(C(C(C(=C1)C=C(C2)C(C)C)C2)(CC3)C)C1)(C3)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 23.5521,73.1872 L 23.5521,92.1651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-0' d='M 39.6472,63.8187 L 23.5521,73.1872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.5718,90.4511 L 17.1964,93.5256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.1964,93.5256 L 11.8211,96.6' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.5324,93.8791 L 19.1571,96.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.1571,96.9535 L 13.7817,100.028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.5521,92.1651 L 39.888,101.775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8967,103.472 L 55.455,90.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 38.8794,100.077 L 57.4722,93.623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.4636,91.9255 L 73.0404,101.535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-4' d='M 56.4636,72.9463 L 56.4636,91.9255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.0404,101.535 L 89.3751,91.6847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.3751,91.6847 L 89.1355,72.7068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 89.1355,72.7068 L 105.471,63.3383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-7' d='M 72.7995,63.5779 L 89.1355,72.7068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 105.471,63.3383 L 138.624,63.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-8' d='M 105.471,44.3591 L 105.471,63.3383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 138.624,63.5779 L 138.624,44.1195' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 138.624,44.1195 L 122.047,34.5101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.047,34.5101 L 116.58,31.556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 116.58,31.556 L 111.112,28.6019' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 122.047,34.5101 L 139.096,25.0626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-11 atom-15' d='M 122.047,34.5101 L 105.471,44.3591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 139.096,25.0626 L 152.727,17.0776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 143.137,27.2723 L 154.723,20.4851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 139.145,20.4574 L 150.731,13.6702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 105.471,44.3591 L 91.809,52.2875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 105.471,44.3591 L 89.1355,34.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 89.1355,34.7497 L 72.56,44.3591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 72.56,44.3591 L 72.7995,63.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 72.7995,63.5779 L 56.4636,72.9463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 56.4636,72.9463 L 56.2793,57.1514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-22' d='M 56.4636,72.9463 L 39.6472,63.8187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.27273 100.024\\nQ 7.27273 98.6811, 7.93617 97.9308\\nQ 8.59961 97.1804, 9.83962 97.1804\\nQ 11.0796 97.1804, 11.7431 97.9308\\nQ 12.4065 98.6811, 12.4065 100.024\\nQ 12.4065 101.382, 11.7352 102.156\\nQ 11.0638 102.922, 9.83962 102.922\\nQ 8.60751 102.922, 7.93617 102.156\\nQ 7.27273 101.39, 7.27273 100.024\\nM 9.83962 102.291\\nQ 10.6926 102.291, 11.1507 101.722\\nQ 11.6167 101.145, 11.6167 100.024\\nQ 11.6167 98.9259, 11.1507 98.3731\\nQ 10.6926 97.8123, 9.83962 97.8123\\nQ 8.98662 97.8123, 8.52063 98.3652\\nQ 8.06254 98.918, 8.06254 100.024\\nQ 8.06254 101.153, 8.52063 101.722\\nQ 8.98662 102.291, 9.83962 102.291\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 100.813 24.2373\\nL 101.571 24.2373\\nL 101.571 26.6146\\nL 104.43 26.6146\\nL 104.43 24.2373\\nL 105.188 24.2373\\nL 105.188 29.8292\\nL 104.43 29.8292\\nL 104.43 27.2465\\nL 101.571 27.2465\\nL 101.571 29.8292\\nL 100.813 29.8292\\nL 100.813 24.2373\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 105.583 27.0174\\nQ 105.583 25.6747, 106.247 24.9244\\nQ 106.91 24.1741, 108.15 24.1741\\nQ 109.39 24.1741, 110.054 24.9244\\nQ 110.717 25.6747, 110.717 27.0174\\nQ 110.717 28.3759, 110.046 29.1499\\nQ 109.374 29.916, 108.15 29.916\\nQ 106.918 29.916, 106.247 29.1499\\nQ 105.583 28.3838, 105.583 27.0174\\nM 108.15 29.2842\\nQ 109.003 29.2842, 109.461 28.7155\\nQ 109.927 28.139, 109.927 27.0174\\nQ 109.927 25.9196, 109.461 25.3667\\nQ 109.003 24.8059, 108.15 24.8059\\nQ 107.297 24.8059, 106.831 25.3588\\nQ 106.373 25.9117, 106.373 27.0174\\nQ 106.373 28.1469, 106.831 28.7155\\nQ 107.297 29.2842, 108.15 29.2842\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 252, "data-ID": 1275, "data-Solubility": -5.66, "data-SMILES": "C1C(=O)C=C2CCC3C4CCC(O)(C#C)C4(C)CCC3C2(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: Ethisterone<br><strong>SMILES</strong>: C1C(=O)C=C2CCC3C4CCC(O)(C#C)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.66</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.4726,63.517 L 13.4726,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8811,66.0686 L 16.8811,77.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-29 atom-0' d='M 28.4097,55.0105 L 13.4726,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 13.4726,80.5276 L 28.4097,89.0341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 28.4097,89.0341 L 43.1389,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 28.9145,84.8065 L 39.2249,78.852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1389,80.5276 L 49.1831,84.0183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.1831,84.0183 L 55.2274,87.509' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-3' d='M 43.1389,63.517 L 43.1389,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.5089,87.5091 L 66.5537,84.0183' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.5537,84.0183 L 72.5985,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 71.7463,82.0035 L 76.3717,84.674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.3717,84.674 L 80.997,87.3445' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.4506,79.0517 L 78.0759,81.7222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.0759,81.7222 L 82.7013,84.3927' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 72.5985,80.5276 L 72.5985,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.5985,63.517 L 87.3413,54.9469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-7 atom-26' d='M 73.4507,62.0412 L 57.0159,56.4864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-7 atom-26' d='M 71.7462,64.9928 L 58.7204,53.5347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 87.3413,54.9469 L 87.322,37.8954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-8 atom-14' d='M 87.3413,54.9469 L 102.139,63.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 88.172,36.4182 L 83.5416,33.7538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 83.5416,33.7538 L 78.9111,31.0893' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 86.472,39.3725 L 81.8416,36.7081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 81.8416,36.7081 L 77.2112,34.0436' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 87.322,37.8954 L 93.3771,34.3852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 93.3771,34.3852 L 99.4321,30.875' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.071,26.4767 L 102.063,19.3844' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.063,19.3844 L 102.055,12.292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 102.055,12.292 L 113.85,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 100.435,63.4363 L 103.98,80.5844' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 103.843,63.409 L 100.572,80.6117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-14' d='M 116.846,54.8708 L 102.139,63.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 102.276,80.5981 L 97.6685,83.2904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 97.6685,83.2904 L 93.0608,85.9827' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 102.276,80.5981 L 117.027,89.0681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 117.027,89.0681 L 117.064,106.076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 120.441,91.6119 L 120.467,103.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-22 atom-17' d='M 131.739,80.5276 L 117.027,89.0681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 117.064,106.076 L 131.815,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 131.815,114.545 L 146.527,106.006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 132.311,110.317 L 142.61,104.339' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-20 atom-21' d='M 146.527,106.006 L 146.49,88.9977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 146.49,88.9977 L 131.739,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 142.58,90.683 L 132.254,84.754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 131.739,80.5276 L 131.724,73.4938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 131.724,73.4938 L 131.708,66.4599' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 129.056,61.9793 L 122.951,58.425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 122.951,58.425 L 116.846,54.8708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 118.551,54.8714 L 118.552,49.4825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 118.552,49.4825 L 118.554,44.0937' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 115.142,54.8702 L 115.144,49.4814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 115.144,49.4814 L 115.146,44.0926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-27' d='M 57.8681,55.0105 L 57.8681,49.6217' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-27' d='M 57.8681,49.6217 L 57.8681,44.2329' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-28' d='M 57.8681,55.0105 L 43.1389,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-29' d='M 43.1389,63.517 L 28.4097,55.0105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-29' d='M 39.2249,65.1926 L 28.9145,59.2381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 55.6526 89.0477\\nQ 55.6526 87.8888, 56.2252 87.2412\\nQ 56.7979 86.5936, 57.8681 86.5936\\nQ 58.9384 86.5936, 59.511 87.2412\\nQ 60.0836 87.8888, 60.0836 89.0477\\nQ 60.0836 90.2202, 59.5042 90.8883\\nQ 58.9248 91.5495, 57.8681 91.5495\\nQ 56.8047 91.5495, 56.2252 90.8883\\nQ 55.6526 90.227, 55.6526 89.0477\\nM 57.8681 91.0042\\nQ 58.6044 91.0042, 58.9997 90.5133\\nQ 59.4019 90.0157, 59.4019 89.0477\\nQ 59.4019 88.1001, 58.9997 87.6229\\nQ 58.6044 87.1389, 57.8681 87.1389\\nQ 57.1319 87.1389, 56.7297 87.6161\\nQ 56.3343 88.0933, 56.3343 89.0477\\nQ 56.3343 90.0225, 56.7297 90.5133\\nQ 57.1319 91.0042, 57.8681 91.0042\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 82.19 87.3582\\nQ 82.19 86.1993, 82.7626 85.5517\\nQ 83.3352 84.9041, 84.4055 84.9041\\nQ 85.4757 84.9041, 86.0484 85.5517\\nQ 86.621 86.1993, 86.621 87.3582\\nQ 86.621 88.5307, 86.0415 89.1988\\nQ 85.4621 89.8601, 84.4055 89.8601\\nQ 83.342 89.8601, 82.7626 89.1988\\nQ 82.19 88.5376, 82.19 87.3582\\nM 84.4055 89.3147\\nQ 85.1417 89.3147, 85.5371 88.8239\\nQ 85.9393 88.3262, 85.9393 87.3582\\nQ 85.9393 86.4107, 85.5371 85.9335\\nQ 85.1417 85.4495, 84.4055 85.4495\\nQ 83.6692 85.4495, 83.267 85.9267\\nQ 82.8717 86.4038, 82.8717 87.3582\\nQ 82.8717 88.3331, 83.267 88.8239\\nQ 83.6692 89.3147, 84.4055 89.3147\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 73.2893 31.1091\\nQ 73.2893 29.9502, 73.8619 29.3026\\nQ 74.4345 28.655, 75.5048 28.655\\nQ 76.575 28.655, 77.1477 29.3026\\nQ 77.7203 29.9502, 77.7203 31.1091\\nQ 77.7203 32.2816, 77.1408 32.9497\\nQ 76.5614 33.6109, 75.5048 33.6109\\nQ 74.4413 33.6109, 73.8619 32.9497\\nQ 73.2893 32.2884, 73.2893 31.1091\\nM 75.5048 33.0656\\nQ 76.241 33.0656, 76.6364 32.5747\\nQ 77.0386 32.0771, 77.0386 31.1091\\nQ 77.0386 30.1615, 76.6364 29.6843\\nQ 76.241 29.2003, 75.5048 29.2003\\nQ 74.7685 29.2003, 74.3663 29.6775\\nQ 73.971 30.1547, 73.971 31.1091\\nQ 73.971 32.0839, 74.3663 32.5747\\nQ 74.7685 33.0656, 75.5048 33.0656\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 99.8584 29.3571\\nQ 99.8584 28.1982, 100.431 27.5506\\nQ 101.004 26.903, 102.074 26.903\\nQ 103.144 26.903, 103.717 27.5506\\nQ 104.289 28.1982, 104.289 29.3571\\nQ 104.289 30.5297, 103.71 31.1977\\nQ 103.131 31.859, 102.074 31.859\\nQ 101.01 31.859, 100.431 31.1977\\nQ 99.8584 30.5365, 99.8584 29.3571\\nM 102.074 31.3136\\nQ 102.81 31.3136, 103.206 30.8228\\nQ 103.608 30.3251, 103.608 29.3571\\nQ 103.608 28.4096, 103.206 27.9324\\nQ 102.81 27.4484, 102.074 27.4484\\nQ 101.338 27.4484, 100.935 27.9256\\nQ 100.54 28.4028, 100.54 29.3571\\nQ 100.54 30.332, 100.935 30.8228\\nQ 101.338 31.3136, 102.074 31.3136\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 84.1714 85.0904\\nL 84.8258 85.0904\\nL 84.8258 87.1424\\nL 87.2936 87.1424\\nL 87.2936 85.0904\\nL 87.948 85.0904\\nL 87.948 89.9169\\nL 87.2936 89.9169\\nL 87.2936 87.6877\\nL 84.8258 87.6877\\nL 84.8258 89.9169\\nL 84.1714 89.9169\\nL 84.1714 85.0904\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 88.2889 87.49\\nQ 88.2889 86.3311, 88.8615 85.6835\\nQ 89.4341 85.0359, 90.5044 85.0359\\nQ 91.5747 85.0359, 92.1473 85.6835\\nQ 92.7199 86.3311, 92.7199 87.49\\nQ 92.7199 88.6625, 92.1405 89.3306\\nQ 91.561 89.9918, 90.5044 89.9918\\nQ 89.4409 89.9918, 88.8615 89.3306\\nQ 88.2889 88.6694, 88.2889 87.49\\nM 90.5044 89.4465\\nQ 91.2406 89.4465, 91.636 88.9557\\nQ 92.0382 88.458, 92.0382 87.49\\nQ 92.0382 86.5425, 91.636 86.0653\\nQ 91.2406 85.5813, 90.5044 85.5813\\nQ 89.7682 85.5813, 89.366 86.0585\\nQ 88.9706 86.5356, 88.9706 87.49\\nQ 88.9706 88.4648, 89.366 88.9557\\nQ 89.7682 89.4465, 90.5044 89.4465\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 129.486 63.5329\\nQ 129.486 62.374, 130.059 61.7264\\nQ 130.631 61.0788, 131.702 61.0788\\nQ 132.772 61.0788, 133.345 61.7264\\nQ 133.917 62.374, 133.917 63.5329\\nQ 133.917 64.7054, 133.338 65.3735\\nQ 132.758 66.0347, 131.702 66.0347\\nQ 130.638 66.0347, 130.059 65.3735\\nQ 129.486 64.7122, 129.486 63.5329\\nM 131.702 65.4894\\nQ 132.438 65.4894, 132.833 64.9985\\nQ 133.235 64.5009, 133.235 63.5329\\nQ 133.235 62.5853, 132.833 62.1081\\nQ 132.438 61.6241, 131.702 61.6241\\nQ 130.965 61.6241, 130.563 62.1013\\nQ 130.168 62.5785, 130.168 63.5329\\nQ 130.168 64.5077, 130.563 64.9985\\nQ 130.965 65.4894, 131.702 65.4894\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 114.635 41.2505\\nQ 114.635 40.0916, 115.208 39.444\\nQ 115.781 38.7964, 116.851 38.7964\\nQ 117.921 38.7964, 118.494 39.444\\nQ 119.066 40.0916, 119.066 41.2505\\nQ 119.066 42.423, 118.487 43.0911\\nQ 117.907 43.7523, 116.851 43.7523\\nQ 115.787 43.7523, 115.208 43.0911\\nQ 114.635 42.4298, 114.635 41.2505\\nM 116.851 43.207\\nQ 117.587 43.207, 117.982 42.7161\\nQ 118.385 42.2185, 118.385 41.2505\\nQ 118.385 40.3029, 117.982 39.8257\\nQ 117.587 39.3417, 116.851 39.3417\\nQ 116.115 39.3417, 115.712 39.8189\\nQ 115.317 40.2961, 115.317 41.2505\\nQ 115.317 42.2253, 115.712 42.7161\\nQ 116.115 43.207, 116.851 43.207\\n' fill='#FF0000'/>\\n<path class='atom-27' d='M 55.6526 41.3902\\nQ 55.6526 40.2313, 56.2252 39.5837\\nQ 56.7979 38.9361, 57.8681 38.9361\\nQ 58.9384 38.9361, 59.511 39.5837\\nQ 60.0836 40.2313, 60.0836 41.3902\\nQ 60.0836 42.5627, 59.5042 43.2308\\nQ 58.9248 43.8921, 57.8681 43.8921\\nQ 56.8047 43.8921, 56.2252 43.2308\\nQ 55.6526 42.5696, 55.6526 41.3902\\nM 57.8681 43.3467\\nQ 58.6044 43.3467, 58.9997 42.8559\\nQ 59.4019 42.3582, 59.4019 41.3902\\nQ 59.4019 40.4427, 58.9997 39.9655\\nQ 58.6044 39.4815, 57.8681 39.4815\\nQ 57.1319 39.4815, 56.7297 39.9587\\nQ 56.3343 40.4359, 56.3343 41.3902\\nQ 56.3343 42.3651, 56.7297 42.8559\\nQ 57.1319 43.3467, 57.8681 43.3467\\n' fill='#FF0000'/>\\n<path class='atom-27' d='M 60.6631 38.9907\\nL 61.3175 38.9907\\nL 61.3175 41.0426\\nL 63.7853 41.0426\\nL 63.7853 38.9907\\nL 64.4397 38.9907\\nL 64.4397 43.8171\\nL 63.7853 43.8171\\nL 63.7853 41.5879\\nL 61.3175 41.5879\\nL 61.3175 43.8171\\nL 60.6631 43.8171\\nL 60.6631 38.9907\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 253, "data-ID": 1280, "data-Solubility": -3.66, "data-SMILES": "c1ccc2OC(=O)C(C(C(=O)OCC)C3=C(O)c4ccccc4OC3=O)=C(O)c2c1", "mols2grid-tooltip": "<strong>Name</strong>: Ethyl_Biscoumacetate<br><strong>SMILES</strong>: c1ccc2OC(=O)C(C(C(=O)OCC)C3=C(O)c4ccccc4OC3=O)=C(O)c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.919,108.355 L 121.915,105.221' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.915,105.221 L 121.91,102.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.91,102.088 L 112.584,96.713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.584,96.713 L 112.569,85.9493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.569,85.9493 L 115.211,84.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.211,84.4202 L 117.852,82.891' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 112.569,85.9493 L 103.243,80.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.704,79.6436 L 100.062,81.1725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.062,81.1725 L 97.4202,82.7015' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.782,81.5058 L 101.14,83.0347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 101.14,83.0347 L 98.498,84.5637' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.243,80.5747 L 103.237,76.3894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.237,76.3894 L 103.231,72.2041' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 101.348,68.7275 L 97.6244,66.5819' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 97.6244,66.5819 L 93.9012,64.4363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 93.9012,64.4363 L 84.5999,69.8418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-27 atom-8' d='M 93.8704,53.6784 L 93.9012,64.4363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 84.5999,69.8418 L 75.2678,64.4894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 75.2678,64.4894 L 72.4604,66.1208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 72.4604,66.1208 L 69.653,67.7522' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 75.2678,64.4894 L 75.2376,53.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.2376,53.7314 L 71.684,51.6835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 71.684,51.6835 L 68.1303,49.6356' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-12 atom-25' d='M 75.2376,53.7314 L 84.539,48.3259' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 63.6921,49.6384 L 60.1413,51.6892' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 60.1413,51.6892 L 56.5906,53.7401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 56.5906,53.7401 L 56.5995,57.9109' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 56.5995,57.9109 L 56.6083,62.0817' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-23 atom-14' d='M 47.2613,48.3819 L 56.5906,53.7401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 54.3946,65.7862 L 50.8516,67.842' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 50.8516,67.842 L 47.3086,69.8978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 47.3086,69.8978 L 47.3545,80.6622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-19' d='M 47.3086,69.8978 L 37.98,64.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 47.3545,80.6622 L 50.1759,82.2774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 50.1759,82.2774 L 52.9972,83.8926' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 37.98,64.5396 L 35.3407,66.0709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 35.3407,66.0709 L 32.7014,67.6023' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-21' d='M 37.98,64.5396 L 37.9564,53.7817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 37.9564,53.7817 L 35.3077,52.2602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 35.3077,52.2602 L 32.6591,50.7387' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-23' d='M 37.9564,53.7817 L 47.2613,48.3819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 47.2613,48.3819 L 47.2546,45.2933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 47.2546,45.2933 L 47.2479,42.2047' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 84.539,48.3259 L 84.53,45.2373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 84.53,45.2373 L 84.5209,42.1487' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-27' d='M 84.539,48.3259 L 93.8704,53.6784' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-27 atom-28' d='M 93.8704,53.6784 L 97.4198,51.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-27 atom-28' d='M 97.4198,51.6253 L 100.969,49.5723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-29' d='M 103.188,45.8716 L 103.187,41.6983' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-29' d='M 103.187,41.6983 L 103.187,37.525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-29 atom-30' d='M 103.187,37.525 L 106.741,35.4817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-29 atom-30' d='M 106.741,35.4817 L 110.294,33.4383' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-40 atom-38 atom-29' d='M 93.8797,32.1281 L 103.187,37.525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-30 atom-31' d='M 112.518,29.7455 L 112.525,25.5751' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-30 atom-31' d='M 112.525,25.5751 L 112.533,21.4046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 112.533,21.4046 L 121.876,16.0593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-35 atom-31 atom-34' d='M 112.533,21.4046 L 103.227,16.0084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-33' d='M 121.876,16.0593 L 124.513,17.5936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-33' d='M 124.513,17.5936 L 127.15,19.1279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-36 atom-34 atom-35' d='M 103.227,16.0084 L 103.233,12.9198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-36 atom-34 atom-35' d='M 103.233,12.9198 L 103.238,9.83118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-37 atom-34 atom-36' d='M 103.227,16.0084 L 93.8998,21.3701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-38 atom-36 atom-37' d='M 93.8998,21.3701 L 91.0903,19.7409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-38 atom-36 atom-37' d='M 91.0903,19.7409 L 88.2808,18.1116' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-39 atom-36 atom-38' d='M 93.8998,21.3701 L 93.8797,32.1281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-41 atom-38 atom-39' d='M 93.8797,32.1281 L 91.2318,33.6502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-41 atom-38 atom-39' d='M 91.2318,33.6502 L 88.5839,35.1723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 120.984 108.57\\nL 122.376 110.82\\nQ 122.514 111.042, 122.736 111.444\\nQ 122.958 111.846, 122.97 111.87\\nL 122.97 108.57\\nL 123.534 108.57\\nL 123.534 112.818\\nL 122.952 112.818\\nL 121.458 110.358\\nQ 121.284 110.07, 121.098 109.74\\nQ 120.918 109.41, 120.864 109.308\\nL 120.864 112.818\\nL 120.312 112.818\\nL 120.312 108.57\\nL 120.984 108.57\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 124.044 108.57\\nL 124.62 108.57\\nL 124.62 110.376\\nL 126.792 110.376\\nL 126.792 108.57\\nL 127.368 108.57\\nL 127.368 112.818\\nL 126.792 112.818\\nL 126.792 110.856\\nL 124.62 110.856\\nL 124.62 112.818\\nL 124.044 112.818\\nL 124.044 108.57\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 127.574 112.669\\nQ 127.677 112.404, 127.922 112.257\\nQ 128.168 112.107, 128.508 112.107\\nQ 128.932 112.107, 129.17 112.336\\nQ 129.407 112.566, 129.407 112.974\\nQ 129.407 113.39, 129.098 113.778\\nQ 128.793 114.166, 128.16 114.625\\nL 129.455 114.625\\nL 129.455 114.942\\nL 127.566 114.942\\nL 127.566 114.677\\nQ 128.089 114.304, 128.397 114.027\\nQ 128.71 113.75, 128.861 113.501\\nQ 129.011 113.251, 129.011 112.994\\nQ 129.011 112.724, 128.877 112.574\\nQ 128.742 112.423, 128.508 112.423\\nQ 128.283 112.423, 128.132 112.515\\nQ 127.982 112.606, 127.875 112.808\\nL 127.574 112.669\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 118.067 81.6495\\nQ 118.067 80.6295, 118.571 80.0595\\nQ 119.075 79.4895, 120.017 79.4895\\nQ 120.959 79.4895, 121.463 80.0595\\nQ 121.967 80.6295, 121.967 81.6495\\nQ 121.967 82.6815, 121.457 83.2695\\nQ 120.947 83.8515, 120.017 83.8515\\nQ 119.081 83.8515, 118.571 83.2695\\nQ 118.067 82.6875, 118.067 81.6495\\nM 120.017 83.3715\\nQ 120.665 83.3715, 121.013 82.9395\\nQ 121.367 82.5015, 121.367 81.6495\\nQ 121.367 80.8155, 121.013 80.3955\\nQ 120.665 79.9695, 120.017 79.9695\\nQ 119.369 79.9695, 119.015 80.3895\\nQ 118.667 80.8095, 118.667 81.6495\\nQ 118.667 82.5075, 119.015 82.9395\\nQ 119.369 83.3715, 120.017 83.3715\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 122.477 79.5375\\nL 123.053 79.5375\\nL 123.053 81.3435\\nL 125.225 81.3435\\nL 125.225 79.5375\\nL 125.801 79.5375\\nL 125.801 83.7855\\nL 125.225 83.7855\\nL 125.225 81.8235\\nL 123.053 81.8235\\nL 123.053 83.7855\\nL 122.477 83.7855\\nL 122.477 79.5375\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 93.8439 84.8977\\nQ 93.8439 83.8777, 94.3479 83.3077\\nQ 94.8519 82.7377, 95.7939 82.7377\\nQ 96.7359 82.7377, 97.2399 83.3077\\nQ 97.7439 83.8777, 97.7439 84.8977\\nQ 97.7439 85.9297, 97.2339 86.5177\\nQ 96.7239 87.0997, 95.7939 87.0997\\nQ 94.8579 87.0997, 94.3479 86.5177\\nQ 93.8439 85.9357, 93.8439 84.8977\\nM 95.7939 86.6197\\nQ 96.4419 86.6197, 96.7899 86.1877\\nQ 97.1439 85.7497, 97.1439 84.8977\\nQ 97.1439 84.0637, 96.7899 83.6437\\nQ 96.4419 83.2177, 95.7939 83.2177\\nQ 95.1459 83.2177, 94.7919 83.6377\\nQ 94.4439 84.0577, 94.4439 84.8977\\nQ 94.4439 85.7557, 94.7919 86.1877\\nQ 95.1459 86.6197, 95.7939 86.6197\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 102.289 67.687\\nL 103.681 69.937\\nQ 103.819 70.159, 104.041 70.561\\nQ 104.263 70.963, 104.275 70.987\\nL 104.275 67.687\\nL 104.839 67.687\\nL 104.839 71.935\\nL 104.257 71.935\\nL 102.763 69.475\\nQ 102.589 69.187, 102.403 68.857\\nQ 102.223 68.527, 102.169 68.425\\nL 102.169 71.935\\nL 101.617 71.935\\nL 101.617 67.687\\nL 102.289 67.687\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 105.349 67.687\\nL 105.925 67.687\\nL 105.925 69.493\\nL 108.097 69.493\\nL 108.097 67.687\\nL 108.673 67.687\\nL 108.673 71.935\\nL 108.097 71.935\\nL 108.097 69.973\\nL 105.925 69.973\\nL 105.925 71.935\\nL 105.349 71.935\\nL 105.349 67.687\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 60.3069 66.6894\\nL 60.8829 66.6894\\nL 60.8829 68.4954\\nL 63.0549 68.4954\\nL 63.0549 66.6894\\nL 63.6309 66.6894\\nL 63.6309 70.9374\\nL 63.0549 70.9374\\nL 63.0549 68.9754\\nL 60.8829 68.9754\\nL 60.8829 70.9374\\nL 60.3069 70.9374\\nL 60.3069 66.6894\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 63.8369 70.7883\\nQ 63.9398 70.523, 64.1853 70.3765\\nQ 64.4309 70.226, 64.7714 70.226\\nQ 65.1951 70.226, 65.4327 70.4557\\nQ 65.6703 70.6854, 65.6703 71.0932\\nQ 65.6703 71.509, 65.3615 71.8971\\nQ 65.0565 72.2852, 64.4229 72.7446\\nL 65.7179 72.7446\\nL 65.7179 73.0614\\nL 63.8289 73.0614\\nL 63.8289 72.796\\nQ 64.3517 72.4238, 64.6605 72.1466\\nQ 64.9734 71.8694, 65.1239 71.6199\\nQ 65.2743 71.3704, 65.2743 71.113\\nQ 65.2743 70.8438, 65.1397 70.6933\\nQ 65.0051 70.5428, 64.7714 70.5428\\nQ 64.5457 70.5428, 64.3952 70.6339\\nQ 64.2447 70.725, 64.1378 70.9269\\nL 63.8369 70.7883\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 66.8879 66.6894\\nL 68.2799 68.9394\\nQ 68.4179 69.1614, 68.6399 69.5634\\nQ 68.8619 69.9654, 68.8739 69.9894\\nL 68.8739 66.6894\\nL 69.4379 66.6894\\nL 69.4379 70.9374\\nL 68.8559 70.9374\\nL 67.3619 68.4774\\nQ 67.1879 68.1894, 67.0019 67.8594\\nQ 66.8219 67.5294, 66.7679 67.4274\\nL 66.7679 70.9374\\nL 66.2159 70.9374\\nL 66.2159 66.6894\\nL 66.8879 66.6894\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 63.9612 48.3688\\nQ 63.9612 47.3488, 64.4652 46.7788\\nQ 64.9692 46.2088, 65.9112 46.2088\\nQ 66.8532 46.2088, 67.3572 46.7788\\nQ 67.8612 47.3488, 67.8612 48.3688\\nQ 67.8612 49.4008, 67.3512 49.9888\\nQ 66.8412 50.5708, 65.9112 50.5708\\nQ 64.9752 50.5708, 64.4652 49.9888\\nQ 63.9612 49.4068, 63.9612 48.3688\\nM 65.9112 50.0908\\nQ 66.5592 50.0908, 66.9072 49.6588\\nQ 67.2612 49.2208, 67.2612 48.3688\\nQ 67.2612 47.5348, 66.9072 47.1148\\nQ 66.5592 46.6888, 65.9112 46.6888\\nQ 65.2632 46.6888, 64.9092 47.1088\\nQ 64.5612 47.5288, 64.5612 48.3688\\nQ 64.5612 49.2268, 64.9092 49.6588\\nQ 65.2632 50.0908, 65.9112 50.0908\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 54.6635 64.5107\\nQ 54.6635 63.4907, 55.1675 62.9207\\nQ 55.6715 62.3507, 56.6135 62.3507\\nQ 57.5555 62.3507, 58.0595 62.9207\\nQ 58.5635 63.4907, 58.5635 64.5107\\nQ 58.5635 65.5427, 58.0535 66.1307\\nQ 57.5435 66.7127, 56.6135 66.7127\\nQ 55.6775 66.7127, 55.1675 66.1307\\nQ 54.6635 65.5487, 54.6635 64.5107\\nM 56.6135 66.2327\\nQ 57.2615 66.2327, 57.6095 65.8007\\nQ 57.9635 65.3627, 57.9635 64.5107\\nQ 57.9635 63.6767, 57.6095 63.2567\\nQ 57.2615 62.8307, 56.6135 62.8307\\nQ 55.9655 62.8307, 55.6115 63.2507\\nQ 55.2635 63.6707, 55.2635 64.5107\\nQ 55.2635 65.3687, 55.6115 65.8007\\nQ 55.9655 66.2327, 56.6135 66.2327\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 53.8844 82.8141\\nL 55.2764 85.0641\\nQ 55.4144 85.2861, 55.6364 85.6881\\nQ 55.8584 86.0901, 55.8704 86.1141\\nL 55.8704 82.8141\\nL 56.4344 82.8141\\nL 56.4344 87.0621\\nL 55.8524 87.0621\\nL 54.3584 84.6021\\nQ 54.1844 84.3141, 53.9984 83.9841\\nQ 53.8184 83.6541, 53.7644 83.5521\\nL 53.7644 87.0621\\nL 53.2124 87.0621\\nL 53.2124 82.8141\\nL 53.8844 82.8141\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 56.9444 82.8141\\nL 57.5204 82.8141\\nL 57.5204 84.6201\\nL 59.6924 84.6201\\nL 59.6924 82.8141\\nL 60.2684 82.8141\\nL 60.2684 87.0621\\nL 59.6924 87.0621\\nL 59.6924 85.1001\\nL 57.5204 85.1001\\nL 57.5204 87.0621\\nL 56.9444 87.0621\\nL 56.9444 82.8141\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 60.4743 86.913\\nQ 60.5773 86.6477, 60.8228 86.5012\\nQ 61.0683 86.3507, 61.4089 86.3507\\nQ 61.8326 86.3507, 62.0702 86.5804\\nQ 62.3078 86.8101, 62.3078 87.218\\nQ 62.3078 87.6338, 61.9989 88.0218\\nQ 61.694 88.4099, 61.0604 88.8693\\nL 62.3553 88.8693\\nL 62.3553 89.1861\\nL 60.4664 89.1861\\nL 60.4664 88.9208\\nQ 60.9891 88.5485, 61.298 88.2713\\nQ 61.6108 87.9941, 61.7613 87.7446\\nQ 61.9118 87.4952, 61.9118 87.2378\\nQ 61.9118 86.9685, 61.7771 86.818\\nQ 61.6425 86.6675, 61.4089 86.6675\\nQ 61.1831 86.6675, 61.0327 86.7586\\nQ 60.8822 86.8497, 60.7753 87.0516\\nL 60.4743 86.913\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 24.9623 66.7585\\nL 25.5383 66.7585\\nL 25.5383 68.5645\\nL 27.7103 68.5645\\nL 27.7103 66.7585\\nL 28.2863 66.7585\\nL 28.2863 71.0065\\nL 27.7103 71.0065\\nL 27.7103 69.0445\\nL 25.5383 69.0445\\nL 25.5383 71.0065\\nL 24.9623 71.0065\\nL 24.9623 66.7585\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 28.5863 68.8705\\nQ 28.5863 67.8505, 29.0903 67.2805\\nQ 29.5943 66.7105, 30.5363 66.7105\\nQ 31.4783 66.7105, 31.9823 67.2805\\nQ 32.4863 67.8505, 32.4863 68.8705\\nQ 32.4863 69.9025, 31.9763 70.4905\\nQ 31.4663 71.0725, 30.5363 71.0725\\nQ 29.6003 71.0725, 29.0903 70.4905\\nQ 28.5863 69.9085, 28.5863 68.8705\\nM 30.5363 70.5925\\nQ 31.1843 70.5925, 31.5323 70.1605\\nQ 31.8863 69.7225, 31.8863 68.8705\\nQ 31.8863 68.0365, 31.5323 67.6165\\nQ 31.1843 67.1905, 30.5363 67.1905\\nQ 29.8883 67.1905, 29.5343 67.6105\\nQ 29.1863 68.0305, 29.1863 68.8705\\nQ 29.1863 69.7285, 29.5343 70.1605\\nQ 29.8883 70.5925, 30.5363 70.5925\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 24.9199 47.395\\nL 25.4959 47.395\\nL 25.4959 49.201\\nL 27.6679 49.201\\nL 27.6679 47.395\\nL 28.2439 47.395\\nL 28.2439 51.643\\nL 27.6679 51.643\\nL 27.6679 49.681\\nL 25.4959 49.681\\nL 25.4959 51.643\\nL 24.9199 51.643\\nL 24.9199 47.395\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 28.5439 49.507\\nQ 28.5439 48.487, 29.0479 47.917\\nQ 29.5519 47.347, 30.4939 47.347\\nQ 31.4359 47.347, 31.9399 47.917\\nQ 32.4439 48.487, 32.4439 49.507\\nQ 32.4439 50.539, 31.9339 51.127\\nQ 31.4239 51.709, 30.4939 51.709\\nQ 29.5579 51.709, 29.0479 51.127\\nQ 28.5439 50.545, 28.5439 49.507\\nM 30.4939 51.229\\nQ 31.1419 51.229, 31.4899 50.797\\nQ 31.8439 50.359, 31.8439 49.507\\nQ 31.8439 48.673, 31.4899 48.253\\nQ 31.1419 47.827, 30.4939 47.827\\nQ 29.8459 47.827, 29.4919 48.247\\nQ 29.1439 48.667, 29.1439 49.507\\nQ 29.1439 50.365, 29.4919 50.797\\nQ 29.8459 51.229, 30.4939 51.229\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 45.2926 39.7875\\nQ 45.2926 38.7675, 45.7966 38.1975\\nQ 46.3006 37.6275, 47.2426 37.6275\\nQ 48.1846 37.6275, 48.6886 38.1975\\nQ 49.1926 38.7675, 49.1926 39.7875\\nQ 49.1926 40.8195, 48.6826 41.4075\\nQ 48.1726 41.9895, 47.2426 41.9895\\nQ 46.3066 41.9895, 45.7966 41.4075\\nQ 45.2926 40.8255, 45.2926 39.7875\\nM 47.2426 41.5095\\nQ 47.8906 41.5095, 48.2386 41.0775\\nQ 48.5926 40.6395, 48.5926 39.7875\\nQ 48.5926 38.9535, 48.2386 38.5335\\nQ 47.8906 38.1075, 47.2426 38.1075\\nQ 46.5946 38.1075, 46.2406 38.5275\\nQ 45.8926 38.9475, 45.8926 39.7875\\nQ 45.8926 40.6455, 46.2406 41.0775\\nQ 46.5946 41.5095, 47.2426 41.5095\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 49.7026 37.6755\\nL 50.2786 37.6755\\nL 50.2786 39.4815\\nL 52.4506 39.4815\\nL 52.4506 37.6755\\nL 53.0266 37.6755\\nL 53.0266 41.9235\\nL 52.4506 41.9235\\nL 52.4506 39.9615\\nL 50.2786 39.9615\\nL 50.2786 41.9235\\nL 49.7026 41.9235\\nL 49.7026 37.6755\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 82.5639 39.7316\\nQ 82.5639 38.7116, 83.0679 38.1416\\nQ 83.5719 37.5716, 84.5139 37.5716\\nQ 85.4559 37.5716, 85.9599 38.1416\\nQ 86.4639 38.7116, 86.4639 39.7316\\nQ 86.4639 40.7636, 85.9539 41.3516\\nQ 85.4439 41.9336, 84.5139 41.9336\\nQ 83.5779 41.9336, 83.0679 41.3516\\nQ 82.5639 40.7696, 82.5639 39.7316\\nM 84.5139 41.4536\\nQ 85.1619 41.4536, 85.5099 41.0216\\nQ 85.8639 40.5836, 85.8639 39.7316\\nQ 85.8639 38.8976, 85.5099 38.4776\\nQ 85.1619 38.0516, 84.5139 38.0516\\nQ 83.8659 38.0516, 83.5119 38.4716\\nQ 83.1639 38.8916, 83.1639 39.7316\\nQ 83.1639 40.5896, 83.5119 41.0216\\nQ 83.8659 41.4536, 84.5139 41.4536\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 86.9739 37.6196\\nL 87.5499 37.6196\\nL 87.5499 39.4256\\nL 89.7219 39.4256\\nL 89.7219 37.6196\\nL 90.2979 37.6196\\nL 90.2979 41.8676\\nL 89.7219 41.8676\\nL 89.7219 39.9056\\nL 87.5499 39.9056\\nL 87.5499 41.8676\\nL 86.9739 41.8676\\nL 86.9739 37.6196\\n' fill='#FF0000'/>\\n<path class='atom-28' d='M 101.238 48.3006\\nQ 101.238 47.2806, 101.742 46.7106\\nQ 102.246 46.1406, 103.188 46.1406\\nQ 104.13 46.1406, 104.634 46.7106\\nQ 105.138 47.2806, 105.138 48.3006\\nQ 105.138 49.3326, 104.628 49.9206\\nQ 104.118 50.5026, 103.188 50.5026\\nQ 102.252 50.5026, 101.742 49.9206\\nQ 101.238 49.3386, 101.238 48.3006\\nM 103.188 50.0226\\nQ 103.836 50.0226, 104.184 49.5906\\nQ 104.538 49.1526, 104.538 48.3006\\nQ 104.538 47.4666, 104.184 47.0466\\nQ 103.836 46.6206, 103.188 46.6206\\nQ 102.54 46.6206, 102.186 47.0406\\nQ 101.838 47.4606, 101.838 48.3006\\nQ 101.838 49.1586, 102.186 49.5906\\nQ 102.54 50.0226, 103.188 50.0226\\n' fill='#FF0000'/>\\n<path class='atom-30' d='M 110.563 32.1745\\nQ 110.563 31.1545, 111.067 30.5845\\nQ 111.571 30.0145, 112.513 30.0145\\nQ 113.455 30.0145, 113.959 30.5845\\nQ 114.463 31.1545, 114.463 32.1745\\nQ 114.463 33.2065, 113.953 33.7945\\nQ 113.443 34.3765, 112.513 34.3765\\nQ 111.577 34.3765, 111.067 33.7945\\nQ 110.563 33.2125, 110.563 32.1745\\nM 112.513 33.8965\\nQ 113.161 33.8965, 113.509 33.4645\\nQ 113.863 33.0265, 113.863 32.1745\\nQ 113.863 31.3405, 113.509 30.9205\\nQ 113.161 30.4945, 112.513 30.4945\\nQ 111.865 30.4945, 111.511 30.9145\\nQ 111.163 31.3345, 111.163 32.1745\\nQ 111.163 33.0325, 111.511 33.4645\\nQ 111.865 33.8965, 112.513 33.8965\\n' fill='#FF0000'/>\\n<path class='atom-33' d='M 127.366 20.3996\\nQ 127.366 19.3796, 127.87 18.8096\\nQ 128.374 18.2396, 129.316 18.2396\\nQ 130.258 18.2396, 130.762 18.8096\\nQ 131.266 19.3796, 131.266 20.3996\\nQ 131.266 21.4316, 130.756 22.0196\\nQ 130.246 22.6016, 129.316 22.6016\\nQ 128.38 22.6016, 127.87 22.0196\\nQ 127.366 21.4376, 127.366 20.3996\\nM 129.316 22.1216\\nQ 129.964 22.1216, 130.312 21.6896\\nQ 130.666 21.2516, 130.666 20.3996\\nQ 130.666 19.5656, 130.312 19.1456\\nQ 129.964 18.7196, 129.316 18.7196\\nQ 128.668 18.7196, 128.314 19.1396\\nQ 127.966 19.5596, 127.966 20.3996\\nQ 127.966 21.2576, 128.314 21.6896\\nQ 128.668 22.1216, 129.316 22.1216\\n' fill='#FF0000'/>\\n<path class='atom-33' d='M 131.776 18.2876\\nL 132.352 18.2876\\nL 132.352 20.0936\\nL 134.524 20.0936\\nL 134.524 18.2876\\nL 135.1 18.2876\\nL 135.1 22.5356\\nL 134.524 22.5356\\nL 134.524 20.5736\\nL 132.352 20.5736\\nL 132.352 22.5356\\nL 131.776 22.5356\\nL 131.776 18.2876\\n' fill='#FF0000'/>\\n<path class='atom-35' d='M 101.293 7.41402\\nQ 101.293 6.39402, 101.797 5.82402\\nQ 102.301 5.25402, 103.243 5.25402\\nQ 104.185 5.25402, 104.689 5.82402\\nQ 105.193 6.39402, 105.193 7.41402\\nQ 105.193 8.44602, 104.683 9.03402\\nQ 104.173 9.61602, 103.243 9.61602\\nQ 102.307 9.61602, 101.797 9.03402\\nQ 101.293 8.45202, 101.293 7.41402\\nM 103.243 9.13602\\nQ 103.891 9.13602, 104.239 8.70402\\nQ 104.593 8.26602, 104.593 7.41402\\nQ 104.593 6.58002, 104.239 6.16002\\nQ 103.891 5.73402, 103.243 5.73402\\nQ 102.595 5.73402, 102.241 6.15402\\nQ 101.893 6.57402, 101.893 7.41402\\nQ 101.893 8.27202, 102.241 8.70402\\nQ 102.595 9.13602, 103.243 9.13602\\n' fill='#FF0000'/>\\n<path class='atom-35' d='M 105.703 5.30202\\nL 106.279 5.30202\\nL 106.279 7.10802\\nL 108.451 7.10802\\nL 108.451 5.30202\\nL 109.027 5.30202\\nL 109.027 9.55002\\nL 108.451 9.55002\\nL 108.451 7.58802\\nL 106.279 7.58802\\nL 106.279 9.55002\\nL 105.703 9.55002\\nL 105.703 5.30202\\n' fill='#FF0000'/>\\n<path class='atom-37' d='M 78.9347 14.9286\\nL 79.5107 14.9286\\nL 79.5107 16.7346\\nL 81.6827 16.7346\\nL 81.6827 14.9286\\nL 82.2587 14.9286\\nL 82.2587 19.1766\\nL 81.6827 19.1766\\nL 81.6827 17.2146\\nL 79.5107 17.2146\\nL 79.5107 19.1766\\nL 78.9347 19.1766\\nL 78.9347 14.9286\\n' fill='#0000FF'/>\\n<path class='atom-37' d='M 82.4646 19.0276\\nQ 82.5676 18.7622, 82.8131 18.6157\\nQ 83.0586 18.4652, 83.3992 18.4652\\nQ 83.8229 18.4652, 84.0605 18.6949\\nQ 84.2981 18.9246, 84.2981 19.3325\\nQ 84.2981 19.7483, 83.9892 20.1364\\nQ 83.6843 20.5244, 83.0507 20.9838\\nL 84.3456 20.9838\\nL 84.3456 21.3006\\nL 82.4567 21.3006\\nL 82.4567 21.0353\\nQ 82.9794 20.663, 83.2883 20.3858\\nQ 83.6011 20.1086, 83.7516 19.8592\\nQ 83.9021 19.6097, 83.9021 19.3523\\nQ 83.9021 19.083, 83.7674 18.9325\\nQ 83.6328 18.782, 83.3992 18.782\\nQ 83.1734 18.782, 83.023 18.8731\\nQ 82.8725 18.9642, 82.7656 19.1662\\nL 82.4646 19.0276\\n' fill='#0000FF'/>\\n<path class='atom-37' d='M 85.5156 14.9286\\nL 86.9076 17.1786\\nQ 87.0456 17.4006, 87.2676 17.8026\\nQ 87.4896 18.2046, 87.5016 18.2286\\nL 87.5016 14.9286\\nL 88.0656 14.9286\\nL 88.0656 19.1766\\nL 87.4836 19.1766\\nL 85.9896 16.7166\\nQ 85.8156 16.4286, 85.6296 16.0986\\nQ 85.4496 15.7686, 85.3956 15.6666\\nL 85.3956 19.1766\\nL 84.8436 19.1766\\nL 84.8436 14.9286\\nL 85.5156 14.9286\\n' fill='#0000FF'/>\\n<path class='atom-39' d='M 80.8447 34.3169\\nL 81.4207 34.3169\\nL 81.4207 36.1229\\nL 83.5927 36.1229\\nL 83.5927 34.3169\\nL 84.1687 34.3169\\nL 84.1687 38.5649\\nL 83.5927 38.5649\\nL 83.5927 36.6029\\nL 81.4207 36.6029\\nL 81.4207 38.5649\\nL 80.8447 38.5649\\nL 80.8447 34.3169\\n' fill='#FF0000'/>\\n<path class='atom-39' d='M 84.4687 36.4289\\nQ 84.4687 35.4089, 84.9727 34.8389\\nQ 85.4767 34.2689, 86.4187 34.2689\\nQ 87.3607 34.2689, 87.8647 34.8389\\nQ 88.3687 35.4089, 88.3687 36.4289\\nQ 88.3687 37.4609, 87.8587 38.0489\\nQ 87.3487 38.6309, 86.4187 38.6309\\nQ 85.4827 38.6309, 84.9727 38.0489\\nQ 84.4687 37.4669, 84.4687 36.4289\\nM 86.4187 38.1509\\nQ 87.0667 38.1509, 87.4147 37.7189\\nQ 87.7687 37.2809, 87.7687 36.4289\\nQ 87.7687 35.5949, 87.4147 35.1749\\nQ 87.0667 34.7489, 86.4187 34.7489\\nQ 85.7707 34.7489, 85.4167 35.1689\\nQ 85.0687 35.5889, 85.0687 36.4289\\nQ 85.0687 37.2869, 85.4167 37.7189\\nQ 85.7707 38.1509, 86.4187 38.1509\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 254, "data-ID": 1285, "data-Solubility": -0.5, "data-SMILES": "NCCC(O)C(=O)NC2CC(N)C(OC1OC(CN)C(O)C(O)C1O)C(O)C2OC3OC(CO)C(O)C(N)C3O", "mols2grid-tooltip": "<strong>Name</strong>: Amikacin<br><strong>SMILES</strong>: NCCC(O)C(=O)NC2CC(N)C(OC1OC(CN)C(O)C(O)C1O)C(O)C2OC3OC(CO)C(O)C(N)C3O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.5</span>", "style-Solubility": "color: black"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 79.3058,18.2794 L 79.3058,10.5801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.7659,17.1245 L 77.7659,11.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-0' d='M 72.6381,22.1291 L 79.3058,18.2794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.3058,10.5801 L 81.0771,9.55748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.0771,9.55748 L 82.8484,8.53488' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 79.3058,10.5801 L 72.6381,6.7304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.6381,6.7304 L 65.9705,10.5801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.4079,8.64141 L 67.7406,11.3362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.9705,10.5801 L 65.9705,18.2794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.9705,18.2794 L 63.7021,19.583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.7021,19.583 L 61.4336,20.8866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 65.9705,18.2794 L 72.6381,22.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 67.7406,17.5233 L 72.4079,20.2181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.1871,20.8991 L 55.5741,19.9647' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 55.5741,19.9647 L 53.961,19.0304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.6381,22.1291 L 72.654,29.8326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.2679,29.1664 L 70.6554,30.1011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 70.6554,30.1011 L 69.0429,31.0358' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 73.0402,30.4987 L 71.4277,31.4334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 71.4277,31.4334 L 69.8152,32.3681' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 72.654,29.8326 L 75.0907,31.2348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 75.0907,31.2348 L 77.5273,32.6371' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 79.3357,35.9916 L 79.3413,38.6851' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 79.3413,38.6851 L 79.3468,41.3785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 79.3468,41.3785 L 86.0237,45.221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0237,45.221 L 86.0396,52.9245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 86.0396,52.9245 L 92.7078,56.7746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 86.2699,54.8355 L 90.9376,57.5307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-14' d='M 79.372,56.7746 L 86.0396,52.9245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 92.7078,56.7746 L 92.7078,64.474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 92.7078,64.474 L 86.0401,68.3237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 90.9377,63.7179 L 86.2703,66.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 86.0401,68.3237 L 86.0401,71.0201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 86.0401,71.0201 L 86.0401,73.7165' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-17 atom-31' d='M 86.0401,68.3237 L 79.372,64.474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.1394,76.2349 L 83.2599,76.7423' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 83.2599,76.7423 L 82.3805,77.2498' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.9089,77.5687 L 84.0295,78.0761' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.0295,78.0761 L 83.15,78.5835' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 85.2692,78.4128 L 85.2689,79.1784' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 85.2689,79.1784 L 85.2686,79.944' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 86.8091,78.4134 L 86.8088,79.179' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 86.8088,79.179 L 86.8084,79.9446' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 87.5947,76.9259 L 89.2727,77.8961' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 89.2727,77.8961 L 90.9506,78.8662' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.7095,82.1996 L 92.7097,84.893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.7097,84.893 L 92.7098,87.5864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 92.3251,86.9195 L 90.7093,87.8517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 90.7093,87.8517 L 89.0934,88.7839' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 93.0946,88.2533 L 91.4788,89.1855' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 91.4788,89.1855 L 89.8629,90.1177' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 92.7098,87.5864 L 95.1424,88.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 95.1424,88.9929 L 97.5749,90.3994' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 99.3787,93.7589 L 99.3788,96.4526' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 99.3788,96.4526 L 99.379,99.1462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 99.379,99.1462 L 106.039,103.01' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-30 atom-25' d='M 92.7032,102.983 L 99.379,99.1462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-26 atom-27' d='M 106.039,103.01 L 106.024,110.709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-27 atom-28' d='M 106.024,110.709 L 99.3477,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-28 atom-29' d='M 99.3477,114.545 L 92.6878,110.682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-29 atom-30' d='M 92.6878,110.682 L 92.7032,102.983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 79.372,64.474 L 79.372,56.7746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 80.9119,63.3191 L 80.9119,57.9296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 83.0024 7.64734\\nQ 83.0024 6.59134, 83.4944 6.03934\\nQ 83.9924 5.48134, 84.9344 5.48134\\nQ 85.8104 5.48134, 86.2784 6.09934\\nL 85.8824 6.42334\\nQ 85.5404 5.97334, 84.9344 5.97334\\nQ 84.2924 5.97334, 83.9504 6.40534\\nQ 83.6144 6.83134, 83.6144 7.64734\\nQ 83.6144 8.48734, 83.9624 8.91934\\nQ 84.3164 9.35134, 85.0004 9.35134\\nQ 85.4684 9.35134, 86.0144 9.06934\\nL 86.1824 9.51934\\nQ 85.9604 9.66334, 85.6244 9.74734\\nQ 85.2884 9.83134, 84.9164 9.83134\\nQ 83.9924 9.83134, 83.4944 9.26734\\nQ 83.0024 8.70334, 83.0024 7.64734\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 86.7944 5.22334\\nL 87.3464 5.22334\\nL 87.3464 9.77734\\nL 86.7944 9.77734\\nL 86.7944 5.22334\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 57.3411 22.1298\\nQ 57.3411 21.1098, 57.8451 20.5398\\nQ 58.3491 19.9698, 59.2911 19.9698\\nQ 60.2331 19.9698, 60.7371 20.5398\\nQ 61.2411 21.1098, 61.2411 22.1298\\nQ 61.2411 23.1618, 60.7311 23.7498\\nQ 60.2211 24.3318, 59.2911 24.3318\\nQ 58.3551 24.3318, 57.8451 23.7498\\nQ 57.3411 23.1678, 57.3411 22.1298\\nM 59.2911 23.8518\\nQ 59.9391 23.8518, 60.2871 23.4198\\nQ 60.6411 22.9818, 60.6411 22.1298\\nQ 60.6411 21.2958, 60.2871 20.8758\\nQ 59.9391 20.4498, 59.2911 20.4498\\nQ 58.6431 20.4498, 58.2891 20.8698\\nQ 57.9411 21.2898, 57.9411 22.1298\\nQ 57.9411 22.9878, 58.2891 23.4198\\nQ 58.6431 23.8518, 59.2911 23.8518\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 65.3751 32.9335\\nQ 65.3751 31.9135, 65.8791 31.3435\\nQ 66.3831 30.7735, 67.3251 30.7735\\nQ 68.2671 30.7735, 68.7711 31.3435\\nQ 69.2751 31.9135, 69.2751 32.9335\\nQ 69.2751 33.9655, 68.7651 34.5535\\nQ 68.2551 35.1355, 67.3251 35.1355\\nQ 66.3891 35.1355, 65.8791 34.5535\\nQ 65.3751 33.9715, 65.3751 32.9335\\nM 67.3251 34.6555\\nQ 67.9731 34.6555, 68.3211 34.2235\\nQ 68.6751 33.7855, 68.6751 32.9335\\nQ 68.6751 32.0995, 68.3211 31.6795\\nQ 67.9731 31.2535, 67.3251 31.2535\\nQ 66.6771 31.2535, 66.3231 31.6735\\nQ 65.9751 32.0935, 65.9751 32.9335\\nQ 65.9751 33.7915, 66.3231 34.2235\\nQ 66.6771 34.6555, 67.3251 34.6555\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 78.3919 31.5511\\nL 79.7839 33.8011\\nQ 79.9219 34.0231, 80.1439 34.4251\\nQ 80.3659 34.8271, 80.3779 34.8511\\nL 80.3779 31.5511\\nL 80.9419 31.5511\\nL 80.9419 35.7991\\nL 80.3599 35.7991\\nL 78.8659 33.3391\\nQ 78.6919 33.0511, 78.5059 32.7211\\nQ 78.3259 32.3911, 78.2719 32.2891\\nL 78.2719 35.7991\\nL 77.7199 35.7991\\nL 77.7199 31.5511\\nL 78.3919 31.5511\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 81.4519 31.5511\\nL 82.0279 31.5511\\nL 82.0279 33.3571\\nL 84.1999 33.3571\\nL 84.1999 31.5511\\nL 84.7759 31.5511\\nL 84.7759 35.7991\\nL 84.1999 35.7991\\nL 84.1999 33.8371\\nL 82.0279 33.8371\\nL 82.0279 35.7991\\nL 81.4519 35.7991\\nL 81.4519 31.5511\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 84.8401 77.4851\\nQ 84.8881 77.5031, 85.0861 77.5871\\nQ 85.2841 77.6711, 85.5001 77.7251\\nQ 85.7221 77.7731, 85.9381 77.7731\\nQ 86.3401 77.7731, 86.5741 77.5811\\nQ 86.8081 77.3831, 86.8081 77.0411\\nQ 86.8081 76.8071, 86.6881 76.6631\\nQ 86.5741 76.5191, 86.3941 76.4411\\nQ 86.2141 76.3631, 85.9141 76.2731\\nQ 85.5361 76.1591, 85.3081 76.0511\\nQ 85.0861 75.9431, 84.9241 75.7151\\nQ 84.7681 75.4871, 84.7681 75.1031\\nQ 84.7681 74.5691, 85.1281 74.2391\\nQ 85.4941 73.9091, 86.2141 73.9091\\nQ 86.7061 73.9091, 87.2641 74.1431\\nL 87.1261 74.6051\\nQ 86.6161 74.3951, 86.2321 74.3951\\nQ 85.8181 74.3951, 85.5901 74.5691\\nQ 85.3621 74.7371, 85.3681 75.0311\\nQ 85.3681 75.2591, 85.4821 75.3971\\nQ 85.6021 75.5351, 85.7701 75.6131\\nQ 85.9441 75.6911, 86.2321 75.7811\\nQ 86.6161 75.9011, 86.8441 76.0211\\nQ 87.0721 76.1411, 87.2341 76.3871\\nQ 87.4021 76.6271, 87.4021 77.0411\\nQ 87.4021 77.6291, 87.0061 77.9471\\nQ 86.6161 78.2591, 85.9621 78.2591\\nQ 85.5841 78.2591, 85.2961 78.1751\\nQ 85.0141 78.0971, 84.6781 77.9591\\nL 84.8401 77.4851\\n' fill='#CCCC00'/>\\n<path class='atom-19' d='M 78.755 79.1173\\nQ 78.755 78.0973, 79.259 77.5273\\nQ 79.763 76.9573, 80.705 76.9573\\nQ 81.647 76.9573, 82.151 77.5273\\nQ 82.655 78.0973, 82.655 79.1173\\nQ 82.655 80.1493, 82.145 80.7373\\nQ 81.635 81.3193, 80.705 81.3193\\nQ 79.769 81.3193, 79.259 80.7373\\nQ 78.755 80.1553, 78.755 79.1173\\nM 80.705 80.8393\\nQ 81.353 80.8393, 81.701 80.4073\\nQ 82.055 79.9693, 82.055 79.1173\\nQ 82.055 78.2833, 81.701 77.8633\\nQ 81.353 77.4373, 80.705 77.4373\\nQ 80.057 77.4373, 79.703 77.8573\\nQ 79.355 78.2773, 79.355 79.1173\\nQ 79.355 79.9753, 79.703 80.4073\\nQ 80.057 80.8393, 80.705 80.8393\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 84.0876 82.1986\\nQ 84.0876 81.1786, 84.5916 80.6086\\nQ 85.0956 80.0386, 86.0376 80.0386\\nQ 86.9796 80.0386, 87.4836 80.6086\\nQ 87.9876 81.1786, 87.9876 82.1986\\nQ 87.9876 83.2306, 87.4776 83.8186\\nQ 86.9676 84.4006, 86.0376 84.4006\\nQ 85.1016 84.4006, 84.5916 83.8186\\nQ 84.0876 83.2366, 84.0876 82.1986\\nM 86.0376 83.9206\\nQ 86.6856 83.9206, 87.0336 83.4886\\nQ 87.3876 83.0506, 87.3876 82.1986\\nQ 87.3876 81.3646, 87.0336 80.9446\\nQ 86.6856 80.5186, 86.0376 80.5186\\nQ 85.3896 80.5186, 85.0356 80.9386\\nQ 84.6876 81.3586, 84.6876 82.1986\\nQ 84.6876 83.0566, 85.0356 83.4886\\nQ 85.3896 83.9206, 86.0376 83.9206\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 91.7703 77.759\\nL 93.1623 80.009\\nQ 93.3003 80.231, 93.5223 80.633\\nQ 93.7443 81.035, 93.7563 81.059\\nL 93.7563 77.759\\nL 94.3203 77.759\\nL 94.3203 82.007\\nL 93.7383 82.007\\nL 92.2443 79.547\\nQ 92.0703 79.259, 91.8843 78.929\\nQ 91.7043 78.599, 91.6503 78.497\\nL 91.6503 82.007\\nL 91.0983 82.007\\nL 91.0983 77.759\\nL 91.7703 77.759\\n' fill='#0000FF'/>\\n<path class='atom-21' d='M 94.8303 77.759\\nL 95.4063 77.759\\nL 95.4063 79.565\\nL 97.5783 79.565\\nL 97.5783 77.759\\nL 98.1543 77.759\\nL 98.1543 82.007\\nL 97.5783 82.007\\nL 97.5783 80.045\\nL 95.4063 80.045\\nL 95.4063 82.007\\nL 94.8303 82.007\\nL 94.8303 77.759\\n' fill='#0000FF'/>\\n<path class='atom-23' d='M 85.4242 90.6766\\nQ 85.4242 89.6566, 85.9282 89.0866\\nQ 86.4322 88.5166, 87.3742 88.5166\\nQ 88.3162 88.5166, 88.8202 89.0866\\nQ 89.3242 89.6566, 89.3242 90.6766\\nQ 89.3242 91.7086, 88.8142 92.2966\\nQ 88.3042 92.8786, 87.3742 92.8786\\nQ 86.4382 92.8786, 85.9282 92.2966\\nQ 85.4242 91.7146, 85.4242 90.6766\\nM 87.3742 92.3986\\nQ 88.0222 92.3986, 88.3702 91.9666\\nQ 88.7242 91.5286, 88.7242 90.6766\\nQ 88.7242 89.8426, 88.3702 89.4226\\nQ 88.0222 88.9966, 87.3742 88.9966\\nQ 86.7262 88.9966, 86.3722 89.4166\\nQ 86.0242 89.8366, 86.0242 90.6766\\nQ 86.0242 91.5346, 86.3722 91.9666\\nQ 86.7262 92.3986, 87.3742 92.3986\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 98.4395 89.3183\\nL 99.8315 91.5683\\nQ 99.9695 91.7903, 100.191 92.1923\\nQ 100.413 92.5943, 100.425 92.6183\\nL 100.425 89.3183\\nL 100.989 89.3183\\nL 100.989 93.5663\\nL 100.407 93.5663\\nL 98.9135 91.1063\\nQ 98.7395 90.8183, 98.5535 90.4883\\nQ 98.3735 90.1583, 98.3195 90.0563\\nL 98.3195 93.5663\\nL 97.7675 93.5663\\nL 97.7675 89.3183\\nL 98.4395 89.3183\\n' fill='#0000FF'/>\\n<path class='atom-24' d='M 101.499 89.3183\\nL 102.075 89.3183\\nL 102.075 91.1243\\nL 104.247 91.1243\\nL 104.247 89.3183\\nL 104.823 89.3183\\nL 104.823 93.5663\\nL 104.247 93.5663\\nL 104.247 91.6043\\nL 102.075 91.6043\\nL 102.075 93.5663\\nL 101.499 93.5663\\nL 101.499 89.3183\\n' fill='#0000FF'/>\\n</svg>\\n", "mols2grid-id": 255, "data-ID": 1290, "data-Solubility": -5.09, "data-SMILES": "c1c(Cl)ccc(OC)c1C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2", "mols2grid-tooltip": "<strong>Name</strong>: Glyburide<br><strong>SMILES</strong>: c1c(Cl)ccc(OC)c1C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.09</span>", "style-Solubility": "color: red"}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.5367,73.6648 L 21.5367,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-29 atom-0' d='M 33.2521,66.9203 L 21.5367,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 21.5367,87.1546 L 18.0447,89.2005' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 18.0447,89.2005 L 14.5527,91.2463' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 21.5367,87.1546 L 33.2521,93.7223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 33.2521,93.7223 L 44.6111,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.9517,88.313 L 56.8081,92.5639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.2705,85.9963 L 55.4893,94.8807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-4' d='M 44.6111,73.6648 L 44.6111,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.1487,93.7223 L 67.864,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 67.864,87.1546 L 67.864,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 67.864,73.6648 L 79.4007,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-7' d='M 56.1487,66.9203 L 67.864,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 79.4007,66.9203 L 92.0029,71.1802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-8' d='M 79.4007,53.9627 L 79.4007,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 92.0029,71.1802 L 99.9905,60.3526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 99.9905,60.3526 L 105.151,58.681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 105.151,58.681 L 110.312,57.0093' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-10' d='M 92.0029,49.7027 L 99.9905,60.3526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.699,53.8159 L 112.912,48.9194' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.912,48.9194 L 113.125,44.0228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 113.125,44.0228 L 117.072,42.4301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 117.072,42.4301 L 121.02,40.8374' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-12' d='M 120.935,32.4861 L 113.125,44.0228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-12 atom-19' d='M 113.125,44.0228 L 99.9905,38.6983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 125.587,40.6576 L 131.959,42.6063' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 131.959,42.6063 L 138.33,44.5551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.33,44.5551 L 144.72,32.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 144.72,32.4861 L 152.727,25.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 144.72,32.4861 L 133.36,36.7451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 133.36,36.7451 L 120.935,32.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 99.9905,38.6983 L 97.0546,28.4465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 99.9905,38.6983 L 92.0029,49.7027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 92.0029,49.7027 L 79.4007,53.9627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 79.4007,53.9627 L 80.5417,43.3608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-22 atom-24' d='M 79.4007,53.9627 L 67.864,47.0405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 67.864,47.0405 L 56.1487,53.9627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 56.1487,53.9627 L 56.1487,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-26 atom-27' d='M 56.1487,66.9203 L 44.6111,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-27 atom-28' d='M 44.6111,73.6648 L 44.6475,63.0016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-27 atom-29' d='M 44.6111,73.6648 L 33.2521,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 6.76216 90.4449\\nL 7.33816 90.4449\\nL 7.33816 92.2509\\nL 9.51016 92.2509\\nL 9.51016 90.4449\\nL 10.0862 90.4449\\nL 10.0862 94.6929\\nL 9.51016 94.6929\\nL 9.51016 92.7309\\nL 7.33816 92.7309\\nL 7.33816 94.6929\\nL 6.76216 94.6929\\nL 6.76216 90.4449\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 10.3862 92.5569\\nQ 10.3862 91.5369, 10.8902 90.9669\\nQ 11.3942 90.3969, 12.3362 90.3969\\nQ 13.2782 90.3969, 13.7822 90.9669\\nQ 14.2862 91.5369, 14.2862 92.5569\\nQ 14.2862 93.5889, 13.7762 94.1769\\nQ 13.2662 94.7589, 12.3362 94.7589\\nQ 11.4002 94.7589, 10.8902 94.1769\\nQ 10.3862 93.5949, 10.3862 92.5569\\nM 12.3362 94.2789\\nQ 12.9842 94.2789, 13.3322 93.8469\\nQ 13.6862 93.4089, 13.6862 92.5569\\nQ 13.6862 91.7229, 13.3322 91.3029\\nQ 12.9842 90.8769, 12.3362 90.8769\\nQ 11.6882 90.8769, 11.3342 91.2969\\nQ 10.9862 91.7169, 10.9862 92.5569\\nQ 10.9862 93.4149, 11.3342 93.8469\\nQ 11.6882 94.2789, 12.3362 94.2789\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 110.643 56.2824\\nQ 110.643 55.2624, 111.147 54.6924\\nQ 111.651 54.1224, 112.593 54.1224\\nQ 113.535 54.1224, 114.039 54.6924\\nQ 114.543 55.2624, 114.543 56.2824\\nQ 114.543 57.3144, 114.033 57.9024\\nQ 113.523 58.4844, 112.593 58.4844\\nQ 111.657 58.4844, 111.147 57.9024\\nQ 110.643 57.3204, 110.643 56.2824\\nM 112.593 58.0044\\nQ 113.241 58.0044, 113.589 57.5724\\nQ 113.943 57.1344, 113.943 56.2824\\nQ 113.943 55.4484, 113.589 55.0284\\nQ 113.241 54.6024, 112.593 54.6024\\nQ 111.945 54.6024, 111.591 55.0224\\nQ 111.243 55.4424, 111.243 56.2824\\nQ 111.243 57.1404, 111.591 57.5724\\nQ 111.945 58.0044, 112.593 58.0044\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 121.293 39.9526\\nQ 121.293 38.9326, 121.797 38.3626\\nQ 122.301 37.7926, 123.243 37.7926\\nQ 124.185 37.7926, 124.689 38.3626\\nQ 125.193 38.9326, 125.193 39.9526\\nQ 125.193 40.9846, 124.683 41.5726\\nQ 124.173 42.1546, 123.243 42.1546\\nQ 122.307 42.1546, 121.797 41.5726\\nQ 121.293 40.9906, 121.293 39.9526\\nM 123.243 41.6746\\nQ 123.891 41.6746, 124.239 41.2426\\nQ 124.593 40.8046, 124.593 39.9526\\nQ 124.593 39.1186, 124.239 38.6986\\nQ 123.891 38.2726, 123.243 38.2726\\nQ 122.595 38.2726, 122.241 38.6926\\nQ 121.893 39.1126, 121.893 39.9526\\nQ 121.893 40.8106, 122.241 41.2426\\nQ 122.595 41.6746, 123.243 41.6746\\n' fill='#FF0000'/>\\n</svg>\\n", "mols2grid-id": 256, "data-ID": 1295, "data-Solubility": -7.32, "data-SMILES": "C1C(O)CC2=CCC3C4CC5OC6(OCC(C)CC6)C(C)C5C4(C)CCC3C2(C)C1", "mols2grid-tooltip": "<strong>Name</strong>: Diosgenin<br><strong>SMILES</strong>: C1C(O)CC2=CCC3C4CC5OC6(OCC(C)CC6)C(C)C5C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.32</span>", "style-Solubility": "color: red"}])\n", + " listObj.add([{"data-SMILES": "CCC(C)CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,50.6175 L 47.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,35.625 L 80,54.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,54.375 L 80,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 80,54.375 L 112.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.5,35.625 L 138.485,50.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -3.68, "data-ID": 5, "mols2grid-id": 0, "mols2grid-tooltip": "<strong>Name</strong>: 3-methylpentane<br><strong>SMILES</strong>: CCC(C)CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.68</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CC(C)CC(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,80.6175 L 47.5,65.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,65.625 L 47.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 47.5,65.625 L 80,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,84.375 L 112.5,65.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.5,65.625 L 138.485,80.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 112.5,65.625 L 112.5,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.26, "data-ID": 10, "mols2grid-id": 1, "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethylpentane<br><strong>SMILES</strong>: CC(C)CC(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.26</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCC=C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,65.6175 L 47.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.626,53.8731 L 136.611,68.8656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.374,47.3769 L 140.359,62.3694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -2.68, "data-ID": 15, "mols2grid-id": 2, "mols2grid-tooltip": "<strong>Name</strong>: 1-pentene<br><strong>SMILES</strong>: CCCC=C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.68</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C1CC=CCC1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,78.75 L 112.475,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,97.5 L 112.475,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,41.25 L 80,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.125,19.2524 L 49.4,44.4976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.875,25.7476 L 45.65,38.0024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.525,41.25 L 47.525,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,78.75 L 80,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -2.59, "data-ID": 20, "mols2grid-id": 3, "mols2grid-tooltip": "<strong>Name</strong>: cyclohexene<br><strong>SMILES</strong>: C1CC=CCC1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.59</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C=CCC=C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 23.3891,68.8656 L 49.3741,53.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 19.6409,62.3694 L 45.6259,47.3769' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.626,53.8731 L 136.611,68.8656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.374,47.3769 L 140.359,62.3694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -2.09, "data-ID": 25, "mols2grid-id": 4, "mols2grid-tooltip": "<strong>Name</strong>: 1,4-pentadiene<br><strong>SMILES</strong>: C=CCC=C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C1=CC=CC=CC1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.786,70.9205 L 110.129,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.474,72.5895 L 117.441,34.3605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 98.75,101.075 L 122.13,71.755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.785,35.195 L 80,18.925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.3728,15.5464 L 47.8397,38.5761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.6272,22.3036 L 44.5853,31.8189' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.2125,35.1975 L 37.87,71.7575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 34.9381,74.0956 L 64.1819,98.7369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8019,69.4194 L 58.3181,103.413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.25,101.075 L 98.75,101.075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -2.15, "data-ID": 30, "mols2grid-id": 5, "mols2grid-tooltip": "<strong>Name</strong>: cycloheptatriene<br><strong>SMILES</strong>: C1=CC=CC=CC1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCCCC#C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.7258 L 24.8959,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.8959,48.5578 L 46.9375,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 46.9375,61.2742 L 68.9792,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.9792,48.5578 L 91.0208,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.0208,61.2742 L 113.062,48.5578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 113.062,48.5578 L 135.102,61.2742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.102,61.2742 L 152.727,71.4422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.204,67.2053 L 150.185,75.8481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 140.288,58.3935 L 155.269,67.0363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -3.66, "data-ID": 35, "mols2grid-id": 6, "mols2grid-tooltip": "<strong>Name</strong>: 1-octyne<br><strong>SMILES</strong>: CCCCCCC#C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0663,101.742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.0663,101.742 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -2.77, "data-ID": 40, "mols2grid-id": 7, "mols2grid-tooltip": "<strong>Name</strong>: ethylbenzene<br><strong>SMILES</strong>: c1ccccc1CC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.77</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1c(C)cc(C)cc1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,63.75 L 112.475,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.975,58.125 L 104.975,31.875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,82.5 L 112.475,63.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,26.25 L 138.457,11.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,26.25 L 80,7.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,7.5 L 47.525,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.8788,16.8076 L 56.1463,29.9326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,26.25 L 21.5425,11.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 47.525,26.25 L 47.525,63.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 47.525,63.75 L 80,82.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.1463,60.0674 L 78.8788,73.1924' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80,82.5 L 80,112.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -3.4, "data-ID": 45, "mols2grid-id": 8, "mols2grid-tooltip": "<strong>Name</strong>: 1,3,5-trimethylbenzene<br><strong>SMILES</strong>: c1c(C)cc(C)cc1C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.4</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(ccc1)CC2)(c1)C2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 83.875,78.6875 L 83.875,41.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 83.875,78.6875 L 51.5125,97.83' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 75.2023,75.1036 L 52.5486,88.5034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 83.875,78.6875 L 119.427,90.0825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 83.875,41.3125 L 51.5125,22.17' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 75.2023,44.8964 L 52.5486,31.4966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 83.875,41.3125 L 119.427,29.9175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 51.5125,22.17 L 18.695,41.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 18.695,41.3125 L 18.695,78.6875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 26.195,46.9188 L 26.195,73.0813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-4' d='M 51.5125,97.83 L 18.695,78.6875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 119.427,29.9175 L 141.305,59.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-6' d='M 119.427,90.0825 L 141.305,59.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -3.04, "data-ID": 50, "mols2grid-id": 9, "mols2grid-tooltip": "<strong>Name</strong>: indane<br><strong>SMILES</strong>: c(c(ccc1)CC2)(c1)C2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.04</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1CC(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 93.1505,43.5131 L 93.1505,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.076,39.7072 L 88.076,21.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 71.178,56.1992 L 93.1505,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.1505,18.1407 L 71.178,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 71.178,5.45455 L 49.2056,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 70.4195,11.7521 L 55.0387,20.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.2056,18.1407 L 49.2056,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.2056,43.5131 L 71.178,56.1992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.0387,41.0214 L 70.4195,49.9017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 71.178,56.1992 L 71.2305,81.5851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 71.2305,81.5851 L 93.2334,94.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.2334,94.2476 L 93.2757,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 93.2334,94.2476 L 110.794,84.0682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.12, "data-ID": 55, "mols2grid-id": 10, "mols2grid-tooltip": "<strong>Name</strong>: isobutylbenzene<br><strong>SMILES</strong>: c1ccccc1CC(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.12</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1CCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 81.398,31.0278 L 81.398,13.979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.9882,28.4705 L 77.9882,16.5363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 66.6337,39.5522 L 81.398,31.0278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.398,13.979 L 66.6337,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.6337,5.45455 L 51.8694,13.979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.124,9.68613 L 55.789,15.6532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.8694,13.979 L 51.8694,31.0278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.8694,31.0278 L 66.6337,39.5522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.789,29.3535 L 66.124,35.3206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 66.6337,39.5522 L 66.669,56.6101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 66.669,56.6101 L 81.4537,65.1186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 81.4537,65.1186 L 81.4889,82.1765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.4889,82.1765 L 96.2737,90.6851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 96.2737,90.6851 L 96.3089,107.743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 96.3089,107.743 L 108.131,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -5.21, "data-ID": 60, "mols2grid-id": 11, "mols2grid-tooltip": "<strong>Name</strong>: n-hexylbenzene<br><strong>SMILES</strong>: c1ccccc1CCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.21</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1CCc2ccccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 87.2216,30.6286 L 87.2216,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 83.8651,28.1112 L 83.8651,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 72.6878,39.0199 L 87.2216,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 87.2216,13.8459 L 72.6878,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.6878,5.45455 L 58.154,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.186,9.62008 L 62.0123,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.154,13.8459 L 58.154,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.154,30.6286 L 72.6878,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.0123,28.9805 L 72.186,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 72.6878,39.0199 L 72.7225,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 72.7225,55.8116 L 87.2764,64.1873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.2764,64.1873 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.3111,80.9789 L 101.845,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.8127,85.1445 L 97.9864,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 72.7773,89.3714 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 101.845,89.3714 L 101.846,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 101.846,106.154 L 87.3122,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 97.9877,104.506 L 87.814,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.3122,114.545 L 72.7773,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.7773,106.154 L 72.7773,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.1338,103.637 L 76.1338,91.8888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.62, "data-ID": 65, "mols2grid-id": 12, "mols2grid-tooltip": "<strong>Name</strong>: bibenzyl<br><strong>SMILES</strong>: c1ccccc1CCc2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.62</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc2ccccc2c1CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.3433,66.5058 L 24.3433,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 30.7603,71.3095 L 30.7603,93.727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 52.4647,50.4911 L 24.3433,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.3433,98.5308 L 52.4647,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.4647,114.545 L 80.1946,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 53.415,106.586 L 72.8259,95.3761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.1946,98.5308 L 107.925,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 80.1946,66.5058 L 80.1946,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.925,114.545 L 135.657,98.5308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.875,106.586 L 128.288,95.376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.657,98.5308 L 135.657,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.657,66.5058 L 107.925,50.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 128.288,69.6605 L 108.875,58.4503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 107.925,50.4911 L 80.1946,66.5058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.1946,66.5058 L 52.4647,50.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.8259,69.6604 L 53.415,58.4502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-10' d='M 52.4647,50.4911 L 52.5866,18.3891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 52.5866,18.3891 L 30.4159,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.17, "data-ID": 70, "mols2grid-id": 13, "mols2grid-tooltip": "<strong>Name</strong>: 1-ethylnaphthalene<br><strong>SMILES</strong>: c1ccc2ccccc2c1CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.17</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(C)cc2ccccc2c1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4511,56.537 L 31.4511,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 38.4424,61.7707 L 38.4424,86.1946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 62.0894,39.0889 L 31.4511,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 31.4511,91.4283 L 7.27273,105.483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 31.4511,91.4283 L 62.0894,108.876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.0894,108.876 L 92.3012,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.1247,100.205 L 84.273,87.9913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.3012,91.4283 L 122.513,108.876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 92.3012,56.537 L 92.3012,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 122.513,108.876 L 152.727,91.4283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 123.549,100.205 L 144.699,87.9912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,91.4283 L 152.727,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,56.537 L 122.513,39.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 144.699,59.9741 L 123.549,47.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.513,39.0889 L 92.3012,56.537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 92.3012,56.537 L 62.0894,39.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.273,59.974 L 63.1247,47.7604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 62.0894,39.0889 L 62.1733,11.1236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.29, "data-ID": 75, "mols2grid-id": 14, "mols2grid-tooltip": "<strong>Name</strong>: 1,3-dimethylnaphthalene<br><strong>SMILES</strong>: c1c(C)cc2ccccc2c1C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.29</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(ccc1)cc(c2ccc3)c3)(c1)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 55.7582,73.9994 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-0 atom-12' d='M 55.7582,73.9994 L 31.5164,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-0 atom-12' d='M 49.3219,71.2507 L 32.3527,81.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-0 atom-13' d='M 55.7582,73.9994 L 80,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 55.7582,46.0006 L 31.5164,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.3219,48.7493 L 32.3527,38.9498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 55.7582,46.0006 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 31.5164,32.0013 L 7.27273,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 7.27273,46.0006 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 12.8717,50.2004 L 12.8717,69.7996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-4' d='M 31.5164,87.9987 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,32.0013 L 103.9,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.7552,38.9324 L 97.4854,48.732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.9,46.0006 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 103.9,46.0006 L 128.484,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 103.9,73.9994 L 128.484,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-7' d='M 80,87.9987 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-7' d='M 80.7552,81.0676 L 97.4854,71.268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 128.484,87.9987 L 152.727,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 129.32,81.0501 L 146.291,71.2506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 152.727,73.9994 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 128.484,32.0013 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 129.32,38.9499 L 146.291,48.7494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -6.35, "data-ID": 80, "mols2grid-id": 15, "mols2grid-tooltip": "<strong>Name</strong>: anthracene<br><strong>SMILES</strong>: c(c(ccc1)cc(c2ccc3)c3)(c1)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.35</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Cc2c1ccccc1c(C)c3ccccc23", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.0691,9.60527 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80,32.0013 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.1637,38.9498 L 62.1945,48.7493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-1' d='M 103.9,46.0006 L 80,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.7582,46.0006 L 31.5164,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-2' d='M 55.7582,73.9994 L 55.7582,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 31.5164,32.0013 L 7.27273,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 30.6797,38.9499 L 13.7091,48.7494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 7.27273,46.0006 L 7.27273,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 7.27273,73.9994 L 31.5164,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 13.7091,71.2506 L 30.6797,81.0501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 31.5164,87.9987 L 55.7582,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 55.7582,73.9994 L 80,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 62.1945,71.2507 L 79.1637,81.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80,87.9987 L 80.0691,110.395' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 80,87.9987 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 103.9,73.9994 L 128.484,87.9987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 110.358,71.2339 L 127.567,81.0334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-10' d='M 103.9,46.0006 L 103.9,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 128.484,87.9987 L 152.727,73.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 152.727,73.9994 L 152.727,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 147.128,69.7996 L 147.128,50.2004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 152.727,46.0006 L 128.484,32.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 128.484,32.0013 L 103.9,46.0006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 127.567,38.9666 L 110.358,48.7661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -6.57, "data-ID": 85, "mols2grid-id": 16, "mols2grid-tooltip": "<strong>Name</strong>: 9,10-dimethylanthracene<br><strong>SMILES</strong>: Cc2c1ccccc1c(C)c3ccccc23<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.57</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(cc(c1ccc2)c2)cc(c3ccc4)c4)(c1)c3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.1129,49.6592 L 80.1129,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-0 atom-16' d='M 80.1129,49.6592 L 98.3226,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-0 atom-16' d='M 84.99,51.6612 L 97.7368,44.1074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-0 atom-17' d='M 80.1129,49.6592 L 61.9018,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.1129,70.5667 L 98.3226,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9565,68.5111 L 97.7033,75.9068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-9' d='M 80.1129,70.5667 L 61.9018,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.3226,81.132 L 116.308,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 116.308,70.5667 L 116.308,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.099,67.4306 L 112.099,52.7953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-3 atom-8' d='M 116.308,70.5667 L 134.518,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 116.308,49.6592 L 134.518,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-4' d='M 98.3226,38.868 L 116.308,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 134.518,38.868 L 152.727,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.103,44.1074 L 147.85,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,49.6592 L 152.727,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 134.518,81.132 L 152.727,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 135.137,75.9068 L 147.884,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.9018,81.132 L 43.6921,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.2825,75.9068 L 48.5357,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 43.6921,70.5667 L 43.6921,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 43.6921,70.5667 L 25.4824,81.132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 43.6921,49.6592 L 25.4824,38.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-11' d='M 61.9018,38.868 L 43.6921,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-11' d='M 61.316,44.1074 L 48.5692,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 25.4824,38.868 L 7.27273,49.6592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 24.8966,44.1074 L 12.1498,51.6612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 7.27273,49.6592 L 7.27273,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 25.4824,81.132 L 7.27273,70.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 24.8631,75.9068 L 12.1163,68.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -8.6, "data-ID": 90, "mols2grid-id": 17, "mols2grid-tooltip": "<strong>Name</strong>: naphthacene<br><strong>SMILES</strong>: c(c(cc(c1ccc2)c2)cc(c3ccc4)c4)(c1)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.6</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc2ccc3c4ccccc4ccc3c2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 15.5926,79.7956 L 7.27273,59.5697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.3245,75.1246 L 12.5005,60.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-0' d='M 37.5399,82.808 L 15.5926,79.7956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 7.27273,59.5697 L 21.0436,42.0692' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 21.0436,42.0692 L 43.1343,45.225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 23.7486,46.8027 L 39.2121,49.0118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1343,45.225 L 56.9051,27.7246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-3' d='M 51.4542,65.3075 L 43.1343,45.225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.9051,27.7246 L 80,31.0238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.7608,32.4796 L 75.9272,34.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,31.0238 L 86.4551,51.5367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 86.4551,51.5367 L 108.546,54.6925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.1601,56.2702 L 104.624,58.4793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-6' d='M 73.5449,68.4633 L 86.4551,51.5367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 108.546,54.6925 L 122.46,37.192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 116.866,74.775 L 108.546,54.6925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.46,37.192 L 144.407,40.2044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 125.167,41.9073 L 140.53,44.016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 144.407,40.2044 L 152.727,60' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 152.727,60 L 138.956,77.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 147.249,60.0684 L 137.609,72.62' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 138.956,77.9308 L 116.866,74.775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 116.866,74.775 L 103.095,92.2754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 111.418,74.7389 L 101.779,86.9892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.095,92.2754 L 81.1476,88.9762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.1476,88.9762 L 73.5449,68.4633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 84.0423,84.4037 L 78.7205,70.0447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 73.5449,68.4633 L 51.4542,65.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-17' d='M 51.4542,65.3075 L 37.5399,82.808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-17' d='M 45.9986,65.2544 L 36.2586,77.5047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -8.06, "data-ID": 95, "mols2grid-id": 18, "mols2grid-tooltip": "<strong>Name</strong>: chrysene<br><strong>SMILES</strong>: c1ccc2ccc3c4ccccc4ccc3c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.06</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc2ccc3nccnc3c2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 10.9025,66.8184 L 10.9025,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 17.1351,71.6481 L 17.1351,94.1863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-0' d='M 37.7961,52.4253 L 10.9025,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 10.9025,99.0159 L 37.7961,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 37.7961,114.545 L 65.0678,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.8028,106.8 L 57.8929,95.9293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.0678,99.0159 L 91.5832,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-3' d='M 65.0678,66.8184 L 65.0678,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.5832,114.545 L 118.477,99.0159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.5006,106.819 L 111.326,95.948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 118.477,99.0159 L 118.477,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 118.477,66.8184 L 130.055,60.7084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.055,60.7084 L 141.633,54.5984' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 119.041,59.4733 L 127.146,55.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 127.146,55.1963 L 135.25,50.9193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 91.5832,52.4253 L 118.477,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.751,47.2361 L 145.751,34.3002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.751,34.3002 L 145.751,21.3642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 145.751,21.3642 L 118.477,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 138.519,24.3614 L 119.427,13.2246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 118.477,5.45455 L 107.094,12.1884' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 107.094,12.1884 L 95.7113,18.9222' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 91.5832,26.5534 L 91.5832,39.4894' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 91.5832,39.4894 L 91.5832,52.4253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 97.8158,30.4342 L 97.8158,39.4894' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 97.8158,39.4894 L 97.8158,48.5446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 91.5832,52.4253 L 65.0678,66.8184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 65.0678,66.8184 L 37.7961,52.4253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 58.068,70.1715 L 38.9778,60.0963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 143.8 48.0127\\nL 146.692 52.6871\\nQ 146.978 53.1483, 147.44 53.9835\\nQ 147.901 54.8186, 147.926 54.8685\\nL 147.926 48.0127\\nL 149.097 48.0127\\nL 149.097 56.838\\nL 147.888 56.838\\nL 144.785 51.7273\\nQ 144.423 51.129, 144.037 50.4434\\nQ 143.663 49.7578, 143.55 49.5459\\nL 143.55 56.838\\nL 142.404 56.838\\nL 142.404 48.0127\\nL 143.8 48.0127\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 89.6325 16.9516\\nL 92.5244 21.626\\nQ 92.8111 22.0872, 93.2723 22.9224\\nQ 93.7335 23.7576, 93.7584 23.8074\\nL 93.7584 16.9516\\nL 94.9301 16.9516\\nL 94.9301 25.7769\\nL 93.721 25.7769\\nL 90.6172 20.6662\\nQ 90.2557 20.0679, 89.8693 19.3823\\nQ 89.4953 18.6967, 89.3831 18.4848\\nL 89.3831 25.7769\\nL 88.2364 25.7769\\nL 88.2364 16.9516\\nL 89.6325 16.9516\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.68, "data-ID": 100, "mols2grid-id": 19, "mols2grid-tooltip": "<strong>Name</strong>: 1,7-phenantroline<br><strong>SMILES</strong>: c1ccc2ccc3nccnc3c2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.68</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Nc3cc2c1ccccc1ccc2c4ccccc34", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.061,93.7522 L 105.578,87.4901' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.578,87.4901 L 103.095,81.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.095,81.2279 L 81.1476,77.9286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.442,76.4774 L 85.0794,74.168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-1' d='M 116.866,63.7275 L 103.095,81.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.1476,77.9286 L 73.5449,57.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.5449,57.4158 L 51.4542,54.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.8399,52.6823 L 55.3764,50.4732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-3' d='M 86.4551,40.4892 L 73.5449,57.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.4542,54.26 L 37.5399,71.7604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 43.1343,34.1775 L 51.4542,54.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.5399,71.7604 L 15.5926,68.7481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 34.833,67.0452 L 19.4699,64.9365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 15.5926,68.7481 L 7.27273,48.5221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 7.27273,48.5221 L 21.0436,31.0217' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.7203,48.5583 L 22.3599,36.3079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 21.0436,31.0217 L 43.1343,34.1775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 43.1343,34.1775 L 56.9051,16.6771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 48.5818,34.2136 L 58.2214,21.9633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 56.9051,16.6771 L 80,19.9763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80,19.9763 L 86.4551,40.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 76.8633,24.345 L 81.3819,38.704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 86.4551,40.4892 L 108.546,43.645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 108.546,43.645 L 122.46,26.1445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 114.001,43.6981 L 123.741,31.4478' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-13' d='M 116.866,63.7275 L 108.546,43.645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 122.46,26.1445 L 144.407,29.1569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 144.407,29.1569 L 152.727,48.9525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 141.688,33.7936 L 147.512,47.6505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 152.727,48.9525 L 138.956,66.8833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 138.956,66.8833 L 116.866,63.7275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 136.251,62.1498 L 120.788,59.9407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 108.093 94.1825\\nL 110.089 97.4101\\nQ 110.287 97.7285, 110.606 98.3052\\nQ 110.924 98.8818, 110.941 98.9163\\nL 110.941 94.1825\\nL 111.75 94.1825\\nL 111.75 100.276\\nL 110.916 100.276\\nL 108.772 96.7474\\nQ 108.523 96.3342, 108.256 95.8609\\nQ 107.998 95.3875, 107.92 95.2412\\nL 107.92 100.276\\nL 107.129 100.276\\nL 107.129 94.1825\\nL 108.093 94.1825\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 112.482 94.1825\\nL 113.308 94.1825\\nL 113.308 96.7732\\nL 116.424 96.7732\\nL 116.424 94.1825\\nL 117.25 94.1825\\nL 117.25 100.276\\nL 116.424 100.276\\nL 116.424 97.4617\\nL 113.308 97.4617\\nL 113.308 100.276\\nL 112.482 100.276\\nL 112.482 94.1825\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.546 100.062\\nQ 117.693 99.6818, 118.045 99.4716\\nQ 118.398 99.2557, 118.886 99.2557\\nQ 119.494 99.2557, 119.835 99.5852\\nQ 120.176 99.9146, 120.176 100.5\\nQ 120.176 101.096, 119.733 101.653\\nQ 119.295 102.21, 118.386 102.868\\nL 120.244 102.868\\nL 120.244 103.323\\nL 117.534 103.323\\nL 117.534 102.942\\nQ 118.284 102.408, 118.727 102.011\\nQ 119.176 101.613, 119.392 101.255\\nQ 119.608 100.897, 119.608 100.528\\nQ 119.608 100.142, 119.414 99.926\\nQ 119.221 99.7102, 118.886 99.7102\\nQ 118.562 99.7102, 118.346 99.8408\\nQ 118.131 99.9715, 117.977 100.261\\nL 117.546 100.062\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -6.2, "data-ID": 105, "mols2grid-id": 20, "mols2grid-tooltip": "<strong>Name</strong>: 6-aminochrysene<br><strong>SMILES</strong>: Nc3cc2c1ccccc1ccc2c4ccccc34<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.2</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(ccc1C)cc(c2ccc3cccc4)c34)(c1CC5)c25", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 54.763,59.934 L 62.1565,41.9783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 54.763,59.934 L 35.0909,62.7066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 51.2594,56.4278 L 37.4889,58.3686' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-20' d='M 54.763,59.934 L 66.9095,75.5132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.1565,41.9783 L 50.01,26.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 57.201,42.0442 L 48.6984,31.0463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 62.1565,41.9783 L 81.3005,39.2057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 50.01,26.267 L 30.3379,29.0396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 30.3379,29.0396 L 22.9444,47.5234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 32.9064,33.2832 L 27.7309,46.2219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 22.9444,47.5234 L 7.27273,49.8458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-4' d='M 35.0909,62.7066 L 22.9444,47.5234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.3005,39.2057 L 93.579,54.9169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 80.0214,44.0013 L 88.6164,54.9992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 93.579,54.9169 L 86.0535,72.3446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-7 atom-16' d='M 93.579,54.9169 L 113.251,52.1444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 86.0535,72.3446 L 98.332,88.4519' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-8' d='M 66.9095,75.5132 L 86.0535,72.3446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-8' d='M 69.1343,71.1303 L 82.5351,68.9122' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 98.332,88.4519 L 117.872,85.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 100.733,84.1307 L 114.411,82.2823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 117.872,85.8113 L 125.398,67.4595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 125.398,67.4595 L 145.07,64.687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 113.251,52.1444 L 125.398,67.4595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 111.97,56.9029 L 120.472,67.6235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 145.07,64.687 L 152.727,46.5992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 142.571,60.4296 L 147.931,47.7682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 152.727,46.5992 L 140.185,31.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 140.185,31.152 L 120.645,33.7926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 137.784,35.4732 L 124.106,37.3216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 113.251,52.1444 L 120.645,33.7926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-18' d='M 35.0909,62.7066 L 32.3183,85.1512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 32.3183,85.1512 L 53.3107,93.733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-19' d='M 66.9095,75.5132 L 53.3107,93.733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -7.92, "data-ID": 110, "mols2grid-id": 21, "mols2grid-tooltip": "<strong>Name</strong>: 3-methylcholanthrene<br><strong>SMILES</strong>: c(c(ccc1C)cc(c2ccc3cccc4)c34)(c1CC5)c25<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.92</span>", "style-Solubility": "color: red"}, {"data-SMILES": "BrCBr", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.675,63.132 L 69.1862,56.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 69.1862,56.4904 L 80.6975,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.6975,49.8487 L 91.5113,56.0879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.5113,56.0879 L 102.325,62.3271' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 49.17 64.5713\\nQ 50.19 64.8563, 50.7 65.4862\\nQ 51.225 66.1013, 51.225 67.0162\\nQ 51.225 68.4862, 50.28 69.3263\\nQ 49.35 70.1513, 47.58 70.1513\\nL 44.01 70.1513\\nL 44.01 59.5312\\nL 47.145 59.5312\\nQ 48.96 59.5312, 49.875 60.2663\\nQ 50.79 61.0013, 50.79 62.3513\\nQ 50.79 63.9563, 49.17 64.5713\\nM 45.435 60.7313\\nL 45.435 64.0613\\nL 47.145 64.0613\\nQ 48.195 64.0613, 48.735 63.6413\\nQ 49.29 63.2063, 49.29 62.3513\\nQ 49.29 60.7313, 47.145 60.7313\\nL 45.435 60.7313\\nM 47.58 68.9513\\nQ 48.615 68.9513, 49.17 68.4563\\nQ 49.725 67.9613, 49.725 67.0162\\nQ 49.725 66.1463, 49.11 65.7113\\nQ 48.51 65.2613, 47.355 65.2613\\nL 45.435 65.2613\\nL 45.435 68.9513\\nL 47.58 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 53.64 62.4413\\nL 53.805 63.5063\\nQ 54.615 62.3063, 55.935 62.3063\\nQ 56.355 62.3063, 56.925 62.4563\\nL 56.7 63.7163\\nQ 56.055 63.5663, 55.695 63.5663\\nQ 55.065 63.5663, 54.645 63.8213\\nQ 54.24 64.0613, 53.91 64.6463\\nL 53.91 70.1513\\nL 52.5 70.1513\\nL 52.5 62.4413\\nL 53.64 62.4413\\n' fill='#7F4C19'/>\\n<path class='atom-2' d='M 108.235 64.5713\\nQ 109.255 64.8563, 109.765 65.4862\\nQ 110.29 66.1013, 110.29 67.0162\\nQ 110.29 68.4862, 109.345 69.3263\\nQ 108.415 70.1513, 106.645 70.1513\\nL 103.075 70.1513\\nL 103.075 59.5312\\nL 106.21 59.5312\\nQ 108.025 59.5312, 108.94 60.2663\\nQ 109.855 61.0013, 109.855 62.3513\\nQ 109.855 63.9563, 108.235 64.5713\\nM 104.5 60.7313\\nL 104.5 64.0613\\nL 106.21 64.0613\\nQ 107.26 64.0613, 107.8 63.6413\\nQ 108.355 63.2063, 108.355 62.3513\\nQ 108.355 60.7313, 106.21 60.7313\\nL 104.5 60.7313\\nM 106.645 68.9513\\nQ 107.68 68.9513, 108.235 68.4563\\nQ 108.79 67.9613, 108.79 67.0162\\nQ 108.79 66.1463, 108.175 65.7113\\nQ 107.575 65.2613, 106.42 65.2613\\nL 104.5 65.2613\\nL 104.5 68.9513\\nL 106.645 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-2' d='M 112.705 62.4413\\nL 112.87 63.5063\\nQ 113.68 62.3063, 115 62.3063\\nQ 115.42 62.3063, 115.99 62.4563\\nL 115.765 63.7163\\nQ 115.12 63.5663, 114.76 63.5663\\nQ 114.13 63.5663, 113.71 63.8213\\nQ 113.305 64.0613, 112.975 64.6463\\nL 112.975 70.1513\\nL 111.565 70.1513\\nL 111.565 62.4413\\nL 112.705 62.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -1.17, "data-ID": 115, "mols2grid-id": 22, "mols2grid-tooltip": "<strong>Name</strong>: dibromomethane<br><strong>SMILES</strong>: BrCBr<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.17</span>", "style-Solubility": "color: black"}, {"data-SMILES": "ClC(Cl)(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.1575,74.0942 L 69.43,67.0133' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 69.43,67.0133 L 81.7025,59.9325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.7025,59.9325 L 92.2725,66.031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2725,66.031 L 102.843,72.1296' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 81.7025,59.9325 L 81.7025,48.2212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 81.7025,48.2212 L 81.7025,36.51' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 81.7025,59.9325 L 81.7025,72.0337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 81.7025,72.0337 L 81.7025,84.135' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 45.5475 75.2925\\nQ 45.5475 72.6525, 46.7775 71.2725\\nQ 48.0225 69.8775, 50.3775 69.8775\\nQ 52.5675 69.8775, 53.7375 71.4225\\nL 52.7475 72.2325\\nQ 51.8925 71.1075, 50.3775 71.1075\\nQ 48.7725 71.1075, 47.9175 72.1875\\nQ 47.0775 73.2525, 47.0775 75.2925\\nQ 47.0775 77.3925, 47.9475 78.4725\\nQ 48.8325 79.5525, 50.5425 79.5525\\nQ 51.7125 79.5525, 53.0775 78.8475\\nL 53.4975 79.9725\\nQ 52.9425 80.3325, 52.1025 80.5425\\nQ 51.2625 80.7525, 50.3325 80.7525\\nQ 48.0225 80.7525, 46.7775 79.3425\\nQ 45.5475 77.9325, 45.5475 75.2925\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 55.0275 69.2325\\nL 56.4075 69.2325\\nL 56.4075 80.6175\\nL 55.0275 80.6175\\nL 55.0275 69.2325\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 103.592 75.2925\\nQ 103.592 72.6525, 104.822 71.2725\\nQ 106.067 69.8775, 108.422 69.8775\\nQ 110.612 69.8775, 111.782 71.4225\\nL 110.792 72.2325\\nQ 109.937 71.1075, 108.422 71.1075\\nQ 106.817 71.1075, 105.962 72.1875\\nQ 105.122 73.2525, 105.122 75.2925\\nQ 105.122 77.3925, 105.992 78.4725\\nQ 106.877 79.5525, 108.587 79.5525\\nQ 109.757 79.5525, 111.122 78.8475\\nL 111.542 79.9725\\nQ 110.987 80.3325, 110.147 80.5425\\nQ 109.307 80.7525, 108.377 80.7525\\nQ 106.067 80.7525, 104.822 79.3425\\nQ 103.592 77.9325, 103.592 75.2925\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 113.072 69.2325\\nL 114.452 69.2325\\nL 114.452 80.6175\\nL 113.072 80.6175\\nL 113.072 69.2325\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 77.6075 30.3\\nQ 77.6075 27.66, 78.8375 26.28\\nQ 80.0825 24.885, 82.4375 24.885\\nQ 84.6275 24.885, 85.7975 26.43\\nL 84.8075 27.24\\nQ 83.9525 26.115, 82.4375 26.115\\nQ 80.8325 26.115, 79.9775 27.195\\nQ 79.1375 28.26, 79.1375 30.3\\nQ 79.1375 32.4, 80.0075 33.48\\nQ 80.8925 34.56, 82.6025 34.56\\nQ 83.7725 34.56, 85.1375 33.855\\nL 85.5575 34.98\\nQ 85.0025 35.34, 84.1625 35.55\\nQ 83.3225 35.76, 82.3925 35.76\\nQ 80.0825 35.76, 78.8375 34.35\\nQ 77.6075 32.94, 77.6075 30.3\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 87.0875 24.24\\nL 88.4675 24.24\\nL 88.4675 35.625\\nL 87.0875 35.625\\nL 87.0875 24.24\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 77.6075 90.3\\nQ 77.6075 87.66, 78.8375 86.28\\nQ 80.0825 84.885, 82.4375 84.885\\nQ 84.6275 84.885, 85.7975 86.43\\nL 84.8075 87.24\\nQ 83.9525 86.115, 82.4375 86.115\\nQ 80.8325 86.115, 79.9775 87.195\\nQ 79.1375 88.26, 79.1375 90.3\\nQ 79.1375 92.4, 80.0075 93.48\\nQ 80.8925 94.56, 82.6025 94.56\\nQ 83.7725 94.56, 85.1375 93.855\\nL 85.5575 94.98\\nQ 85.0025 95.34, 84.1625 95.55\\nQ 83.3225 95.76, 82.3925 95.76\\nQ 80.0825 95.76, 78.8375 94.35\\nQ 77.6075 92.94, 77.6075 90.3\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 87.0875 84.24\\nL 88.4675 84.24\\nL 88.4675 95.625\\nL 87.0875 95.625\\nL 87.0875 84.24\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.31, "data-ID": 120, "mols2grid-id": 23, "mols2grid-tooltip": "<strong>Name</strong>: tetrachloromethane<br><strong>SMILES</strong>: ClC(Cl)(Cl)Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.31</span>", "style-Solubility": "color: black"}, {"data-SMILES": "ClCCCl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.9075,64.7192 L 53.18,57.6383' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 53.18,57.6383 L 65.4525,50.5575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.5575 L 97.9525,69.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.9525,69.3075 L 108.523,63.209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 108.523,63.209 L 119.093,57.1104' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 29.2975 65.9175\\nQ 29.2975 63.2775, 30.5275 61.8975\\nQ 31.7725 60.5025, 34.1275 60.5025\\nQ 36.3175 60.5025, 37.4875 62.0475\\nL 36.4975 62.8575\\nQ 35.6425 61.7325, 34.1275 61.7325\\nQ 32.5225 61.7325, 31.6675 62.8125\\nQ 30.8275 63.8775, 30.8275 65.9175\\nQ 30.8275 68.0175, 31.6975 69.0975\\nQ 32.5825 70.1775, 34.2925 70.1775\\nQ 35.4625 70.1775, 36.8275 69.4725\\nL 37.2475 70.5975\\nQ 36.6925 70.9575, 35.8525 71.1675\\nQ 35.0125 71.3775, 34.0825 71.3775\\nQ 31.7725 71.3775, 30.5275 69.9675\\nQ 29.2975 68.5575, 29.2975 65.9175\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 38.7775 59.8575\\nL 40.1575 59.8575\\nL 40.1575 71.2425\\nL 38.7775 71.2425\\nL 38.7775 59.8575\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 119.842 54.6825\\nQ 119.842 52.0425, 121.072 50.6625\\nQ 122.317 49.2675, 124.672 49.2675\\nQ 126.862 49.2675, 128.032 50.8125\\nL 127.042 51.6225\\nQ 126.187 50.4975, 124.672 50.4975\\nQ 123.067 50.4975, 122.212 51.5775\\nQ 121.372 52.6425, 121.372 54.6825\\nQ 121.372 56.7825, 122.242 57.8625\\nQ 123.127 58.9425, 124.837 58.9425\\nQ 126.007 58.9425, 127.372 58.2375\\nL 127.792 59.3625\\nQ 127.237 59.7225, 126.397 59.9325\\nQ 125.557 60.1425, 124.627 60.1425\\nQ 122.317 60.1425, 121.072 58.7325\\nQ 119.842 57.3225, 119.842 54.6825\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 129.322 48.6225\\nL 130.702 48.6225\\nL 130.702 60.0075\\nL 129.322 60.0075\\nL 129.322 48.6225\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -1.06, "data-ID": 125, "mols2grid-id": 24, "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dichloroethane<br><strong>SMILES</strong>: ClCCCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.06</span>", "style-Solubility": "color: black"}, {"data-SMILES": "ClC(Cl)C(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.9075,64.7192 L 53.18,57.6383' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 53.18,57.6383 L 65.4525,50.5575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.5575 L 65.4525,38.8462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,38.8462 L 65.4525,27.135' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 65.4525,50.5575 L 97.9525,69.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.9525,69.3075 L 108.523,63.209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.523,63.209 L 119.093,57.1104' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,69.3075 L 97.9525,81.4087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,81.4087 L 97.9525,93.51' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 29.2975 65.9175\\nQ 29.2975 63.2775, 30.5275 61.8975\\nQ 31.7725 60.5025, 34.1275 60.5025\\nQ 36.3175 60.5025, 37.4875 62.0475\\nL 36.4975 62.8575\\nQ 35.6425 61.7325, 34.1275 61.7325\\nQ 32.5225 61.7325, 31.6675 62.8125\\nQ 30.8275 63.8775, 30.8275 65.9175\\nQ 30.8275 68.0175, 31.6975 69.0975\\nQ 32.5825 70.1775, 34.2925 70.1775\\nQ 35.4625 70.1775, 36.8275 69.4725\\nL 37.2475 70.5975\\nQ 36.6925 70.9575, 35.8525 71.1675\\nQ 35.0125 71.3775, 34.0825 71.3775\\nQ 31.7725 71.3775, 30.5275 69.9675\\nQ 29.2975 68.5575, 29.2975 65.9175\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 38.7775 59.8575\\nL 40.1575 59.8575\\nL 40.1575 71.2425\\nL 38.7775 71.2425\\nL 38.7775 59.8575\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 61.3575 20.925\\nQ 61.3575 18.285, 62.5875 16.905\\nQ 63.8325 15.51, 66.1875 15.51\\nQ 68.3775 15.51, 69.5475 17.055\\nL 68.5575 17.865\\nQ 67.7025 16.74, 66.1875 16.74\\nQ 64.5825 16.74, 63.7275 17.82\\nQ 62.8875 18.885, 62.8875 20.925\\nQ 62.8875 23.025, 63.7575 24.105\\nQ 64.6425 25.185, 66.3525 25.185\\nQ 67.5225 25.185, 68.8875 24.48\\nL 69.3075 25.605\\nQ 68.7525 25.965, 67.9125 26.175\\nQ 67.0725 26.385, 66.1425 26.385\\nQ 63.8325 26.385, 62.5875 24.975\\nQ 61.3575 23.565, 61.3575 20.925\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 70.8375 14.865\\nL 72.2175 14.865\\nL 72.2175 26.25\\nL 70.8375 26.25\\nL 70.8375 14.865\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 119.842 54.6825\\nQ 119.842 52.0425, 121.072 50.6625\\nQ 122.317 49.2675, 124.672 49.2675\\nQ 126.862 49.2675, 128.032 50.8125\\nL 127.042 51.6225\\nQ 126.187 50.4975, 124.672 50.4975\\nQ 123.067 50.4975, 122.212 51.5775\\nQ 121.372 52.6425, 121.372 54.6825\\nQ 121.372 56.7825, 122.242 57.8625\\nQ 123.127 58.9425, 124.837 58.9425\\nQ 126.007 58.9425, 127.372 58.2375\\nL 127.792 59.3625\\nQ 127.237 59.7225, 126.397 59.9325\\nQ 125.557 60.1425, 124.627 60.1425\\nQ 122.317 60.1425, 121.072 58.7325\\nQ 119.842 57.3225, 119.842 54.6825\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 129.322 48.6225\\nL 130.702 48.6225\\nL 130.702 60.0075\\nL 129.322 60.0075\\nL 129.322 48.6225\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 93.8575 99.675\\nQ 93.8575 97.035, 95.0875 95.655\\nQ 96.3325 94.26, 98.6875 94.26\\nQ 100.877 94.26, 102.047 95.805\\nL 101.058 96.615\\nQ 100.203 95.49, 98.6875 95.49\\nQ 97.0825 95.49, 96.2275 96.57\\nQ 95.3875 97.635, 95.3875 99.675\\nQ 95.3875 101.775, 96.2575 102.855\\nQ 97.1425 103.935, 98.8525 103.935\\nQ 100.023 103.935, 101.388 103.23\\nL 101.808 104.355\\nQ 101.252 104.715, 100.412 104.925\\nQ 99.5725 105.135, 98.6425 105.135\\nQ 96.3325 105.135, 95.0875 103.725\\nQ 93.8575 102.315, 93.8575 99.675\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 103.338 93.615\\nL 104.718 93.615\\nL 104.718 105\\nL 103.338 105\\nL 103.338 93.615\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -1.74, "data-ID": 130, "mols2grid-id": 25, "mols2grid-tooltip": "<strong>Name</strong>: 1,1,2,2-tetrachloroethane<br><strong>SMILES</strong>: ClC(Cl)C(Cl)Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.74</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 34.3825,66.585 L 60.3675,51.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.3675,51.5925 L 92.8675,70.3425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8675,70.3425 L 103.438,64.244' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.438,64.244 L 114.008,58.1454' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 114.758 55.7175\\nQ 114.758 53.0775, 115.988 51.6975\\nQ 117.233 50.3025, 119.588 50.3025\\nQ 121.778 50.3025, 122.948 51.8475\\nL 121.958 52.6575\\nQ 121.103 51.5325, 119.588 51.5325\\nQ 117.983 51.5325, 117.128 52.6125\\nQ 116.288 53.6775, 116.288 55.7175\\nQ 116.288 57.8175, 117.158 58.8975\\nQ 118.043 59.9775, 119.753 59.9775\\nQ 120.923 59.9775, 122.288 59.2725\\nL 122.708 60.3975\\nQ 122.153 60.7575, 121.312 60.9675\\nQ 120.473 61.1775, 119.543 61.1775\\nQ 117.233 61.1775, 115.988 59.7675\\nQ 114.758 58.3575, 114.758 55.7175\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 124.238 49.6575\\nL 125.618 49.6575\\nL 125.618 61.0425\\nL 124.238 61.0425\\nL 124.238 49.6575\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -1.47, "data-ID": 135, "mols2grid-id": 26, "mols2grid-tooltip": "<strong>Name</strong>: 1-chloropropane<br><strong>SMILES</strong>: CCCCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.47</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(I)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 53.6587,79.83 L 79.6437,64.8375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.6437,64.8375 L 91.905,71.9118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.905,71.9118 L 104.166,78.9862' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 79.6437,64.8375 L 79.6437,34.8375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 104.916 74.4975\\nL 106.341 74.4975\\nL 106.341 85.1625\\nL 104.916 85.1625\\nL 104.916 74.4975\\n' fill='#A01EEF'/>\\n</svg>\\n", "data-Solubility": -2.09, "data-ID": 140, "mols2grid-id": 27, "mols2grid-tooltip": "<strong>Name</strong>: 2-iodopropane<br><strong>SMILES</strong>: CC(I)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-SMILES": "BrCC(Br)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.425,49.6845 L 52.9362,43.0429' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 52.9362,43.0429 L 64.4475,36.4013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.4475,36.4013 L 96.9475,55.1513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.9475,55.1513 L 107.761,48.9121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.761,48.9121 L 118.575,42.6729' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.9475,55.1513 L 96.9475,85.1513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 32.92 51.1238\\nQ 33.94 51.4087, 34.45 52.0388\\nQ 34.975 52.6538, 34.975 53.5688\\nQ 34.975 55.0388, 34.03 55.8787\\nQ 33.1 56.7037, 31.33 56.7037\\nL 27.76 56.7037\\nL 27.76 46.0837\\nL 30.895 46.0837\\nQ 32.71 46.0837, 33.625 46.8188\\nQ 34.54 47.5538, 34.54 48.9038\\nQ 34.54 50.5087, 32.92 51.1238\\nM 29.185 47.2837\\nL 29.185 50.6137\\nL 30.895 50.6137\\nQ 31.945 50.6137, 32.485 50.1938\\nQ 33.04 49.7587, 33.04 48.9038\\nQ 33.04 47.2837, 30.895 47.2837\\nL 29.185 47.2837\\nM 31.33 55.5037\\nQ 32.365 55.5037, 32.92 55.0087\\nQ 33.475 54.5138, 33.475 53.5688\\nQ 33.475 52.6987, 32.86 52.2638\\nQ 32.26 51.8137, 31.105 51.8137\\nL 29.185 51.8137\\nL 29.185 55.5037\\nL 31.33 55.5037\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 37.39 48.9937\\nL 37.555 50.0587\\nQ 38.365 48.8588, 39.685 48.8588\\nQ 40.105 48.8588, 40.675 49.0087\\nL 40.45 50.2687\\nQ 39.805 50.1187, 39.445 50.1187\\nQ 38.815 50.1187, 38.395 50.3738\\nQ 37.99 50.6137, 37.66 51.1987\\nL 37.66 56.7037\\nL 36.25 56.7037\\nL 36.25 48.9937\\nL 37.39 48.9937\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 124.485 39.8888\\nQ 125.505 40.1737, 126.015 40.8038\\nQ 126.54 41.4188, 126.54 42.3338\\nQ 126.54 43.8038, 125.595 44.6437\\nQ 124.665 45.4688, 122.895 45.4688\\nL 119.325 45.4688\\nL 119.325 34.8487\\nL 122.46 34.8487\\nQ 124.275 34.8487, 125.19 35.5838\\nQ 126.105 36.3188, 126.105 37.6688\\nQ 126.105 39.2737, 124.485 39.8888\\nM 120.75 36.0487\\nL 120.75 39.3787\\nL 122.46 39.3787\\nQ 123.51 39.3787, 124.05 38.9588\\nQ 124.605 38.5237, 124.605 37.6688\\nQ 124.605 36.0487, 122.46 36.0487\\nL 120.75 36.0487\\nM 122.895 44.2687\\nQ 123.93 44.2687, 124.485 43.7737\\nQ 125.04 43.2788, 125.04 42.3338\\nQ 125.04 41.4637, 124.425 41.0288\\nQ 123.825 40.5787, 122.67 40.5787\\nL 120.75 40.5787\\nL 120.75 44.2687\\nL 122.895 44.2687\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 128.955 37.7587\\nL 129.12 38.8237\\nQ 129.93 37.6238, 131.25 37.6238\\nQ 131.67 37.6238, 132.24 37.7737\\nL 132.015 39.0337\\nQ 131.37 38.8837, 131.01 38.8837\\nQ 130.38 38.8837, 129.96 39.1388\\nQ 129.555 39.3787, 129.225 39.9637\\nL 129.225 45.4688\\nL 127.815 45.4688\\nL 127.815 37.7587\\nL 128.955 37.7587\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -2.15, "data-ID": 145, "mols2grid-id": 28, "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dibromopropane<br><strong>SMILES</strong>: BrCC(Br)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-SMILES": "BrCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 29.8287,63.132 L 41.34,56.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.34,56.4904 L 52.8512,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 52.8512,49.8487 L 85.3512,68.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.3512,68.5987 L 117.851,49.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 117.851,49.8487 L 143.836,64.8413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 21.3237 64.5713\\nQ 22.3437 64.8563, 22.8537 65.4862\\nQ 23.3787 66.1013, 23.3787 67.0162\\nQ 23.3787 68.4862, 22.4337 69.3263\\nQ 21.5037 70.1513, 19.7337 70.1513\\nL 16.1637 70.1513\\nL 16.1637 59.5312\\nL 19.2987 59.5312\\nQ 21.1137 59.5312, 22.0287 60.2663\\nQ 22.9437 61.0013, 22.9437 62.3513\\nQ 22.9437 63.9563, 21.3237 64.5713\\nM 17.5887 60.7313\\nL 17.5887 64.0613\\nL 19.2987 64.0613\\nQ 20.3487 64.0613, 20.8887 63.6413\\nQ 21.4437 63.2063, 21.4437 62.3513\\nQ 21.4437 60.7313, 19.2987 60.7313\\nL 17.5887 60.7313\\nM 19.7337 68.9513\\nQ 20.7687 68.9513, 21.3237 68.4563\\nQ 21.8787 67.9613, 21.8787 67.0162\\nQ 21.8787 66.1463, 21.2637 65.7113\\nQ 20.6637 65.2613, 19.5087 65.2613\\nL 17.5887 65.2613\\nL 17.5887 68.9513\\nL 19.7337 68.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 25.7937 62.4413\\nL 25.9587 63.5063\\nQ 26.7687 62.3063, 28.0887 62.3063\\nQ 28.5087 62.3063, 29.0787 62.4563\\nL 28.8537 63.7163\\nQ 28.2087 63.5663, 27.8487 63.5663\\nQ 27.2187 63.5663, 26.7987 63.8213\\nQ 26.3937 64.0613, 26.0637 64.6463\\nL 26.0637 70.1513\\nL 24.6537 70.1513\\nL 24.6537 62.4413\\nL 25.7937 62.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -2.37, "data-ID": 150, "mols2grid-id": 29, "mols2grid-tooltip": "<strong>Name</strong>: 1-bromobutane<br><strong>SMILES</strong>: BrCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.37</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(Cl)C(Cl)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 65.4525,20.625 L 65.4525,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 65.4525,50.625 L 53.18,57.7058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.18,57.7058 L 40.9075,64.7867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 65.4525,50.625 L 97.9525,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.9525,69.375 L 108.523,63.2765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.523,63.2765 L 119.093,57.1779' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 97.9525,69.375 L 97.9525,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 29.2975 65.985\\nQ 29.2975 63.345, 30.5275 61.965\\nQ 31.7725 60.57, 34.1275 60.57\\nQ 36.3175 60.57, 37.4875 62.115\\nL 36.4975 62.925\\nQ 35.6425 61.8, 34.1275 61.8\\nQ 32.5225 61.8, 31.6675 62.88\\nQ 30.8275 63.945, 30.8275 65.985\\nQ 30.8275 68.085, 31.6975 69.165\\nQ 32.5825 70.245, 34.2925 70.245\\nQ 35.4625 70.245, 36.8275 69.54\\nL 37.2475 70.665\\nQ 36.6925 71.025, 35.8525 71.235\\nQ 35.0125 71.445, 34.0825 71.445\\nQ 31.7725 71.445, 30.5275 70.035\\nQ 29.2975 68.625, 29.2975 65.985\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 38.7775 59.925\\nL 40.1575 59.925\\nL 40.1575 71.31\\nL 38.7775 71.31\\nL 38.7775 59.925\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 119.842 54.75\\nQ 119.842 52.11, 121.072 50.73\\nQ 122.317 49.335, 124.672 49.335\\nQ 126.862 49.335, 128.032 50.88\\nL 127.042 51.69\\nQ 126.187 50.565, 124.672 50.565\\nQ 123.067 50.565, 122.212 51.645\\nQ 121.372 52.71, 121.372 54.75\\nQ 121.372 56.85, 122.242 57.93\\nQ 123.127 59.01, 124.837 59.01\\nQ 126.007 59.01, 127.372 58.305\\nL 127.792 59.43\\nQ 127.237 59.79, 126.397 60\\nQ 125.557 60.21, 124.627 60.21\\nQ 122.317 60.21, 121.072 58.8\\nQ 119.842 57.39, 119.842 54.75\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 129.322 48.69\\nL 130.702 48.69\\nL 130.702 60.075\\nL 129.322 60.075\\nL 129.322 48.69\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.7, "data-ID": 155, "mols2grid-id": 30, "mols2grid-tooltip": "<strong>Name</strong>: 2,3-dichlorobutane<br><strong>SMILES</strong>: CC(Cl)C(Cl)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.7</span>", "style-Solubility": "color: black"}, {"data-SMILES": "BrCCC(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 29.8287,78.132 L 41.34,71.4904' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.34,71.4904 L 52.8512,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 52.8512,64.8487 L 85.3512,83.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.3512,83.5987 L 117.851,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 117.851,64.8487 L 143.836,79.8413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 117.851,64.8487 L 117.851,34.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 21.3237 79.5713\\nQ 22.3437 79.8563, 22.8537 80.4862\\nQ 23.3787 81.1013, 23.3787 82.0162\\nQ 23.3787 83.4862, 22.4337 84.3263\\nQ 21.5037 85.1513, 19.7337 85.1513\\nL 16.1637 85.1513\\nL 16.1637 74.5312\\nL 19.2987 74.5312\\nQ 21.1137 74.5312, 22.0287 75.2662\\nQ 22.9437 76.0012, 22.9437 77.3513\\nQ 22.9437 78.9563, 21.3237 79.5713\\nM 17.5887 75.7313\\nL 17.5887 79.0613\\nL 19.2987 79.0613\\nQ 20.3487 79.0613, 20.8887 78.6412\\nQ 21.4437 78.2063, 21.4437 77.3513\\nQ 21.4437 75.7313, 19.2987 75.7313\\nL 17.5887 75.7313\\nM 19.7337 83.9513\\nQ 20.7687 83.9513, 21.3237 83.4563\\nQ 21.8787 82.9613, 21.8787 82.0162\\nQ 21.8787 81.1463, 21.2637 80.7113\\nQ 20.6637 80.2613, 19.5087 80.2613\\nL 17.5887 80.2613\\nL 17.5887 83.9513\\nL 19.7337 83.9513\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 25.7937 77.4413\\nL 25.9587 78.5063\\nQ 26.7687 77.3063, 28.0887 77.3063\\nQ 28.5087 77.3063, 29.0787 77.4563\\nL 28.8537 78.7163\\nQ 28.2087 78.5663, 27.8487 78.5663\\nQ 27.2187 78.5663, 26.7987 78.8213\\nQ 26.3937 79.0613, 26.0637 79.6463\\nL 26.0637 85.1513\\nL 24.6537 85.1513\\nL 24.6537 77.4413\\nL 25.7937 77.4413\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -2.89, "data-ID": 160, "mols2grid-id": 31, "mols2grid-tooltip": "<strong>Name</strong>: 1-bromo-3-methylbutane<br><strong>SMILES</strong>: BrCCC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.89</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCCCCCBr", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,62.7477 L 22.0209,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.0209,54.2385 L 40.4669,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 40.4669,64.8804 L 58.9128,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.9128,54.2385 L 77.3587,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.3587,64.8804 L 95.8046,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8046,54.2385 L 114.249,64.8804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 114.249,64.8804 L 132.695,54.2385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 132.695,54.2385 L 138.833,57.7797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 138.833,57.7797 L 144.971,61.3209' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 148.326 62.5945\\nQ 148.905 62.7562, 149.194 63.1138\\nQ 149.492 63.4629, 149.492 63.9822\\nQ 149.492 64.8165, 148.956 65.2933\\nQ 148.428 65.7615, 147.423 65.7615\\nL 145.397 65.7615\\nL 145.397 59.734\\nL 147.176 59.734\\nQ 148.207 59.734, 148.726 60.1511\\nQ 149.245 60.5683, 149.245 61.3345\\nQ 149.245 62.2454, 148.326 62.5945\\nM 146.206 60.415\\nL 146.206 62.305\\nL 147.176 62.305\\nQ 147.772 62.305, 148.079 62.0667\\nQ 148.394 61.8198, 148.394 61.3345\\nQ 148.394 60.415, 147.176 60.415\\nL 146.206 60.415\\nM 147.423 65.0804\\nQ 148.011 65.0804, 148.326 64.7995\\nQ 148.641 64.5185, 148.641 63.9822\\nQ 148.641 63.4884, 148.292 63.2415\\nQ 147.951 62.9861, 147.296 62.9861\\nL 146.206 62.9861\\nL 146.206 65.0804\\nL 147.423 65.0804\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 150.863 61.3856\\nL 150.956 61.99\\nQ 151.416 61.309, 152.165 61.309\\nQ 152.404 61.309, 152.727 61.3941\\nL 152.6 62.1092\\nQ 152.233 62.0241, 152.029 62.0241\\nQ 151.672 62.0241, 151.433 62.1688\\nQ 151.203 62.305, 151.016 62.6371\\nL 151.016 65.7615\\nL 150.216 65.7615\\nL 150.216 61.3856\\nL 150.863 61.3856\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -5.06, "data-ID": 165, "mols2grid-id": 32, "mols2grid-tooltip": "<strong>Name</strong>: 1-bromooctane<br><strong>SMILES</strong>: CCCCCCCCBr<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.06</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCCCCCBr", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,64.1559 L 24.1629,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.1629,54.4108 L 45.2878,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.2878,66.5983 L 66.4126,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.4126,54.4108 L 87.5375,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5375,66.5983 L 108.662,54.4108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 108.662,54.4108 L 129.786,66.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 129.786,66.5983 L 136.815,62.5428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 136.815,62.5428 L 143.845,58.4872' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 147.687 56.6777\\nQ 148.35 56.863, 148.681 57.2725\\nQ 149.022 57.6722, 149.022 58.2669\\nQ 149.022 59.2224, 148.408 59.7684\\nQ 147.804 60.3047, 146.653 60.3047\\nL 144.333 60.3047\\nL 144.333 53.4017\\nL 146.37 53.4017\\nQ 147.55 53.4017, 148.145 53.8795\\nQ 148.74 54.3572, 148.74 55.2347\\nQ 148.74 56.278, 147.687 56.6777\\nM 145.259 54.1817\\nL 145.259 56.3462\\nL 146.37 56.3462\\nQ 147.053 56.3462, 147.404 56.0732\\nQ 147.765 55.7905, 147.765 55.2347\\nQ 147.765 54.1817, 146.37 54.1817\\nL 145.259 54.1817\\nM 146.653 59.5247\\nQ 147.326 59.5247, 147.687 59.2029\\nQ 148.047 58.8812, 148.047 58.2669\\nQ 148.047 57.7015, 147.648 57.4187\\nQ 147.258 57.1262, 146.507 57.1262\\nL 145.259 57.1262\\nL 145.259 59.5247\\nL 146.653 59.5247\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 150.592 55.2932\\nL 150.699 55.9855\\nQ 151.226 55.2055, 152.084 55.2055\\nQ 152.357 55.2055, 152.727 55.303\\nL 152.581 56.122\\nQ 152.162 56.0245, 151.928 56.0245\\nQ 151.518 56.0245, 151.245 56.1902\\nQ 150.982 56.3462, 150.768 56.7265\\nL 150.768 60.3047\\nL 149.851 60.3047\\nL 149.851 55.2932\\nL 150.592 55.2932\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -4.43, "data-ID": 171, "mols2grid-id": 33, "mols2grid-tooltip": "<strong>Name</strong>: 1-bromoheptane<br><strong>SMILES</strong>: CCCCCCCBr<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.43</span>", "style-Solubility": "color: red"}, {"data-SMILES": "BrC=CBr", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.425,63.9082 L 52.9362,57.2666' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 52.9362,57.2666 L 64.4475,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.5735,53.8732 L 98.8215,66.1268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.3215,47.3768 L 95.0735,72.6232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.9475,69.375 L 107.761,63.1358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.761,63.1358 L 118.575,56.8966' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 32.92 65.3475\\nQ 33.94 65.6325, 34.45 66.2625\\nQ 34.975 66.8775, 34.975 67.7925\\nQ 34.975 69.2625, 34.03 70.1025\\nQ 33.1 70.9275, 31.33 70.9275\\nL 27.76 70.9275\\nL 27.76 60.3075\\nL 30.895 60.3075\\nQ 32.71 60.3075, 33.625 61.0425\\nQ 34.54 61.7775, 34.54 63.1275\\nQ 34.54 64.7325, 32.92 65.3475\\nM 29.185 61.5075\\nL 29.185 64.8375\\nL 30.895 64.8375\\nQ 31.945 64.8375, 32.485 64.4175\\nQ 33.04 63.9825, 33.04 63.1275\\nQ 33.04 61.5075, 30.895 61.5075\\nL 29.185 61.5075\\nM 31.33 69.7275\\nQ 32.365 69.7275, 32.92 69.2325\\nQ 33.475 68.7375, 33.475 67.7925\\nQ 33.475 66.9225, 32.86 66.4875\\nQ 32.26 66.0375, 31.105 66.0375\\nL 29.185 66.0375\\nL 29.185 69.7275\\nL 31.33 69.7275\\n' fill='#7F4C19'/>\\n<path class='atom-0' d='M 37.39 63.2175\\nL 37.555 64.2825\\nQ 38.365 63.0825, 39.685 63.0825\\nQ 40.105 63.0825, 40.675 63.2325\\nL 40.45 64.4925\\nQ 39.805 64.3425, 39.445 64.3425\\nQ 38.815 64.3425, 38.395 64.5975\\nQ 37.99 64.8375, 37.66 65.4225\\nL 37.66 70.9275\\nL 36.25 70.9275\\nL 36.25 63.2175\\nL 37.39 63.2175\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 124.485 54.1125\\nQ 125.505 54.3975, 126.015 55.0275\\nQ 126.54 55.6425, 126.54 56.5575\\nQ 126.54 58.0275, 125.595 58.8675\\nQ 124.665 59.6925, 122.895 59.6925\\nL 119.325 59.6925\\nL 119.325 49.0725\\nL 122.46 49.0725\\nQ 124.275 49.0725, 125.19 49.8075\\nQ 126.105 50.5425, 126.105 51.8925\\nQ 126.105 53.4975, 124.485 54.1125\\nM 120.75 50.2725\\nL 120.75 53.6025\\nL 122.46 53.6025\\nQ 123.51 53.6025, 124.05 53.1825\\nQ 124.605 52.7475, 124.605 51.8925\\nQ 124.605 50.2725, 122.46 50.2725\\nL 120.75 50.2725\\nM 122.895 58.4925\\nQ 123.93 58.4925, 124.485 57.9975\\nQ 125.04 57.5025, 125.04 56.5575\\nQ 125.04 55.6875, 124.425 55.2525\\nQ 123.825 54.8025, 122.67 54.8025\\nL 120.75 54.8025\\nL 120.75 58.4925\\nL 122.895 58.4925\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 128.955 51.9825\\nL 129.12 53.0475\\nQ 129.93 51.8475, 131.25 51.8475\\nQ 131.67 51.8475, 132.24 51.9975\\nL 132.015 53.2575\\nQ 131.37 53.1075, 131.01 53.1075\\nQ 130.38 53.1075, 129.96 53.3625\\nQ 129.555 53.6025, 129.225 54.1875\\nL 129.225 59.6925\\nL 127.815 59.6925\\nL 127.815 51.9825\\nL 128.955 51.9825\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -1.32, "data-ID": 176, "mols2grid-id": 34, "mols2grid-tooltip": "<strong>Name</strong>: 1,2-dibromoethylene<br><strong>SMILES</strong>: BrC=CBr<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.32</span>", "style-Solubility": "color: black"}, {"data-SMILES": "ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 102.755,108.977 L 107.856,101.042' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.856,101.042 L 112.958,93.1062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.958,93.1062 L 132.974,89.1376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 106.919,76.8865 L 112.958,93.1062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 134.526,89.1376 L 131.421,68.7767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.421,89.1376 L 134.526,68.7767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 132.974,68.7767 L 113.993,64.6355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 113.993,64.6355 L 106.919,76.8865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-4' d='M 86.2126,48.9335 L 113.993,64.6355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 106.919,76.8865 L 78.9656,61.3571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.9656,61.3571 L 72.8194,68.7038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 72.8194,68.7038 L 66.6732,76.0505' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 78.9656,61.3571 L 44.9733,75.1611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-6' d='M 81.8989,21.8433 L 78.9656,61.3571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 46.2976,75.9722 L 52.104,60.546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 43.6491,74.3499 L 54.7525,62.1682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-8 atom-16' d='M 44.9733,75.1611 L 42.2198,82.9163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-8 atom-16' d='M 42.2198,82.9163 L 39.4662,90.6715' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 53.4283,61.3571 L 44.234,57.9014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 44.234,57.9014 L 35.0397,54.4456' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 53.4283,61.3571 L 86.2126,48.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 86.2126,48.9335 L 90.6052,42.7752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 90.6052,42.7752 L 94.9978,36.6169' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-11 atom-13' d='M 86.2126,48.9335 L 81.8989,21.8433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 81.8989,21.8433 L 73.0074,17.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 73.0074,17.7105 L 64.116,13.5777' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-15' d='M 81.8989,21.8433 L 88.4955,16.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-15' d='M 88.4955,16.8731 L 95.092,11.903' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 94.7418 110.777\\nQ 94.7418 108.955, 95.5907 108.002\\nQ 96.45 107.04, 98.0754 107.04\\nQ 99.5869 107.04, 100.394 108.106\\nL 99.7112 108.665\\nQ 99.1211 107.888, 98.0754 107.888\\nQ 96.9676 107.888, 96.3775 108.634\\nQ 95.7978 109.369, 95.7978 110.777\\nQ 95.7978 112.226, 96.3982 112.972\\nQ 97.0091 113.717, 98.1893 113.717\\nQ 98.9968 113.717, 99.9389 113.231\\nL 100.229 114.007\\nQ 99.8458 114.256, 99.266 114.401\\nQ 98.6862 114.545, 98.0444 114.545\\nQ 96.45 114.545, 95.5907 113.572\\nQ 94.7418 112.599, 94.7418 110.777\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 101.285 106.594\\nL 102.237 106.594\\nL 102.237 114.452\\nL 101.285 114.452\\nL 101.285 106.594\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 58.66 77.4922\\nQ 58.66 75.6701, 59.5089 74.7176\\nQ 60.3682 73.7548, 61.9936 73.7548\\nQ 63.5051 73.7548, 64.3127 74.8211\\nL 63.6294 75.3802\\nQ 63.0393 74.6037, 61.9936 74.6037\\nQ 60.8858 74.6037, 60.2957 75.3491\\nQ 59.716 76.0842, 59.716 77.4922\\nQ 59.716 78.9416, 60.3164 79.687\\nQ 60.9273 80.4324, 62.1075 80.4324\\nQ 62.915 80.4324, 63.8571 79.9458\\nL 64.147 80.7223\\nQ 63.764 80.9708, 63.1842 81.1157\\nQ 62.6044 81.2607, 61.9625 81.2607\\nQ 60.3682 81.2607, 59.5089 80.2875\\nQ 58.66 79.3143, 58.66 77.4922\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 65.203 73.3096\\nL 66.1555 73.3096\\nL 66.1555 81.1675\\nL 65.203 81.1675\\nL 65.203 73.3096\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 27.0265 54.3257\\nQ 27.0265 52.5036, 27.8754 51.5511\\nQ 28.7347 50.5883, 30.3601 50.5883\\nQ 31.8717 50.5883, 32.6792 51.6546\\nL 31.9959 52.2137\\nQ 31.4058 51.4372, 30.3601 51.4372\\nQ 29.2524 51.4372, 28.6622 52.1826\\nQ 28.0825 52.9177, 28.0825 54.3257\\nQ 28.0825 55.7751, 28.6829 56.5205\\nQ 29.2938 57.266, 30.474 57.266\\nQ 31.2815 57.266, 32.2237 56.7794\\nL 32.5135 57.5558\\nQ 32.1305 57.8043, 31.5507 57.9493\\nQ 30.9709 58.0942, 30.3291 58.0942\\nQ 28.7347 58.0942, 27.8754 57.121\\nQ 27.0265 56.1478, 27.0265 54.3257\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 33.5695 50.1431\\nL 34.522 50.1431\\nL 34.522 58.001\\nL 33.5695 58.001\\nL 33.5695 50.1431\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 95.4095 32.3308\\nQ 95.4095 30.5087, 96.2585 29.5562\\nQ 97.1178 28.5934, 98.7432 28.5934\\nQ 100.255 28.5934, 101.062 29.6598\\nL 100.379 30.2188\\nQ 99.7888 29.4424, 98.7432 29.4424\\nQ 97.6354 29.4424, 97.0453 30.1878\\nQ 96.4655 30.9228, 96.4655 32.3308\\nQ 96.4655 33.7803, 97.066 34.5257\\nQ 97.6768 35.2711, 98.8571 35.2711\\nQ 99.6646 35.2711, 100.607 34.7845\\nL 100.897 35.561\\nQ 100.514 35.8094, 99.9338 35.9544\\nQ 99.354 36.0993, 98.7121 36.0993\\nQ 97.1178 36.0993, 96.2585 35.1261\\nQ 95.4095 34.153, 95.4095 32.3308\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 101.953 28.1482\\nL 102.905 28.1482\\nL 102.905 36.0061\\nL 101.953 36.0061\\nL 101.953 28.1482\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 56.1028 13.3694\\nQ 56.1028 11.5473, 56.9517 10.5948\\nQ 57.811 9.63197, 59.4364 9.63197\\nQ 60.948 9.63197, 61.7555 10.6983\\nL 61.0722 11.2574\\nQ 60.4821 10.4809, 59.4364 10.4809\\nQ 58.3287 10.4809, 57.7385 11.2263\\nQ 57.1588 11.9614, 57.1588 13.3694\\nQ 57.1588 14.8188, 57.7592 15.5642\\nQ 58.3701 16.3096, 59.5503 16.3096\\nQ 60.3578 16.3096, 61.3 15.823\\nL 61.5898 16.5995\\nQ 61.2068 16.848, 60.627 16.9929\\nQ 60.0472 17.1379, 59.4054 17.1379\\nQ 57.811 17.1379, 56.9517 16.1647\\nQ 56.1028 15.1915, 56.1028 13.3694\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 62.6458 9.18679\\nL 63.5983 9.18679\\nL 63.5983 17.0447\\nL 62.6458 17.0447\\nL 62.6458 9.18679\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 95.6097 9.63714\\nQ 95.6097 7.81502, 96.4586 6.86255\\nQ 97.3179 5.89972, 98.9433 5.89972\\nQ 100.455 5.89972, 101.262 6.96608\\nL 100.579 7.52514\\nQ 99.989 6.74867, 98.9433 6.74867\\nQ 97.8356 6.74867, 97.2455 7.49408\\nQ 96.6657 8.22914, 96.6657 9.63714\\nQ 96.6657 11.0866, 97.2662 11.832\\nQ 97.877 12.5774, 99.0572 12.5774\\nQ 99.8648 12.5774, 100.807 12.0908\\nL 101.097 12.8673\\nQ 100.714 13.1157, 100.134 13.2607\\nQ 99.5542 13.4056, 98.9123 13.4056\\nQ 97.3179 13.4056, 96.4586 12.4324\\nQ 95.6097 11.4593, 95.6097 9.63714\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 102.153 5.45455\\nL 103.105 5.45455\\nL 103.105 13.3124\\nL 102.153 13.3124\\nL 102.153 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 35.2191 94.9266\\nQ 35.2191 93.1045, 36.0681 92.152\\nQ 36.9274 91.1892, 38.5528 91.1892\\nQ 40.0643 91.1892, 40.8718 92.2555\\nL 40.1885 92.8146\\nQ 39.5984 92.0381, 38.5528 92.0381\\nQ 37.445 92.0381, 36.8549 92.7835\\nQ 36.2751 93.5186, 36.2751 94.9266\\nQ 36.2751 96.376, 36.8756 97.1214\\nQ 37.4864 97.8668, 38.6667 97.8668\\nQ 39.4742 97.8668, 40.4163 97.3802\\nL 40.7062 98.1567\\nQ 40.3231 98.4052, 39.7434 98.5501\\nQ 39.1636 98.6951, 38.5217 98.6951\\nQ 36.9274 98.6951, 36.0681 97.7219\\nQ 35.2191 96.7487, 35.2191 94.9266\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 41.7622 90.744\\nL 42.7147 90.744\\nL 42.7147 98.6019\\nL 41.7622 98.6019\\nL 41.7622 90.744\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.32, "data-ID": 181, "mols2grid-id": 35, "mols2grid-tooltip": "<strong>Name</strong>: heptachlor<br><strong>SMILES</strong>: ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.32</span>", "style-Solubility": "color: red"}, {"data-SMILES": "ClC(Cl)=C(Cl)C(Cl)=C(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 17.421,64.125 L 28.1484,57.9357' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 28.1484,57.9357 L 38.8758,51.7463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 38.8758,51.7463 L 38.8758,41.5095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 38.8758,41.5095 L 38.8758,31.2727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 37.2378,54.5856 L 68.9221,65.2964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 40.5138,48.9071 L 65.646,70.9749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.284,68.1357 L 67.284,78.7134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.284,78.7134 L 67.284,89.2911' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 67.284,68.1357 L 95.6923,51.7463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.6923,51.7463 L 95.6923,41.5095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.6923,41.5095 L 95.6923,31.2727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 94.0542,54.5856 L 125.739,65.2964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.3303,48.9071 L 122.462,70.9749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.101,68.1357 L 133.34,62.8049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 133.34,62.8049 L 142.579,57.4742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 124.101,68.1357 L 124.101,78.7134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 124.101,78.7134 L 124.101,89.2911' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 65.1725\\nQ 7.27273 62.8649, 8.34787 61.6586\\nQ 9.43612 60.4392, 11.4946 60.4392\\nQ 13.4089 60.4392, 14.4316 61.7897\\nL 13.5662 62.4977\\nQ 12.8189 61.5144, 11.4946 61.5144\\nQ 10.0917 61.5144, 9.34434 62.4584\\nQ 8.6101 63.3893, 8.6101 65.1725\\nQ 8.6101 67.0081, 9.37057 67.9521\\nQ 10.1441 68.8961, 11.6389 68.8961\\nQ 12.6616 68.8961, 13.8547 68.2799\\nL 14.2218 69.2633\\nQ 13.7367 69.5779, 13.0025 69.7615\\nQ 12.2682 69.9451, 11.4553 69.9451\\nQ 9.43612 69.9451, 8.34787 68.7126\\nQ 7.27273 67.4801, 7.27273 65.1725\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 15.5592 59.8754\\nL 16.7654 59.8754\\nL 16.7654 69.8271\\nL 15.5592 69.8271\\nL 15.5592 59.8754\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 35.2964 25.8446\\nQ 35.2964 23.5369, 36.3715 22.3307\\nQ 37.4598 21.1113, 39.5183 21.1113\\nQ 41.4325 21.1113, 42.4552 22.4618\\nL 41.5899 23.1698\\nQ 40.8425 22.1865, 39.5183 22.1865\\nQ 38.1153 22.1865, 37.368 23.1305\\nQ 36.6337 24.0614, 36.6337 25.8446\\nQ 36.6337 27.6802, 37.3942 28.6242\\nQ 38.1678 29.5682, 39.6625 29.5682\\nQ 40.6852 29.5682, 41.8783 28.952\\nL 42.2455 29.9353\\nQ 41.7603 30.25, 41.0261 30.4336\\nQ 40.2918 30.6171, 39.4789 30.6171\\nQ 37.4598 30.6171, 36.3715 29.3847\\nQ 35.2964 28.1522, 35.2964 25.8446\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 43.5828 20.5475\\nL 44.7891 20.5475\\nL 44.7891 30.4991\\nL 43.5828 30.4991\\nL 43.5828 20.5475\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 63.7046 94.6799\\nQ 63.7046 92.3723, 64.7797 91.166\\nQ 65.868 89.9467, 67.9265 89.9467\\nQ 69.8408 89.9467, 70.8635 91.2971\\nL 69.9981 92.0052\\nQ 69.2508 91.0218, 67.9265 91.0218\\nQ 66.5236 91.0218, 65.7762 91.9658\\nQ 65.042 92.8967, 65.042 94.6799\\nQ 65.042 96.5155, 65.8024 97.4595\\nQ 66.576 98.4036, 68.0707 98.4036\\nQ 69.0934 98.4036, 70.2866 97.7873\\nL 70.6537 98.7707\\nQ 70.1686 99.0854, 69.4343 99.2689\\nQ 68.7001 99.4525, 67.8872 99.4525\\nQ 65.868 99.4525, 64.7797 98.22\\nQ 63.7046 96.9875, 63.7046 94.6799\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 71.9911 89.3829\\nL 73.1973 89.3829\\nL 73.1973 99.3345\\nL 71.9911 99.3345\\nL 71.9911 89.3829\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 92.1128 25.8446\\nQ 92.1128 23.5369, 93.188 22.3307\\nQ 94.2762 21.1113, 96.3347 21.1113\\nQ 98.249 21.1113, 99.2717 22.4618\\nL 98.4064 23.1698\\nQ 97.659 22.1865, 96.3347 22.1865\\nQ 94.9318 22.1865, 94.1845 23.1305\\nQ 93.4502 24.0614, 93.4502 25.8446\\nQ 93.4502 27.6802, 94.2107 28.6242\\nQ 94.9843 29.5682, 96.479 29.5682\\nQ 97.5017 29.5682, 98.6948 28.952\\nL 99.0619 29.9353\\nQ 98.5768 30.25, 97.8426 30.4336\\nQ 97.1083 30.6171, 96.2954 30.6171\\nQ 94.2762 30.6171, 93.188 29.3847\\nQ 92.1128 28.1522, 92.1128 25.8446\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 100.399 20.5475\\nL 101.606 20.5475\\nL 101.606 30.4991\\nL 100.399 30.4991\\nL 100.399 20.5475\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 143.235 55.352\\nQ 143.235 53.0444, 144.31 51.8381\\nQ 145.398 50.6187, 147.456 50.6187\\nQ 149.371 50.6187, 150.393 51.9692\\nL 149.528 52.6772\\nQ 148.781 51.6939, 147.456 51.6939\\nQ 146.054 51.6939, 145.306 52.6379\\nQ 144.572 53.5688, 144.572 55.352\\nQ 144.572 57.1876, 145.332 58.1316\\nQ 146.106 59.0756, 147.601 59.0756\\nQ 148.623 59.0756, 149.817 58.4594\\nL 150.184 59.4428\\nQ 149.699 59.7574, 148.964 59.941\\nQ 148.23 60.1246, 147.417 60.1246\\nQ 145.398 60.1246, 144.31 58.8921\\nQ 143.235 57.6596, 143.235 55.352\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 151.521 50.0549\\nL 152.727 50.0549\\nL 152.727 60.0066\\nL 151.521 60.0066\\nL 151.521 50.0549\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 120.521 94.6799\\nQ 120.521 92.3723, 121.596 91.166\\nQ 122.684 89.9467, 124.743 89.9467\\nQ 126.657 89.9467, 127.68 91.2971\\nL 126.815 92.0052\\nQ 126.067 91.0218, 124.743 91.0218\\nQ 123.34 91.0218, 122.593 91.9658\\nQ 121.858 92.8967, 121.858 94.6799\\nQ 121.858 96.5155, 122.619 97.4595\\nQ 123.392 98.4036, 124.887 98.4036\\nQ 125.91 98.4036, 127.103 97.7873\\nL 127.47 98.7707\\nQ 126.985 99.0854, 126.251 99.2689\\nQ 125.517 99.4525, 124.704 99.4525\\nQ 122.684 99.4525, 121.596 98.22\\nQ 120.521 96.9875, 120.521 94.6799\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 128.808 89.3829\\nL 130.014 89.3829\\nL 130.014 99.3345\\nL 128.808 99.3345\\nL 128.808 89.3829\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -4.91, "data-ID": 186, "mols2grid-id": 36, "mols2grid-tooltip": "<strong>Name</strong>: hexachlorobutadiene<br><strong>SMILES</strong>: ClC(Cl)=C(Cl)C(Cl)=C(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.91</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1Br", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.116,61.0829 L 112.116,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.699,55.5201 L 104.699,29.5602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,79.6257 L 112.116,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.116,23.9973 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 47.8839,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.8912,14.6593 L 56.41,27.6393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.8839,23.9973 L 47.8839,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.8839,61.0829 L 80,79.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.41,57.441 L 78.8912,70.4209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,79.6257 L 80,91.4634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,91.4634 L 80,103.301' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 81.5353 109.027\\nQ 82.5441 109.309, 83.0484 109.932\\nQ 83.5676 110.54, 83.5676 111.445\\nQ 83.5676 112.899, 82.6331 113.73\\nQ 81.7134 114.545, 79.9629 114.545\\nL 76.4324 114.545\\nL 76.4324 104.043\\nL 79.5327 104.043\\nQ 81.3277 104.043, 82.2326 104.77\\nQ 83.1374 105.497, 83.1374 106.832\\nQ 83.1374 108.419, 81.5353 109.027\\nM 77.8416 105.23\\nL 77.8416 108.523\\nL 79.5327 108.523\\nQ 80.5711 108.523, 81.1051 108.107\\nQ 81.654 107.677, 81.654 106.832\\nQ 81.654 105.23, 79.5327 105.23\\nL 77.8416 105.23\\nM 79.9629 113.359\\nQ 80.9865 113.359, 81.5353 112.869\\nQ 82.0842 112.38, 82.0842 111.445\\nQ 82.0842 110.585, 81.476 110.155\\nQ 80.8826 109.709, 79.7404 109.709\\nL 77.8416 109.709\\nL 77.8416 113.359\\nL 79.9629 113.359\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 85.9559 106.921\\nL 86.1191 107.974\\nQ 86.9202 106.787, 88.2256 106.787\\nQ 88.6409 106.787, 89.2046 106.935\\nL 88.9821 108.182\\nQ 88.3443 108.033, 87.9882 108.033\\nQ 87.3652 108.033, 86.9498 108.285\\nQ 86.5493 108.523, 86.223 109.101\\nL 86.223 114.545\\nL 84.8285 114.545\\nL 84.8285 106.921\\nL 85.9559 106.921\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -2.55, "data-ID": 191, "mols2grid-id": 37, "mols2grid-tooltip": "<strong>Name</strong>: bromobenzene<br><strong>SMILES</strong>: c1ccccc1Br<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.55</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cccc(Cl)c1Br", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.993,61.0829 L 129.993,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.575,55.5201 L 122.575,29.5602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.8765,79.6257 L 129.993,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.993,23.9973 L 97.8765,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.8765,5.45455 L 65.7604,23.9973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7677,14.6593 L 74.2864,27.6393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.7604,23.9973 L 65.7604,61.0829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.7604,61.0829 L 53.6248,68.0889' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.6248,68.0889 L 41.4891,75.095' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 65.7604,61.0829 L 97.8765,79.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 74.2864,57.441 L 96.7677,70.4209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8765,79.6257 L 97.8765,91.4634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8765,91.4634 L 97.8765,103.301' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 30.0074 76.2806\\nQ 30.0074 73.6697, 31.2238 72.305\\nQ 32.4551 70.9254, 34.784 70.9254\\nQ 36.9498 70.9254, 38.1069 72.4533\\nL 37.1278 73.2544\\nQ 36.2823 72.1418, 34.784 72.1418\\nQ 33.1968 72.1418, 32.3512 73.2099\\nQ 31.5205 74.2631, 31.5205 76.2806\\nQ 31.5205 78.3574, 32.3809 79.4254\\nQ 33.2561 80.4935, 34.9472 80.4935\\nQ 36.1043 80.4935, 37.4542 79.7963\\nL 37.8696 80.9088\\nQ 37.3207 81.2649, 36.49 81.4725\\nQ 35.6593 81.6802, 34.7395 81.6802\\nQ 32.4551 81.6802, 31.2238 80.2858\\nQ 30.0074 78.8914, 30.0074 76.2806\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 39.3826 70.2875\\nL 40.7474 70.2875\\nL 40.7474 81.5467\\nL 39.3826 81.5467\\nL 39.3826 70.2875\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 99.4118 109.027\\nQ 100.421 109.309, 100.925 109.932\\nQ 101.444 110.54, 101.444 111.445\\nQ 101.444 112.899, 100.51 113.73\\nQ 99.5898 114.545, 97.8394 114.545\\nL 94.3088 114.545\\nL 94.3088 104.043\\nL 97.4092 104.043\\nQ 99.2041 104.043, 100.109 104.77\\nQ 101.014 105.497, 101.014 106.832\\nQ 101.014 108.419, 99.4118 109.027\\nM 95.7181 105.23\\nL 95.7181 108.523\\nL 97.4092 108.523\\nQ 98.4476 108.523, 98.9816 108.107\\nQ 99.5305 107.677, 99.5305 106.832\\nQ 99.5305 105.23, 97.4092 105.23\\nL 95.7181 105.23\\nM 97.8394 113.359\\nQ 98.863 113.359, 99.4118 112.869\\nQ 99.9607 112.38, 99.9607 111.445\\nQ 99.9607 110.585, 99.3525 110.155\\nQ 98.7591 109.709, 97.6169 109.709\\nL 95.7181 109.709\\nL 95.7181 113.359\\nL 97.8394 113.359\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 103.832 106.921\\nL 103.996 107.974\\nQ 104.797 106.787, 106.102 106.787\\nQ 106.517 106.787, 107.081 106.935\\nL 106.859 108.182\\nQ 106.221 108.033, 105.865 108.033\\nQ 105.242 108.033, 104.826 108.285\\nQ 104.426 108.523, 104.099 109.101\\nL 104.099 114.545\\nL 102.705 114.545\\nL 102.705 106.921\\nL 103.832 106.921\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -3.19, "data-ID": 196, "mols2grid-id": 38, "mols2grid-tooltip": "<strong>Name</strong>: 1-bromo-2-chlorobenzene<br><strong>SMILES</strong>: c1cccc(Cl)c1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.19</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc(Br)cc1Br", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.555,61.8284 L 129.555,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.241,56.3432 L 122.241,30.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.8868,80.1126 L 129.555,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.555,25.26 L 97.8868,6.97579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.8868,6.97579 L 66.2186,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7935,16.0522 L 74.6257,28.8512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.2186,25.26 L 54.9945,18.7802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 54.9945,18.7802 L 43.7705,12.3005' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 66.2186,25.26 L 66.2186,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.2186,61.8284 L 97.8868,80.1126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.6257,58.2373 L 96.7935,71.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8868,80.1126 L 97.8868,91.7853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.8868,91.7853 L 97.8868,103.458' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 35.4767 10.3693\\nQ 36.4714 10.6473, 36.9687 11.2616\\nQ 37.4807 11.8613, 37.4807 12.7536\\nQ 37.4807 14.1871, 36.5592 15.0062\\nQ 35.6523 15.8107, 33.9262 15.8107\\nL 30.4449 15.8107\\nL 30.4449 5.45455\\nL 33.502 5.45455\\nQ 35.2719 5.45455, 36.1642 6.17129\\nQ 37.0565 6.88803, 37.0565 8.20449\\nQ 37.0565 9.76962, 35.4767 10.3693\\nM 31.8345 6.62473\\nL 31.8345 9.87201\\nL 33.502 9.87201\\nQ 34.526 9.87201, 35.0525 9.46244\\nQ 35.5937 9.03825, 35.5937 8.20449\\nQ 35.5937 6.62473, 33.502 6.62473\\nL 31.8345 6.62473\\nM 33.9262 14.6405\\nQ 34.9355 14.6405, 35.4767 14.1578\\nQ 36.0179 13.6751, 36.0179 12.7536\\nQ 36.0179 11.9052, 35.4182 11.481\\nQ 34.8331 11.0422, 33.7068 11.0422\\nL 31.8345 11.0422\\nL 31.8345 14.6405\\nL 33.9262 14.6405\\n' fill='#7F4C19'/>\\n<path class='atom-4' d='M 39.8357 8.29225\\nL 39.9966 9.3308\\nQ 40.7865 8.16061, 42.0737 8.16061\\nQ 42.4832 8.16061, 43.0391 8.30688\\nL 42.8197 9.53558\\nQ 42.1907 9.38931, 41.8396 9.38931\\nQ 41.2253 9.38931, 40.8157 9.63797\\nQ 40.4208 9.87201, 40.099 10.4425\\nL 40.099 15.8107\\nL 38.724 15.8107\\nL 38.724 8.29225\\nL 39.8357 8.29225\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 99.4008 109.104\\nQ 100.395 109.382, 100.893 109.996\\nQ 101.405 110.596, 101.405 111.488\\nQ 101.405 112.922, 100.483 113.741\\nQ 99.5763 114.545, 97.8503 114.545\\nL 94.369 114.545\\nL 94.369 104.189\\nL 97.4261 104.189\\nQ 99.196 104.189, 100.088 104.906\\nQ 100.981 105.623, 100.981 106.939\\nQ 100.981 108.504, 99.4008 109.104\\nM 95.7586 105.359\\nL 95.7586 108.607\\nL 97.4261 108.607\\nQ 98.45 108.607, 98.9766 108.197\\nQ 99.5178 107.773, 99.5178 106.939\\nQ 99.5178 105.359, 97.4261 105.359\\nL 95.7586 105.359\\nM 97.8503 113.375\\nQ 98.8596 113.375, 99.4008 112.893\\nQ 99.942 112.41, 99.942 111.488\\nQ 99.942 110.64, 99.3423 110.216\\nQ 98.7572 109.777, 97.6309 109.777\\nL 95.7586 109.777\\nL 95.7586 113.375\\nL 97.8503 113.375\\n' fill='#7F4C19'/>\\n<path class='atom-7' d='M 103.76 107.027\\nL 103.921 108.066\\nQ 104.711 106.895, 105.998 106.895\\nQ 106.407 106.895, 106.963 107.042\\nL 106.744 108.27\\nQ 106.115 108.124, 105.764 108.124\\nQ 105.149 108.124, 104.74 108.373\\nQ 104.345 108.607, 104.023 109.177\\nL 104.023 114.545\\nL 102.648 114.545\\nL 102.648 107.027\\nL 103.76 107.027\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -3.54, "data-ID": 201, "mols2grid-id": 39, "mols2grid-tooltip": "<strong>Name</strong>: 1,3-dibromobenzene<br><strong>SMILES</strong>: c1ccc(Br)cc1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.54</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(Br)cc(Br)c1Br", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.07,74.0465 L 118.07,45.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.451,69.8326 L 112.451,50.1674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 93.7412,88.093 L 118.07,74.0465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.07,45.9535 L 93.7412,31.907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.7412,31.907 L 93.7412,22.9397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.7412,22.9397 L 93.7412,13.9724' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 93.7412,31.907 L 69.4127,45.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 92.9013,38.8798 L 75.8713,48.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4127,45.9535 L 69.4127,74.0465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.4127,74.0465 L 60.79,79.0245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.79,79.0245 L 52.1673,84.0025' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.4127,74.0465 L 93.7412,88.093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 75.8713,71.2877 L 92.9013,81.1202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.7412,88.093 L 93.7412,97.0603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 93.7412,97.0603 L 93.7412,106.028' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 94.9043 9.23025\\nQ 95.6684 9.44376, 96.0505 9.91572\\nQ 96.4438 10.3764, 96.4438 11.0619\\nQ 96.4438 12.1632, 95.7359 12.7924\\nQ 95.0391 13.4105, 93.7132 13.4105\\nL 91.0387 13.4105\\nL 91.0387 5.45455\\nL 93.3873 5.45455\\nQ 94.747 5.45455, 95.4324 6.00517\\nQ 96.1179 6.55579, 96.1179 7.56714\\nQ 96.1179 8.76952, 94.9043 9.23025\\nM 92.1062 6.35352\\nL 92.1062 8.84819\\nL 93.3873 8.84819\\nQ 94.1739 8.84819, 94.5784 8.53354\\nQ 94.9942 8.20766, 94.9942 7.56714\\nQ 94.9942 6.35352, 93.3873 6.35352\\nL 92.1062 6.35352\\nM 93.7132 12.5115\\nQ 94.4885 12.5115, 94.9043 12.1407\\nQ 95.3201 11.7699, 95.3201 11.0619\\nQ 95.3201 10.4102, 94.8593 10.0843\\nQ 94.4099 9.74716, 93.5446 9.74716\\nL 92.1062 9.74716\\nL 92.1062 12.5115\\nL 93.7132 12.5115\\n' fill='#7F4C19'/>\\n<path class='atom-3' d='M 98.253 7.63457\\nL 98.3766 8.43241\\nQ 98.9834 7.53343, 99.9723 7.53343\\nQ 100.287 7.53343, 100.714 7.6458\\nL 100.545 8.58973\\nQ 100.062 8.47736, 99.7925 8.47736\\nQ 99.3205 8.47736, 99.0059 8.66839\\nQ 98.7025 8.84819, 98.4553 9.28644\\nL 98.4553 13.4105\\nL 97.399 13.4105\\nL 97.399 7.63457\\nL 98.253 7.63457\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 45.7958 85.0815\\nQ 46.5599 85.295, 46.942 85.7669\\nQ 47.3353 86.2277, 47.3353 86.9131\\nQ 47.3353 88.0144, 46.6273 88.6437\\nQ 45.9306 89.2617, 44.6046 89.2617\\nL 41.9302 89.2617\\nL 41.9302 81.3058\\nL 44.2788 81.3058\\nQ 45.6385 81.3058, 46.3239 81.8564\\nQ 47.0094 82.407, 47.0094 83.4184\\nQ 47.0094 84.6207, 45.7958 85.0815\\nM 42.9977 82.2047\\nL 42.9977 84.6994\\nL 44.2788 84.6994\\nQ 45.0654 84.6994, 45.4699 84.3848\\nQ 45.8857 84.0589, 45.8857 83.4184\\nQ 45.8857 82.2047, 44.2788 82.2047\\nL 42.9977 82.2047\\nM 44.6046 88.3627\\nQ 45.38 88.3627, 45.7958 87.9919\\nQ 46.2116 87.6211, 46.2116 86.9131\\nQ 46.2116 86.2614, 45.7508 85.9355\\nQ 45.3013 85.5984, 44.4361 85.5984\\nL 42.9977 85.5984\\nL 42.9977 88.3627\\nL 44.6046 88.3627\\n' fill='#7F4C19'/>\\n<path class='atom-6' d='M 49.1445 83.4858\\nL 49.2681 84.2836\\nQ 49.8749 83.3846, 50.8638 83.3846\\nQ 51.1784 83.3846, 51.6054 83.497\\nL 51.4369 84.4409\\nQ 50.9537 84.3286, 50.684 84.3286\\nQ 50.212 84.3286, 49.8974 84.5196\\nQ 49.594 84.6994, 49.3467 85.1377\\nL 49.3467 89.2617\\nL 48.2904 89.2617\\nL 48.2904 83.4858\\nL 49.1445 83.4858\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 94.9043 110.365\\nQ 95.6684 110.579, 96.0505 111.051\\nQ 96.4438 111.511, 96.4438 112.197\\nQ 96.4438 113.298, 95.7359 113.927\\nQ 95.0391 114.545, 93.7132 114.545\\nL 91.0387 114.545\\nL 91.0387 106.59\\nL 93.3873 106.59\\nQ 94.747 106.59, 95.4324 107.14\\nQ 96.1179 107.691, 96.1179 108.702\\nQ 96.1179 109.904, 94.9043 110.365\\nM 92.1062 107.488\\nL 92.1062 109.983\\nL 93.3873 109.983\\nQ 94.1739 109.983, 94.5784 109.669\\nQ 94.9942 109.343, 94.9942 108.702\\nQ 94.9942 107.488, 93.3873 107.488\\nL 92.1062 107.488\\nM 93.7132 113.646\\nQ 94.4885 113.646, 94.9043 113.276\\nQ 95.3201 112.905, 95.3201 112.197\\nQ 95.3201 111.545, 94.8593 111.219\\nQ 94.4099 110.882, 93.5446 110.882\\nL 92.1062 110.882\\nL 92.1062 113.646\\nL 93.7132 113.646\\n' fill='#7F4C19'/>\\n<path class='atom-8' d='M 98.253 108.77\\nL 98.3766 109.567\\nQ 98.9834 108.668, 99.9723 108.668\\nQ 100.287 108.668, 100.714 108.781\\nL 100.545 109.725\\nQ 100.062 109.612, 99.7925 109.612\\nQ 99.3205 109.612, 99.0059 109.803\\nQ 98.7025 109.983, 98.4553 110.421\\nL 98.4553 114.545\\nL 97.399 114.545\\nL 97.399 108.77\\nL 98.253 108.77\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -4.5, "data-ID": 206, "mols2grid-id": 40, "mols2grid-tooltip": "<strong>Name</strong>: 1,2,4-tribromobenzene<br><strong>SMILES</strong>: c1cc(Br)cc(Br)c1Br<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.5</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(Cl)c(Cl)c(Cl)c(Cl)c1Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105.447,73.91 L 105.447,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.8626,69.7219 L 99.8626,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-0' d='M 81.2676,87.8702 L 105.447,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.447,45.9895 L 113.316,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.316,41.4467 L 121.185,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.447,45.9895 L 81.2676,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2676,32.0293 L 81.2676,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2676,23.3097 L 81.2676,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 81.2676,32.0293 L 57.0885,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80.4328,38.9592 L 63.5074,48.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 57.0885,45.9895 L 47.952,40.7149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.952,40.7149 L 38.8155,35.4403' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 57.0885,45.9895 L 57.0885,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.0885,73.91 L 47.952,79.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 47.952,79.1846 L 38.8155,84.4592' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 57.0885,73.91 L 81.2676,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 63.5074,71.1681 L 80.4328,80.9403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.2676,87.8702 L 81.2676,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.2676,96.8802 L 81.2676,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 121.743 35.0949\\nQ 121.743 33.1293, 122.659 32.1019\\nQ 123.586 31.0632, 125.339 31.0632\\nQ 126.97 31.0632, 127.841 32.2135\\nL 127.104 32.8166\\nQ 126.467 31.979, 125.339 31.979\\nQ 124.144 31.979, 123.508 32.7831\\nQ 122.882 33.5761, 122.882 35.0949\\nQ 122.882 36.6585, 123.53 37.4626\\nQ 124.189 38.2667, 125.462 38.2667\\nQ 126.333 38.2667, 127.349 37.7418\\nL 127.662 38.5794\\nQ 127.249 38.8474, 126.623 39.0038\\nQ 125.998 39.1602, 125.306 39.1602\\nQ 123.586 39.1602, 122.659 38.1103\\nQ 121.743 37.0605, 121.743 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 128.801 30.583\\nL 129.829 30.583\\nL 129.829 39.0596\\nL 128.801 39.0596\\nL 128.801 30.583\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 78.2187 9.9665\\nQ 78.2187 8.00089, 79.1345 6.97342\\nQ 80.0614 5.93478, 81.8148 5.93478\\nQ 83.4454 5.93478, 84.3165 7.0851\\nL 83.5794 7.68818\\nQ 82.9428 6.85057, 81.8148 6.85057\\nQ 80.6198 6.85057, 79.9832 7.65468\\nQ 79.3578 8.44762, 79.3578 9.9665\\nQ 79.3578 11.53, 80.0056 12.3342\\nQ 80.6645 13.1383, 81.9377 13.1383\\nQ 82.8088 13.1383, 83.8251 12.6134\\nL 84.1378 13.451\\nQ 83.7246 13.719, 83.0992 13.8754\\nQ 82.4738 14.0317, 81.7813 14.0317\\nQ 80.0614 14.0317, 79.1345 12.9819\\nQ 78.2187 11.9321, 78.2187 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 85.277 5.45455\\nL 86.3044 5.45455\\nL 86.3044 13.9312\\nL 85.277 13.9312\\nL 85.277 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 30.1712 35.0949\\nQ 30.1712 33.1293, 31.087 32.1019\\nQ 32.014 31.0632, 33.7674 31.0632\\nQ 35.398 31.0632, 36.2691 32.2135\\nL 35.532 32.8166\\nQ 34.8954 31.979, 33.7674 31.979\\nQ 32.5724 31.979, 31.9358 32.7831\\nQ 31.3104 33.5761, 31.3104 35.0949\\nQ 31.3104 36.6585, 31.9582 37.4626\\nQ 32.6171 38.2667, 33.8903 38.2667\\nQ 34.7614 38.2667, 35.7777 37.7418\\nL 36.0904 38.5794\\nQ 35.6772 38.8474, 35.0517 39.0038\\nQ 34.4263 39.1602, 33.7339 39.1602\\nQ 32.014 39.1602, 31.087 38.1103\\nQ 30.1712 37.0605, 30.1712 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 37.2295 30.583\\nL 38.257 30.583\\nL 38.257 39.0596\\nL 37.2295 39.0596\\nL 37.2295 30.583\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 30.1712 85.3518\\nQ 30.1712 83.3862, 31.087 82.3587\\nQ 32.014 81.3201, 33.7674 81.3201\\nQ 35.398 81.3201, 36.2691 82.4704\\nL 35.532 83.0735\\nQ 34.8954 82.2359, 33.7674 82.2359\\nQ 32.5724 82.2359, 31.9358 83.04\\nQ 31.3104 83.8329, 31.3104 85.3518\\nQ 31.3104 86.9153, 31.9582 87.7195\\nQ 32.6171 88.5236, 33.8903 88.5236\\nQ 34.7614 88.5236, 35.7777 87.9987\\nL 36.0904 88.8363\\nQ 35.6772 89.1043, 35.0517 89.2607\\nQ 34.4263 89.417, 33.7339 89.417\\nQ 32.014 89.417, 31.087 88.3672\\nQ 30.1712 87.3174, 30.1712 85.3518\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 37.2295 80.8398\\nL 38.257 80.8398\\nL 38.257 89.3165\\nL 37.2295 89.3165\\nL 37.2295 80.8398\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 78.2187 110.48\\nQ 78.2187 108.515, 79.1345 107.487\\nQ 80.0614 106.449, 81.8148 106.449\\nQ 83.4454 106.449, 84.3165 107.599\\nL 83.5794 108.202\\nQ 82.9428 107.364, 81.8148 107.364\\nQ 80.6198 107.364, 79.9832 108.168\\nQ 79.3578 108.961, 79.3578 110.48\\nQ 79.3578 112.044, 80.0056 112.848\\nQ 80.6645 113.652, 81.9377 113.652\\nQ 82.8088 113.652, 83.8251 113.127\\nL 84.1378 113.965\\nQ 83.7246 114.233, 83.0992 114.389\\nQ 82.4738 114.545, 81.7813 114.545\\nQ 80.0614 114.545, 79.1345 113.496\\nQ 78.2187 112.446, 78.2187 110.48\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 85.277 105.968\\nL 86.3044 105.968\\nL 86.3044 114.445\\nL 85.277 114.445\\nL 85.277 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -5.65, "data-ID": 211, "mols2grid-id": 41, "mols2grid-tooltip": "<strong>Name</strong>: pentachlorobenzene<br><strong>SMILES</strong>: c1c(Cl)c(Cl)c(Cl)c(Cl)c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.65</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc(F)cc1F", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.876,61.8284 L 125.876,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.563,56.3432 L 118.563,30.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 94.208,80.1126 L 125.876,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.876,25.26 L 94.208,6.97579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.208,6.97579 L 62.5398,25.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 93.1147,16.0522 L 70.947,28.8512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.5398,25.26 L 51.7765,19.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.7765,19.0462 L 41.0132,12.8325' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 62.5398,25.26 L 62.5398,61.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.5398,61.8284 L 94.208,80.1126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.947,58.2373 L 93.1147,71.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 94.208,80.1126 L 94.208,91.7853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 94.208,91.7853 L 94.208,103.458' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 34.1237 5.45455\\nL 40.2818 5.45455\\nL 40.2818 6.63936\\nL 35.5133 6.63936\\nL 35.5133 9.78425\\nL 39.7552 9.78425\\nL 39.7552 10.9837\\nL 35.5133 10.9837\\nL 35.5133 15.8107\\nL 34.1237 15.8107\\nL 34.1237 5.45455\\n' fill='#33CCCC'/>\\n<path class='atom-7' d='M 91.129 104.189\\nL 97.2871 104.189\\nL 97.2871 105.374\\nL 92.5186 105.374\\nL 92.5186 108.519\\nL 96.7605 108.519\\nL 96.7605 109.718\\nL 92.5186 109.718\\nL 92.5186 114.545\\nL 91.129 114.545\\nL 91.129 104.189\\n' fill='#33CCCC'/>\\n</svg>\\n", "data-Solubility": -2.0, "data-ID": 216, "mols2grid-id": 42, "mols2grid-tooltip": "<strong>Name</strong>: m-difluorobenzene<br><strong>SMILES</strong>: c1ccc(F)cc1F<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.0</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1c2ccc(Cl)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 95.8398,32.9288 L 95.8398,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1766,30.1813 L 92.1766,17.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 79.978,42.0868 L 95.8398,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8398,14.6126 L 79.978,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.978,5.45455 L 64.1162,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.4304,10.0007 L 68.3272,16.4113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1162,14.6126 L 64.1162,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.1162,32.9288 L 79.978,42.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.3272,31.13 L 79.4304,37.5407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.978,42.0868 L 79.978,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.978,60.4127 L 64.1309,69.5964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.4377,64.9597 L 68.3447,71.3883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-6' d='M 95.8544,69.5464 L 79.978,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 64.1309,69.5964 L 64.159,87.9126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 64.159,87.9126 L 80.0366,97.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 68.3672,86.1073 L 79.4816,92.5008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.0366,97.0462 L 80.046,102.957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.046,102.957 L 80.0553,108.867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 80.0366,97.0462 L 95.8838,87.8625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 95.8838,87.8625 L 95.8544,69.5464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 92.2161,85.1209 L 92.1956,72.2997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 78.0597 111.879\\nQ 78.0597 110.589, 78.6605 109.915\\nQ 79.2686 109.234, 80.4188 109.234\\nQ 81.4885 109.234, 82.06 109.988\\nL 81.5764 110.384\\nQ 81.1588 109.835, 80.4188 109.835\\nQ 79.6349 109.835, 79.2173 110.362\\nQ 78.807 110.882, 78.807 111.879\\nQ 78.807 112.904, 79.2319 113.432\\nQ 79.6642 113.959, 80.4994 113.959\\nQ 81.0709 113.959, 81.7376 113.615\\nL 81.9427 114.164\\nQ 81.6717 114.34, 81.2614 114.443\\nQ 80.8511 114.545, 80.3968 114.545\\nQ 79.2686 114.545, 78.6605 113.857\\nQ 78.0597 113.168, 78.0597 111.879\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 82.69 108.919\\nL 83.3641 108.919\\nL 83.3641 114.48\\nL 82.69 114.48\\nL 82.69 108.919\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -5.2, "data-ID": 221, "mols2grid-id": 43, "mols2grid-tooltip": "<strong>Name</strong>: 4-chlorobiphenyl<br><strong>SMILES</strong>: c1ccccc1c2ccc(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.2</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(Cl)ccc1c2c(Cl)cccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.682,50.3892 L 104.682,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.016,47.6401 L 101.016,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 88.8105,59.5528 L 104.682,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.682,32.062 L 88.8105,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8105,22.8984 L 88.8105,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8105,17.1748 L 88.8105,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.8105,22.8984 L 72.9391,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.2626,27.4473 L 77.1526,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.9391,32.062 L 72.9391,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 72.9391,50.3892 L 88.8105,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.1526,48.5894 L 88.2626,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 88.8105,59.5528 L 88.8105,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.8105,77.8898 L 72.9538,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.2699,82.4396 L 77.1702,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-7' d='M 104.697,87.029 L 88.8105,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.9538,87.0791 L 66.951,83.6264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 66.951,83.6264 L 60.9482,80.1737' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 72.9538,87.0791 L 72.9819,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 72.9819,105.406 L 88.8691,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 77.1927,103.6 L 88.3138,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 88.8691,114.545 L 104.726,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 104.726,105.356 L 104.697,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 101.056,102.613 L 101.035,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 86.8092 8.41622\\nQ 86.8092 7.12599, 87.4103 6.45155\\nQ 88.0188 5.76977, 89.1697 5.76977\\nQ 90.24 5.76977, 90.8118 6.52485\\nL 90.328 6.92072\\nQ 89.9101 6.37091, 89.1697 6.37091\\nQ 88.3853 6.37091, 87.9675 6.89873\\nQ 87.5569 7.41922, 87.5569 8.41622\\nQ 87.5569 9.44255, 87.9821 9.97037\\nQ 88.4146 10.4982, 89.2504 10.4982\\nQ 89.8222 10.4982, 90.4893 10.1536\\nL 90.6945 10.7035\\nQ 90.4233 10.8794, 90.0128 10.982\\nQ 89.6022 11.0847, 89.1477 11.0847\\nQ 88.0188 11.0847, 87.4103 10.3956\\nQ 86.8092 9.70646, 86.8092 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 91.4423 5.45455\\nL 92.1167 5.45455\\nL 92.1167 11.0187\\nL 91.4423 11.0187\\nL 91.4423 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 55.2741 79.9486\\nQ 55.2741 78.6583, 55.8753 77.9839\\nQ 56.4837 77.3021, 57.6347 77.3021\\nQ 58.705 77.3021, 59.2768 78.0572\\nL 58.793 78.4531\\nQ 58.3751 77.9032, 57.6347 77.9032\\nQ 56.8503 77.9032, 56.4324 78.4311\\nQ 56.0219 78.9516, 56.0219 79.9486\\nQ 56.0219 80.9749, 56.4471 81.5027\\nQ 56.8796 82.0305, 57.7153 82.0305\\nQ 58.2871 82.0305, 58.9542 81.686\\nL 59.1595 82.2358\\nQ 58.8883 82.4117, 58.4777 82.5144\\nQ 58.0672 82.617, 57.6127 82.617\\nQ 56.4837 82.617, 55.8753 81.9279\\nQ 55.2741 81.2388, 55.2741 79.9486\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 59.9073 76.9869\\nL 60.5817 76.9869\\nL 60.5817 82.551\\nL 59.9073 82.551\\nL 59.9073 76.9869\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -5.28, "data-ID": 226, "mols2grid-id": 44, "mols2grid-tooltip": "<strong>Name</strong>: 2,4\\uffb4-PCB<br><strong>SMILES</strong>: c1cc(Cl)ccc1c2c(Cl)cccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.28</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cccc(Cl)c1c2c(Cl)ccc(Cl)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.6423,37.8356 L 99.6423,16.2482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.3249,34.5975 L 95.3249,19.4863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 80.9477,48.6292 L 99.6423,37.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6423,16.2482 L 80.9477,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.9477,5.45455 L 62.253,16.2482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.3023,10.8126 L 67.216,18.3682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.253,16.2482 L 62.253,37.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.253,37.8356 L 55.189,41.9137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.189,41.9137 L 48.1249,45.9919' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 62.253,37.8356 L 80.9477,48.6292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 67.216,35.7156 L 80.3023,43.2712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.9477,48.6292 L 80.9477,70.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.9477,70.2281 L 62.2703,81.052' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.3109,75.5872 L 67.2367,83.1639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-7' d='M 99.6596,80.993 L 80.9477,70.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 62.2703,81.052 L 55.1997,76.9851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 55.1997,76.9851 L 48.1292,72.9183' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-10' d='M 62.2703,81.052 L 62.3034,102.639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 62.3034,102.639 L 81.0168,113.404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.2633,100.512 L 80.3626,108.047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 81.0168,113.404 L 99.6941,102.58' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 99.6941,102.58 L 105.785,106.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 105.785,106.083 L 111.875,109.587' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 99.6941,102.58 L 99.6596,80.993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 95.3715,99.3491 L 95.3473,84.238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 41.4414 46.682\\nQ 41.4414 45.1623, 42.1495 44.3679\\nQ 42.8662 43.5648, 44.2219 43.5648\\nQ 45.4826 43.5648, 46.1561 44.4542\\nL 45.5862 44.9205\\nQ 45.094 44.2729, 44.2219 44.2729\\nQ 43.2979 44.2729, 42.8057 44.8946\\nQ 42.3222 45.5077, 42.3222 46.682\\nQ 42.3222 47.8909, 42.823 48.5127\\nQ 43.3325 49.1344, 44.3168 49.1344\\nQ 44.9904 49.1344, 45.7761 48.7285\\nL 46.0179 49.3761\\nQ 45.6984 49.5834, 45.2149 49.7043\\nQ 44.7313 49.8252, 44.196 49.8252\\nQ 42.8662 49.8252, 42.1495 49.0135\\nQ 41.4414 48.2018, 41.4414 46.682\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 46.8987 43.1935\\nL 47.6931 43.1935\\nL 47.6931 49.7475\\nL 46.8987 49.7475\\nL 46.8987 43.1935\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 41.4457 72.6531\\nQ 41.4457 71.1333, 42.1538 70.3389\\nQ 42.8705 69.5358, 44.2262 69.5358\\nQ 45.4869 69.5358, 46.1604 70.4252\\nL 45.5905 70.8915\\nQ 45.0983 70.2439, 44.2262 70.2439\\nQ 43.3022 70.2439, 42.81 70.8656\\nQ 42.3265 71.4787, 42.3265 72.6531\\nQ 42.3265 73.862, 42.8273 74.4837\\nQ 43.3368 75.1054, 44.3212 75.1054\\nQ 44.9947 75.1054, 45.7805 74.6995\\nL 46.0222 75.3472\\nQ 45.7028 75.5544, 45.2192 75.6753\\nQ 44.7356 75.7962, 44.2003 75.7962\\nQ 42.8705 75.7962, 42.1538 74.9845\\nQ 41.4457 74.1728, 41.4457 72.6531\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 46.903 69.1645\\nL 47.6974 69.1645\\nL 47.6974 75.7185\\nL 46.903 75.7185\\nL 46.903 69.1645\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 112.307 111.402\\nQ 112.307 109.883, 113.015 109.088\\nQ 113.732 108.285, 115.087 108.285\\nQ 116.348 108.285, 117.022 109.175\\nL 116.452 109.641\\nQ 115.959 108.993, 115.087 108.993\\nQ 114.163 108.993, 113.671 109.615\\nQ 113.188 110.228, 113.188 111.402\\nQ 113.188 112.611, 113.688 113.233\\nQ 114.198 113.855, 115.182 113.855\\nQ 115.856 113.855, 116.642 113.449\\nL 116.883 114.096\\nQ 116.564 114.304, 116.08 114.425\\nQ 115.597 114.545, 115.061 114.545\\nQ 113.732 114.545, 113.015 113.734\\nQ 112.307 112.922, 112.307 111.402\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 117.764 107.914\\nL 118.559 107.914\\nL 118.559 114.468\\nL 117.764 114.468\\nL 117.764 107.914\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.02, "data-ID": 231, "mols2grid-id": 45, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,5-PCB<br><strong>SMILES</strong>: c1cccc(Cl)c1c2c(Cl)ccc(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.02</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(Cl)c(Cl)cc1c2c(Cl)cccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.684,50.3892 L 104.684,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.018,47.6401 L 101.018,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 88.8123,59.5528 L 104.684,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.684,32.062 L 88.8123,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8123,22.8984 L 88.8123,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.8123,17.1748 L 88.8123,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.8123,22.8984 L 72.941,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 88.2644,27.4473 L 77.1544,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.941,32.062 L 66.9437,28.5997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.9437,28.5997 L 60.9464,25.1374' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 72.941,32.062 L 72.941,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 72.941,50.3892 L 88.8123,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.1544,48.5894 L 88.2644,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.8123,59.5528 L 88.8123,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 88.8123,77.8898 L 72.9556,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 88.2717,82.4396 L 77.172,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 104.698,87.029 L 88.8123,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.9556,87.0791 L 66.9529,83.6264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.9529,83.6264 L 60.9501,80.1737' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 72.9556,87.0791 L 72.9837,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 72.9837,105.406 L 88.871,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 77.1945,103.6 L 88.3156,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 88.871,114.545 L 104.728,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 104.728,105.356 L 104.698,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.058,102.613 L 101.037,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 86.811 8.41622\\nQ 86.811 7.12599, 87.4121 6.45155\\nQ 88.0206 5.76977, 89.1715 5.76977\\nQ 90.2419 5.76977, 90.8137 6.52485\\nL 90.3298 6.92072\\nQ 89.912 6.37091, 89.1715 6.37091\\nQ 88.3871 6.37091, 87.9693 6.89873\\nQ 87.5588 7.41922, 87.5588 8.41622\\nQ 87.5588 9.44255, 87.9839 9.97037\\nQ 88.4165 10.4982, 89.2522 10.4982\\nQ 89.824 10.4982, 90.4911 10.1536\\nL 90.6964 10.7035\\nQ 90.4251 10.8794, 90.0146 10.982\\nQ 89.6041 11.0847, 89.1496 11.0847\\nQ 88.0206 11.0847, 87.4121 10.3956\\nQ 86.811 9.70646, 86.811 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 91.4441 5.45455\\nL 92.1186 5.45455\\nL 92.1186 11.0187\\nL 91.4441 11.0187\\nL 91.4441 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 55.2723 24.9107\\nQ 55.2723 23.6205, 55.8734 22.946\\nQ 56.4819 22.2643, 57.6329 22.2643\\nQ 58.7032 22.2643, 59.275 23.0193\\nL 58.7911 23.4152\\nQ 58.3733 22.8654, 57.6329 22.8654\\nQ 56.8485 22.8654, 56.4306 23.3932\\nQ 56.0201 23.9137, 56.0201 24.9107\\nQ 56.0201 25.937, 56.4453 26.4649\\nQ 56.8778 26.9927, 57.7135 26.9927\\nQ 58.2853 26.9927, 58.9524 26.6481\\nL 59.1577 27.198\\nQ 58.8864 27.3739, 58.4759 27.4765\\nQ 58.0654 27.5792, 57.6109 27.5792\\nQ 56.4819 27.5792, 55.8734 26.8901\\nQ 55.2723 26.201, 55.2723 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 59.9054 21.949\\nL 60.5799 21.949\\nL 60.5799 27.5132\\nL 59.9054 27.5132\\nL 59.9054 21.949\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 55.276 79.9486\\nQ 55.276 78.6583, 55.8771 77.9839\\nQ 56.4856 77.3021, 57.6365 77.3021\\nQ 58.7068 77.3021, 59.2786 78.0572\\nL 58.7948 78.4531\\nQ 58.3769 77.9032, 57.6365 77.9032\\nQ 56.8521 77.9032, 56.4343 78.4311\\nQ 56.0237 78.9516, 56.0237 79.9486\\nQ 56.0237 80.9749, 56.4489 81.5027\\nQ 56.8814 82.0305, 57.7172 82.0305\\nQ 58.289 82.0305, 58.9561 81.686\\nL 59.1613 82.2358\\nQ 58.8901 82.4117, 58.4796 82.5144\\nQ 58.069 82.617, 57.6145 82.617\\nQ 56.4856 82.617, 55.8771 81.9279\\nQ 55.276 81.2388, 55.276 79.9486\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 59.9091 76.9869\\nL 60.5835 76.9869\\nL 60.5835 82.551\\nL 59.9091 82.551\\nL 59.9091 76.9869\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.29, "data-ID": 236, "mols2grid-id": 46, "mols2grid-tooltip": "<strong>Name</strong>: 2\\uffb4,3,4-PCB<br><strong>SMILES</strong>: c1cc(Cl)c(Cl)cc1c2c(Cl)cccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.29</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccccc1c2c(Cl)c(Cl)c(Cl)c(Cl)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.664,32.9288 L 96.664,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.0008,30.1813 L 93.0008,17.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80.8022,42.0868 L 96.664,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.664,14.6126 L 80.8022,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.8022,5.45455 L 64.9405,14.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.2546,10.0007 L 69.1514,16.4113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.9405,14.6126 L 64.9405,32.9288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.9405,32.9288 L 80.8022,42.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.1514,31.13 L 80.2546,37.5407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.8022,42.0868 L 80.8022,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.8022,60.4127 L 64.9551,69.5964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 80.2619,64.9597 L 69.169,71.3883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-6' d='M 96.6787,69.5464 L 80.8022,60.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 64.9551,69.5964 L 58.956,66.1459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 58.956,66.1459 L 52.9568,62.6953' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 64.9551,69.5964 L 64.9832,87.9126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 64.9832,87.9126 L 58.9963,91.3824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 58.9963,91.3824 L 53.0093,94.8522' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 64.9832,87.9126 L 80.8609,97.0462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 69.1915,86.1073 L 80.3058,92.5008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8609,97.0462 L 80.8702,102.957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8702,102.957 L 80.8796,108.867' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 80.8609,97.0462 L 96.708,87.8625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 96.708,87.8625 L 101.876,90.8348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.876,90.8348 L 107.043,93.8071' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 96.708,87.8625 L 96.6787,69.5464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 93.0404,85.1209 L 93.0198,72.2997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 47.2862 62.4702\\nQ 47.2862 61.1808, 47.8869 60.5067\\nQ 48.495 59.8254, 49.6453 59.8254\\nQ 50.7149 59.8254, 51.2864 60.58\\nL 50.8029 60.9756\\nQ 50.3852 60.4262, 49.6453 60.4262\\nQ 48.8613 60.4262, 48.4437 60.9537\\nQ 48.0335 61.4738, 48.0335 62.4702\\nQ 48.0335 63.4959, 48.4584 64.0234\\nQ 48.8907 64.5509, 49.7259 64.5509\\nQ 50.2973 64.5509, 50.964 64.2066\\nL 51.1692 64.7561\\nQ 50.8981 64.9319, 50.4878 65.0345\\nQ 50.0775 65.1371, 49.6233 65.1371\\nQ 48.495 65.1371, 47.8869 64.4484\\nQ 47.2862 63.7597, 47.2862 62.4702\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 51.9165 59.5103\\nL 52.5905 59.5103\\nL 52.5905 65.0711\\nL 51.9165 65.0711\\nL 51.9165 59.5103\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.3387 95.4393\\nQ 47.3387 94.1498, 47.9394 93.4758\\nQ 48.5475 92.7944, 49.6978 92.7944\\nQ 50.7674 92.7944, 51.3389 93.5491\\nL 50.8554 93.9447\\nQ 50.4378 93.3952, 49.6978 93.3952\\nQ 48.9139 93.3952, 48.4962 93.9227\\nQ 48.086 94.4429, 48.086 95.4393\\nQ 48.086 96.465, 48.5109 96.9925\\nQ 48.9432 97.52, 49.7784 97.52\\nQ 50.3498 97.52, 51.0165 97.1757\\nL 51.2217 97.7251\\nQ 50.9506 97.901, 50.5403 98.0035\\nQ 50.13 98.1061, 49.6758 98.1061\\nQ 48.5475 98.1061, 47.9394 97.4174\\nQ 47.3387 96.7287, 47.3387 95.4393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 51.969 92.4794\\nL 52.643 92.4794\\nL 52.643 98.0402\\nL 51.969 98.0402\\nL 51.969 92.4794\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 78.8839 111.879\\nQ 78.8839 110.589, 79.4847 109.915\\nQ 80.0928 109.234, 81.2431 109.234\\nQ 82.3127 109.234, 82.8842 109.988\\nL 82.4006 110.384\\nQ 81.983 109.835, 81.2431 109.835\\nQ 80.4591 109.835, 80.0415 110.362\\nQ 79.6312 110.882, 79.6312 111.879\\nQ 79.6312 112.904, 80.0562 113.432\\nQ 80.4884 113.959, 81.3236 113.959\\nQ 81.8951 113.959, 82.5618 113.615\\nL 82.767 114.164\\nQ 82.4959 114.34, 82.0856 114.443\\nQ 81.6753 114.545, 81.2211 114.545\\nQ 80.0928 114.545, 79.4847 113.857\\nQ 78.8839 113.168, 78.8839 111.879\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 83.5143 108.919\\nL 84.1883 108.919\\nL 84.1883 114.48\\nL 83.5143 114.48\\nL 83.5143 108.919\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 107.409 95.3477\\nQ 107.409 94.0582, 108.01 93.3842\\nQ 108.618 92.7029, 109.769 92.7029\\nQ 110.838 92.7029, 111.41 93.4575\\nL 110.926 93.8531\\nQ 110.509 93.3036, 109.769 93.3036\\nQ 108.985 93.3036, 108.567 93.8311\\nQ 108.157 94.3513, 108.157 95.3477\\nQ 108.157 96.3734, 108.582 96.9009\\nQ 109.014 97.4284, 109.849 97.4284\\nQ 110.421 97.4284, 111.087 97.0841\\nL 111.293 97.6336\\nQ 111.021 97.8094, 110.611 97.912\\nQ 110.201 98.0145, 109.747 98.0145\\nQ 108.618 98.0145, 108.01 97.3258\\nQ 107.409 96.6372, 107.409 95.3477\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 112.04 92.3878\\nL 112.714 92.3878\\nL 112.714 97.9486\\nL 112.04 97.9486\\nL 112.04 92.3878\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -7.16, "data-ID": 241, "mols2grid-id": 47, "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5-PCB<br><strong>SMILES</strong>: c1ccccc1c2c(Cl)c(Cl)c(Cl)c(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.16</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)cccc2Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.6774,38.9609 L 99.6774,17.369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.359,35.7221 L 95.359,20.6077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.9788,49.7568 L 99.6774,38.9609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6774,17.369 L 105.763,13.8558' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.763,13.8558 L 111.848,10.3427' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 99.6774,17.369 L 80.9788,6.57301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.9788,6.57301 L 62.2802,17.369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.3333,11.9322 L 67.2443,19.4894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.2802,17.369 L 62.2802,38.9609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.2802,38.9609 L 55.2147,43.0399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.2147,43.0399 L 48.1491,47.1189' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 62.2802,38.9609 L 80.9788,49.7568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 67.2443,36.8404 L 80.3333,44.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.9788,49.7568 L 80.9788,71.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.9788,71.3602 L 62.2975,82.1864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.3419,76.7205 L 67.265,84.2988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 99.6947,82.1274 L 80.9788,71.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 62.2975,82.1864 L 55.2255,78.1187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 55.2255,78.1187 L 48.1534,74.051' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 62.2975,82.1864 L 62.3306,103.778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 62.3306,103.778 L 81.0479,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 67.2915,101.65 L 80.3936,109.187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 81.0479,114.545 L 99.7292,103.719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 99.7292,103.719 L 99.6947,82.1274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 95.4057,100.487 L 95.3815,85.3731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 99.6947,82.1274 L 105.773,78.6057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 105.773,78.6057 L 111.851,75.0839' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 112.28 8.9438\\nQ 112.28 7.42373, 112.988 6.62914\\nQ 113.705 5.82593, 115.061 5.82593\\nQ 116.322 5.82593, 116.996 6.71551\\nL 116.426 7.1819\\nQ 115.933 6.53414, 115.061 6.53414\\nQ 114.137 6.53414, 113.644 7.15599\\nQ 113.161 7.7692, 113.161 8.9438\\nQ 113.161 10.1529, 113.662 10.7748\\nQ 114.171 11.3966, 115.156 11.3966\\nQ 115.83 11.3966, 116.616 10.9907\\nL 116.857 11.6385\\nQ 116.538 11.8457, 116.054 11.9667\\nQ 115.57 12.0876, 115.035 12.0876\\nQ 113.705 12.0876, 112.988 11.2757\\nQ 112.28 10.4639, 112.28 8.9438\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 117.738 5.45455\\nL 118.533 5.45455\\nL 118.533 12.0098\\nL 117.738 12.0098\\nL 117.738 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 41.4642 47.8092\\nQ 41.4642 46.2891, 42.1724 45.4946\\nQ 42.8893 44.6913, 44.2453 44.6913\\nQ 45.5062 44.6913, 46.1799 45.5809\\nL 45.6099 46.0473\\nQ 45.1176 45.3996, 44.2453 45.3996\\nQ 43.3211 45.3996, 42.8288 46.0214\\nQ 42.3452 46.6346, 42.3452 47.8092\\nQ 42.3452 49.0184, 42.8461 49.6402\\nQ 43.3557 50.2621, 44.3403 50.2621\\nQ 45.0139 50.2621, 45.7999 49.8561\\nL 46.0417 50.5039\\nQ 45.7221 50.7112, 45.2385 50.8321\\nQ 44.7548 50.953, 44.2193 50.953\\nQ 42.8893 50.953, 42.1724 50.1411\\nQ 41.4642 49.3293, 41.4642 47.8092\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 46.9227 44.32\\nL 47.7172 44.32\\nL 47.7172 50.8753\\nL 46.9227 50.8753\\nL 46.9227 44.32\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 41.4685 73.7857\\nQ 41.4685 72.2656, 42.1768 71.4711\\nQ 42.8936 70.6678, 44.2496 70.6678\\nQ 45.5105 70.6678, 46.1842 71.5574\\nL 45.6142 72.0238\\nQ 45.1219 71.3761, 44.2496 71.3761\\nQ 43.3254 71.3761, 42.8331 71.9979\\nQ 42.3495 72.6111, 42.3495 73.7857\\nQ 42.3495 74.9949, 42.8504 75.6167\\nQ 43.36 76.2385, 44.3446 76.2385\\nQ 45.0182 76.2385, 45.8042 75.8326\\nL 46.046 76.4804\\nQ 45.7265 76.6877, 45.2428 76.8086\\nQ 44.7591 76.9295, 44.2237 76.9295\\nQ 42.8936 76.9295, 42.1768 76.1176\\nQ 41.4685 75.3058, 41.4685 73.7857\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 46.927 70.2965\\nL 47.7216 70.2965\\nL 47.7216 76.8518\\nL 46.927 76.8518\\nL 46.927 70.2965\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 112.283 73.6792\\nQ 112.283 72.1591, 112.991 71.3645\\nQ 113.708 70.5613, 115.064 70.5613\\nQ 116.325 70.5613, 116.998 71.4509\\nL 116.428 71.9173\\nQ 115.936 71.2695, 115.064 71.2695\\nQ 114.14 71.2695, 113.647 71.8914\\nQ 113.164 72.5046, 113.164 73.6792\\nQ 113.164 74.8883, 113.665 75.5102\\nQ 114.174 76.132, 115.159 76.132\\nQ 115.832 76.132, 116.618 75.7261\\nL 116.86 76.3739\\nQ 116.541 76.5811, 116.057 76.7021\\nQ 115.573 76.823, 115.038 76.823\\nQ 113.708 76.823, 112.991 76.0111\\nQ 112.283 75.1993, 112.283 73.6792\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 117.741 70.1899\\nL 118.536 70.1899\\nL 118.536 76.7452\\nL 117.741 76.7452\\nL 117.741 70.1899\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.8, "data-ID": 246, "mols2grid-id": 48, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,5,6\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)cccc2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.8</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.5494,33.6325 L 96.5494,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.9178,30.9087 L 92.9178,18.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.8244,42.7116 L 96.5494,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.5494,15.4742 L 101.667,12.5198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.667,12.5198 L 106.785,9.56537' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.5494,15.4742 L 80.8244,6.39514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.8244,6.39514 L 65.0994,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.2815,10.9021 L 69.274,17.2575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0994,15.4742 L 65.0994,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0994,33.6325 L 59.1574,37.0628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1574,37.0628 L 53.2154,40.4932' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0994,33.6325 L 80.8244,42.7116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.274,31.8493 L 80.2815,38.2046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.8244,42.7116 L 80.8244,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.8244,60.8795 L 65.1139,69.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.2887,65.3873 L 69.2914,71.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-8' d='M 96.5639,69.9344 L 80.8244,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.1139,69.984 L 59.1665,66.5632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 59.1665,66.5632 L 53.2191,63.1423' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 65.1139,69.984 L 65.1417,88.1422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 65.1417,88.1422 L 59.2064,91.5821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 59.2064,91.5821 L 53.2711,95.022' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 65.1417,88.1422 L 80.8825,97.1971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 69.3137,86.3525 L 80.3322,92.6909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8825,97.1971 L 80.8918,103.057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8918,103.057 L 80.901,108.916' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 80.8825,97.1971 L 96.593,88.0926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.593,88.0926 L 96.5639,69.9344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 92.957,85.3746 L 92.9366,72.6639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 107.148 8.38891\\nQ 107.148 7.11057, 107.743 6.44235\\nQ 108.346 5.76687, 109.487 5.76687\\nQ 110.547 5.76687, 111.113 6.51499\\nL 110.634 6.9072\\nQ 110.22 6.36246, 109.487 6.36246\\nQ 108.709 6.36246, 108.295 6.88541\\nQ 107.889 7.40111, 107.889 8.38891\\nQ 107.889 9.40577, 108.31 9.92873\\nQ 108.738 10.4517, 109.566 10.4517\\nQ 110.133 10.4517, 110.794 10.1103\\nL 110.997 10.6551\\nQ 110.729 10.8294, 110.322 10.9311\\nQ 109.915 11.0327, 109.465 11.0327\\nQ 108.346 11.0327, 107.743 10.35\\nQ 107.148 9.66725, 107.148 8.38891\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 111.738 5.45455\\nL 112.406 5.45455\\nL 112.406 10.9674\\nL 111.738 10.9674\\nL 111.738 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.5936 41.0737\\nQ 47.5936 39.7954, 48.1892 39.1271\\nQ 48.7921 38.4516, 49.9324 38.4516\\nQ 50.9929 38.4516, 51.5594 39.1998\\nL 51.08 39.592\\nQ 50.666 39.0472, 49.9324 39.0472\\nQ 49.1552 39.0472, 48.7412 39.5702\\nQ 48.3345 40.0859, 48.3345 41.0737\\nQ 48.3345 42.0906, 48.7558 42.6135\\nQ 49.1843 43.1365, 50.0123 43.1365\\nQ 50.5789 43.1365, 51.2398 42.7951\\nL 51.4432 43.3398\\nQ 51.1744 43.5142, 50.7677 43.6158\\nQ 50.361 43.7175, 49.9106 43.7175\\nQ 48.7921 43.7175, 48.1892 43.0348\\nQ 47.5936 42.352, 47.5936 41.0737\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 52.184 38.1393\\nL 52.8523 38.1393\\nL 52.8523 43.6522\\nL 52.184 43.6522\\nL 52.184 38.1393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.5973 62.9192\\nQ 47.5973 61.6409, 48.1929 60.9727\\nQ 48.7957 60.2972, 49.9361 60.2972\\nQ 50.9965 60.2972, 51.563 61.0453\\nL 51.0837 61.4375\\nQ 50.6696 60.8928, 49.9361 60.8928\\nQ 49.1589 60.8928, 48.7449 61.4157\\nQ 48.3381 61.9314, 48.3381 62.9192\\nQ 48.3381 63.9361, 48.7594 64.4591\\nQ 49.1879 64.982, 50.0159 64.982\\nQ 50.5825 64.982, 51.2434 64.6406\\nL 51.4468 65.1854\\nQ 51.1781 65.3597, 50.7713 65.4614\\nQ 50.3646 65.5631, 49.9143 65.5631\\nQ 48.7957 65.5631, 48.1929 64.8803\\nQ 47.5973 64.1976, 47.5973 62.9192\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 52.1877 59.9849\\nL 52.8559 59.9849\\nL 52.8559 65.4977\\nL 52.1877 65.4977\\nL 52.1877 59.9849\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.6493 95.604\\nQ 47.6493 94.3257, 48.2449 93.6575\\nQ 48.8478 92.982, 49.9881 92.982\\nQ 51.0485 92.982, 51.6151 93.7301\\nL 51.1357 94.1223\\nQ 50.7217 93.5776, 49.9881 93.5776\\nQ 49.2109 93.5776, 48.7969 94.1005\\nQ 48.3902 94.6162, 48.3902 95.604\\nQ 48.3902 96.6209, 48.8115 97.1438\\nQ 49.24 97.6668, 50.068 97.6668\\nQ 50.6345 97.6668, 51.2955 97.3254\\nL 51.4989 97.8702\\nQ 51.2301 98.0445, 50.8234 98.1462\\nQ 50.4166 98.2479, 49.9663 98.2479\\nQ 48.8478 98.2479, 48.2449 97.5651\\nQ 47.6493 96.8824, 47.6493 95.604\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 52.2397 92.6697\\nL 52.9079 92.6697\\nL 52.9079 98.1825\\nL 52.2397 98.1825\\nL 52.2397 92.6697\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 78.9226 111.902\\nQ 78.9226 110.623, 79.5182 109.955\\nQ 80.1211 109.28, 81.2614 109.28\\nQ 82.3218 109.28, 82.8884 110.028\\nL 82.409 110.42\\nQ 81.995 109.875, 81.2614 109.875\\nQ 80.4842 109.875, 80.0702 110.398\\nQ 79.6635 110.914, 79.6635 111.902\\nQ 79.6635 112.918, 80.0847 113.441\\nQ 80.5133 113.964, 81.3413 113.964\\nQ 81.9078 113.964, 82.5688 113.623\\nL 82.7722 114.168\\nQ 82.5034 114.342, 82.0967 114.444\\nQ 81.6899 114.545, 81.2396 114.545\\nQ 80.1211 114.545, 79.5182 113.863\\nQ 78.9226 113.18, 78.9226 111.902\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 83.513 108.967\\nL 84.1812 108.967\\nL 84.1812 114.48\\nL 83.513 114.48\\nL 83.513 108.967\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -7.91, "data-ID": 251, "mols2grid-id": 49, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,4,5\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.91</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Clc1c(Cl)c(Cl)c(Cl)c(Cl)c1c2ccccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.034,56.3531 L 101.869,53.3711' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.869,53.3711 L 96.7034,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7034,50.3892 L 96.7034,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.038,47.6401 L 93.038,34.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 80.8321,59.5528 L 96.7034,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.7034,32.062 L 101.869,29.0801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.869,29.0801 L 107.034,26.0981' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.7034,32.062 L 80.8321,22.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8321,22.8984 L 80.8321,17.1748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8321,17.1748 L 80.8321,11.4512' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.8321,22.8984 L 64.9607,32.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.2841,27.4473 L 69.1742,33.8618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 64.9607,32.062 L 58.9634,28.5997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 58.9634,28.5997 L 52.9662,25.1374' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 64.9607,32.062 L 64.9607,50.3892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.9607,50.3892 L 58.9634,53.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.9634,53.8515 L 52.9662,57.3138' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 64.9607,50.3892 L 80.8321,59.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 69.1742,48.5894 L 80.2841,55.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.8321,59.5528 L 80.8321,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.8321,77.8898 L 64.9753,87.0791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 80.2914,82.4396 L 69.1917,88.8721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 96.7181,87.029 L 80.8321,77.8898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 64.9753,87.0791 L 65.0035,105.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 65.0035,105.406 L 80.8907,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 69.2143,103.6 L 80.3353,109.997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 80.8907,114.545 L 96.7474,105.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.7474,105.356 L 96.7181,87.029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.0776,102.613 L 93.057,89.7839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.4 57.8997\\nQ 107.4 56.6095, 108.002 55.935\\nQ 108.61 55.2533, 109.761 55.2533\\nQ 110.831 55.2533, 111.403 56.0083\\nL 110.919 56.4042\\nQ 110.501 55.8544, 109.761 55.8544\\nQ 108.977 55.8544, 108.559 56.3822\\nQ 108.148 56.9027, 108.148 57.8997\\nQ 108.148 58.926, 108.573 59.4538\\nQ 109.006 59.9817, 109.842 59.9817\\nQ 110.413 59.9817, 111.081 59.6371\\nL 111.286 60.1869\\nQ 111.015 60.3629, 110.604 60.4655\\nQ 110.193 60.5681, 109.739 60.5681\\nQ 108.61 60.5681, 108.002 59.879\\nQ 107.4 59.1899, 107.4 57.8997\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 112.034 54.938\\nL 112.708 54.938\\nL 112.708 60.5022\\nL 112.034 60.5022\\nL 112.034 54.938\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 107.4 24.9107\\nQ 107.4 23.6205, 108.002 22.946\\nQ 108.61 22.2643, 109.761 22.2643\\nQ 110.831 22.2643, 111.403 23.0193\\nL 110.919 23.4152\\nQ 110.501 22.8654, 109.761 22.8654\\nQ 108.977 22.8654, 108.559 23.3932\\nQ 108.148 23.9137, 108.148 24.9107\\nQ 108.148 25.937, 108.573 26.4649\\nQ 109.006 26.9927, 109.842 26.9927\\nQ 110.413 26.9927, 111.081 26.6481\\nL 111.286 27.198\\nQ 111.015 27.3739, 110.604 27.4765\\nQ 110.193 27.5792, 109.739 27.5792\\nQ 108.61 27.5792, 108.002 26.8901\\nQ 107.4 26.201, 107.4 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 112.034 21.949\\nL 112.708 21.949\\nL 112.708 27.5132\\nL 112.034 27.5132\\nL 112.034 21.949\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 78.8307 8.41622\\nQ 78.8307 7.12599, 79.4319 6.45155\\nQ 80.0403 5.76977, 81.1913 5.76977\\nQ 82.2616 5.76977, 82.8334 6.52485\\nL 82.3495 6.92072\\nQ 81.9317 6.37091, 81.1913 6.37091\\nQ 80.4069 6.37091, 79.989 6.89873\\nQ 79.5785 7.41922, 79.5785 8.41622\\nQ 79.5785 9.44255, 80.0037 9.97037\\nQ 80.4362 10.4982, 81.2719 10.4982\\nQ 81.8437 10.4982, 82.5108 10.1536\\nL 82.7161 10.7035\\nQ 82.4449 10.8794, 82.0343 10.982\\nQ 81.6238 11.0847, 81.1693 11.0847\\nQ 80.0403 11.0847, 79.4319 10.3956\\nQ 78.8307 9.70646, 78.8307 8.41622\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 83.4638 5.45455\\nL 84.1383 5.45455\\nL 84.1383 11.0187\\nL 83.4638 11.0187\\nL 83.4638 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 47.292 24.9107\\nQ 47.292 23.6205, 47.8932 22.946\\nQ 48.5016 22.2643, 49.6526 22.2643\\nQ 50.7229 22.2643, 51.2947 23.0193\\nL 50.8109 23.4152\\nQ 50.393 22.8654, 49.6526 22.8654\\nQ 48.8682 22.8654, 48.4503 23.3932\\nQ 48.0398 23.9137, 48.0398 24.9107\\nQ 48.0398 25.937, 48.465 26.4649\\nQ 48.8975 26.9927, 49.7332 26.9927\\nQ 50.305 26.9927, 50.9721 26.6481\\nL 51.1774 27.198\\nQ 50.9062 27.3739, 50.4956 27.4765\\nQ 50.0851 27.5792, 49.6306 27.5792\\nQ 48.5016 27.5792, 47.8932 26.8901\\nQ 47.292 26.201, 47.292 24.9107\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 51.9252 21.949\\nL 52.5996 21.949\\nL 52.5996 27.5132\\nL 51.9252 27.5132\\nL 51.9252 21.949\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 47.292 57.8997\\nQ 47.292 56.6095, 47.8932 55.935\\nQ 48.5016 55.2533, 49.6526 55.2533\\nQ 50.7229 55.2533, 51.2947 56.0083\\nL 50.8109 56.4042\\nQ 50.393 55.8544, 49.6526 55.8544\\nQ 48.8682 55.8544, 48.4503 56.3822\\nQ 48.0398 56.9027, 48.0398 57.8997\\nQ 48.0398 58.926, 48.465 59.4538\\nQ 48.8975 59.9817, 49.7332 59.9817\\nQ 50.305 59.9817, 50.9721 59.6371\\nL 51.1774 60.1869\\nQ 50.9062 60.3629, 50.4956 60.4655\\nQ 50.0851 60.5681, 49.6306 60.5681\\nQ 48.5016 60.5681, 47.8932 59.879\\nQ 47.292 59.1899, 47.292 57.8997\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 51.9252 54.938\\nL 52.5996 54.938\\nL 52.5996 60.5022\\nL 51.9252 60.5022\\nL 51.9252 54.938\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -7.92, "data-ID": 256, "mols2grid-id": 50, "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5,6-PCB<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c(Cl)c(Cl)c1c2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.92</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)c(Cl)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.5222,33.6325 L 96.5222,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.8905,30.9087 L 92.8905,18.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.7971,42.7116 L 96.5222,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.5222,15.4742 L 101.64,12.5198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.64,12.5198 L 106.757,9.56537' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.5222,15.4742 L 80.7971,6.39514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.7971,6.39514 L 65.0721,15.4742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.2543,10.9021 L 69.2467,17.2575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0721,15.4742 L 65.0721,33.6325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0721,33.6325 L 59.1302,37.0628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1302,37.0628 L 53.1882,40.4932' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0721,33.6325 L 80.7971,42.7116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 69.2467,31.8493 L 80.2543,38.2046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.7971,42.7116 L 80.7971,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.7971,60.8795 L 65.0867,69.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.2615,65.3873 L 69.2642,71.7605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-8' d='M 96.5367,69.9344 L 80.7971,60.8795' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.0867,69.984 L 59.1392,66.5632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 59.1392,66.5632 L 53.1918,63.1423' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 65.0867,69.984 L 65.1145,88.1422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 65.1145,88.1422 L 59.1792,91.5821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 59.1792,91.5821 L 53.2439,95.022' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 65.1145,88.1422 L 80.8553,97.1971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 69.2865,86.3525 L 80.305,92.6909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8553,97.1971 L 80.8645,103.057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.8645,103.057 L 80.8738,108.916' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 80.8553,97.1971 L 96.5657,88.0926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.5657,88.0926 L 101.689,91.0392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 101.689,91.0392 L 106.812,93.9859' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 96.5657,88.0926 L 96.5367,69.9344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 92.9297,85.3746 L 92.9094,72.6639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 107.121 8.38891\\nQ 107.121 7.11057, 107.716 6.44235\\nQ 108.319 5.76687, 109.459 5.76687\\nQ 110.52 5.76687, 111.086 6.51499\\nL 110.607 6.9072\\nQ 110.193 6.36246, 109.459 6.36246\\nQ 108.682 6.36246, 108.268 6.88541\\nQ 107.861 7.40111, 107.861 8.38891\\nQ 107.861 9.40577, 108.283 9.92873\\nQ 108.711 10.4517, 109.539 10.4517\\nQ 110.106 10.4517, 110.767 10.1103\\nL 110.97 10.6551\\nQ 110.701 10.8294, 110.295 10.9311\\nQ 109.888 11.0327, 109.437 11.0327\\nQ 108.319 11.0327, 107.716 10.35\\nQ 107.121 9.66725, 107.121 8.38891\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 111.711 5.45455\\nL 112.379 5.45455\\nL 112.379 10.9674\\nL 111.711 10.9674\\nL 111.711 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.5664 41.0737\\nQ 47.5664 39.7954, 48.162 39.1271\\nQ 48.7648 38.4516, 49.9052 38.4516\\nQ 50.9656 38.4516, 51.5322 39.1998\\nL 51.0528 39.592\\nQ 50.6388 39.0472, 49.9052 39.0472\\nQ 49.128 39.0472, 48.714 39.5702\\nQ 48.3073 40.0859, 48.3073 41.0737\\nQ 48.3073 42.0906, 48.7285 42.6135\\nQ 49.1571 43.1365, 49.9851 43.1365\\nQ 50.5516 43.1365, 51.2126 42.7951\\nL 51.4159 43.3398\\nQ 51.1472 43.5142, 50.7405 43.6158\\nQ 50.3337 43.7175, 49.8834 43.7175\\nQ 48.7648 43.7175, 48.162 43.0348\\nQ 47.5664 42.352, 47.5664 41.0737\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 52.1568 38.1393\\nL 52.825 38.1393\\nL 52.825 43.6522\\nL 52.1568 43.6522\\nL 52.1568 38.1393\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 47.57 62.9192\\nQ 47.57 61.6409, 48.1656 60.9727\\nQ 48.7685 60.2972, 49.9088 60.2972\\nQ 50.9693 60.2972, 51.5358 61.0453\\nL 51.0564 61.4375\\nQ 50.6424 60.8928, 49.9088 60.8928\\nQ 49.1316 60.8928, 48.7176 61.4157\\nQ 48.3109 61.9314, 48.3109 62.9192\\nQ 48.3109 63.9361, 48.7322 64.4591\\nQ 49.1607 64.982, 49.9887 64.982\\nQ 50.5552 64.982, 51.2162 64.6406\\nL 51.4196 65.1854\\nQ 51.1508 65.3597, 50.7441 65.4614\\nQ 50.3373 65.5631, 49.887 65.5631\\nQ 48.7685 65.5631, 48.1656 64.8803\\nQ 47.57 64.1976, 47.57 62.9192\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 52.1604 59.9849\\nL 52.8287 59.9849\\nL 52.8287 65.4977\\nL 52.1604 65.4977\\nL 52.1604 59.9849\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.6221 95.604\\nQ 47.6221 94.3257, 48.2177 93.6575\\nQ 48.8205 92.982, 49.9609 92.982\\nQ 51.0213 92.982, 51.5878 93.7301\\nL 51.1085 94.1223\\nQ 50.6945 93.5776, 49.9609 93.5776\\nQ 49.1837 93.5776, 48.7697 94.1005\\nQ 48.3629 94.6162, 48.3629 95.604\\nQ 48.3629 96.6209, 48.7842 97.1438\\nQ 49.2128 97.6668, 50.0408 97.6668\\nQ 50.6073 97.6668, 51.2683 97.3254\\nL 51.4716 97.8702\\nQ 51.2029 98.0445, 50.7961 98.1462\\nQ 50.3894 98.2479, 49.9391 98.2479\\nQ 48.8205 98.2479, 48.2177 97.5651\\nQ 47.6221 96.8824, 47.6221 95.604\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 52.2125 92.6697\\nL 52.8807 92.6697\\nL 52.8807 98.1825\\nL 52.2125 98.1825\\nL 52.2125 92.6697\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 78.8954 111.902\\nQ 78.8954 110.623, 79.491 109.955\\nQ 80.0938 109.28, 81.2342 109.28\\nQ 82.2946 109.28, 82.8611 110.028\\nL 82.3818 110.42\\nQ 81.9677 109.875, 81.2342 109.875\\nQ 80.457 109.875, 80.043 110.398\\nQ 79.6362 110.914, 79.6362 111.902\\nQ 79.6362 112.918, 80.0575 113.441\\nQ 80.486 113.964, 81.314 113.964\\nQ 81.8806 113.964, 82.5415 113.623\\nL 82.7449 114.168\\nQ 82.4762 114.342, 82.0694 114.444\\nQ 81.6627 114.545, 81.2124 114.545\\nQ 80.0938 114.545, 79.491 113.863\\nQ 78.8954 113.18, 78.8954 111.902\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 83.4858 108.967\\nL 84.154 108.967\\nL 84.154 114.48\\nL 83.4858 114.48\\nL 83.4858 108.967\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 107.175 95.5132\\nQ 107.175 94.2349, 107.771 93.5667\\nQ 108.373 92.8912, 109.514 92.8912\\nQ 110.574 92.8912, 111.141 93.6393\\nL 110.661 94.0315\\nQ 110.247 93.4868, 109.514 93.4868\\nQ 108.737 93.4868, 108.323 94.0097\\nQ 107.916 94.5254, 107.916 95.5132\\nQ 107.916 96.5301, 108.337 97.053\\nQ 108.766 97.576, 109.594 97.576\\nQ 110.16 97.576, 110.821 97.2346\\nL 111.025 97.7794\\nQ 110.756 97.9537, 110.349 98.0554\\nQ 109.942 98.1571, 109.492 98.1571\\nQ 108.373 98.1571, 107.771 97.4743\\nQ 107.175 96.7916, 107.175 95.5132\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 111.765 92.5789\\nL 112.434 92.5789\\nL 112.434 98.0917\\nL 111.765 98.0917\\nL 111.765 92.5789\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -7.68, "data-ID": 261, "mols2grid-id": 51, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,4,5,5\\uffb4-PCB<br><strong>SMILES</strong>: c1c(Cl)ccc(Cl)c1c2c(Cl)c(Cl)c(Cl)c(Cl)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.68</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(Cl)c(Cl)c(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 101.27,44.1744 L 101.27,28.382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 98.1113,41.8055 L 98.1113,30.7509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-0' d='M 87.5935,52.0706 L 101.27,44.1744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.27,28.382 L 87.5935,20.4858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.5935,20.4858 L 87.5935,15.5538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.5935,15.5538 L 87.5935,10.6218' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 87.5935,20.4858 L 73.9173,28.382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 87.1214,24.4055 L 77.548,29.9329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.9173,28.382 L 68.7495,25.3986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.7495,25.3986 L 63.5817,22.4151' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 73.9173,28.382 L 73.9173,44.1744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 73.9173,44.1744 L 68.7495,47.1578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.7495,47.1578 L 63.5817,50.1413' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 73.9173,44.1744 L 87.5935,52.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 77.548,42.6235 L 87.1214,48.1509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.5935,52.0706 L 87.5935,67.8715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.5935,67.8715 L 73.9299,75.7898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.1277,71.792 L 77.5631,77.3348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-9' d='M 101.282,75.7466 L 87.5935,67.8715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.9299,75.7898 L 68.7574,72.8147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 68.7574,72.8147 L 63.5848,69.8395' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 73.9299,75.7898 L 73.9541,91.5822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 73.9541,91.5822 L 68.7921,94.5739' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 68.7921,94.5739 L 63.6301,97.5656' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 73.9541,91.5822 L 87.6441,99.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 77.5826,90.0257 L 87.1655,95.5383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 87.6441,99.4574 L 87.6521,104.554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 87.6521,104.554 L 87.6602,109.65' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 87.6441,99.4574 L 101.308,91.5391' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 101.308,91.5391 L 101.282,75.7466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 98.1454,89.1752 L 98.1277,78.1205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.869 8.0066\\nQ 85.869 6.89481, 86.387 6.31365\\nQ 86.9113 5.72618, 87.9031 5.72618\\nQ 88.8253 5.72618, 89.3181 6.37682\\nL 88.9011 6.71794\\nQ 88.5411 6.24417, 87.9031 6.24417\\nQ 87.2271 6.24417, 86.8671 6.69899\\nQ 86.5133 7.14749, 86.5133 8.0066\\nQ 86.5133 8.89098, 86.8797 9.3458\\nQ 87.2524 9.80062, 87.9725 9.80062\\nQ 88.4653 9.80062, 89.0401 9.50372\\nL 89.217 9.9775\\nQ 88.9833 10.1291, 88.6295 10.2175\\nQ 88.2758 10.306, 87.8841 10.306\\nQ 86.9113 10.306, 86.387 9.71218\\nQ 85.869 9.11839, 85.869 8.0066\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 89.8613 5.45455\\nL 90.4425 5.45455\\nL 90.4425 10.2491\\nL 89.8613 10.2491\\nL 89.8613 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 58.6923 22.2198\\nQ 58.6923 21.108, 59.2103 20.5268\\nQ 59.7346 19.9394, 60.7264 19.9394\\nQ 61.6487 19.9394, 62.1414 20.59\\nL 61.7245 20.9311\\nQ 61.3644 20.4573, 60.7264 20.4573\\nQ 60.0505 20.4573, 59.6904 20.9122\\nQ 59.3367 21.3607, 59.3367 22.2198\\nQ 59.3367 23.1042, 59.703 23.559\\nQ 60.0758 24.0138, 60.7959 24.0138\\nQ 61.2886 24.0138, 61.8635 23.7169\\nL 62.0403 24.1907\\nQ 61.8066 24.3423, 61.4529 24.4307\\nQ 61.0991 24.5192, 60.7074 24.5192\\nQ 59.7346 24.5192, 59.2103 23.9254\\nQ 58.6923 23.3316, 58.6923 22.2198\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 62.6847 19.6677\\nL 63.2658 19.6677\\nL 63.2658 24.4623\\nL 62.6847 24.4623\\nL 62.6847 19.6677\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 58.6923 50.6461\\nQ 58.6923 49.5344, 59.2103 48.9532\\nQ 59.7346 48.3657, 60.7264 48.3657\\nQ 61.6487 48.3657, 62.1414 49.0164\\nL 61.7245 49.3575\\nQ 61.3644 48.8837, 60.7264 48.8837\\nQ 60.0505 48.8837, 59.6904 49.3385\\nQ 59.3367 49.787, 59.3367 50.6461\\nQ 59.3367 51.5305, 59.703 51.9853\\nQ 60.0758 52.4402, 60.7959 52.4402\\nQ 61.2886 52.4402, 61.8635 52.1433\\nL 62.0403 52.617\\nQ 61.8066 52.7686, 61.4529 52.8571\\nQ 61.0991 52.9455, 60.7074 52.9455\\nQ 59.7346 52.9455, 59.2103 52.3517\\nQ 58.6923 51.7579, 58.6923 50.6461\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 62.6847 48.0941\\nL 63.2658 48.0941\\nL 63.2658 52.8887\\nL 62.6847 52.8887\\nL 62.6847 48.0941\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 58.6955 69.6455\\nQ 58.6955 68.5337, 59.2135 67.9525\\nQ 59.7378 67.3651, 60.7296 67.3651\\nQ 61.6518 67.3651, 62.1446 68.0157\\nL 61.7276 68.3568\\nQ 61.3676 67.8831, 60.7296 67.8831\\nQ 60.0536 67.8831, 59.6936 68.3379\\nQ 59.3398 68.7864, 59.3398 69.6455\\nQ 59.3398 70.5299, 59.7062 70.9847\\nQ 60.0789 71.4395, 60.799 71.4395\\nQ 61.2918 71.4395, 61.8666 71.1426\\nL 62.0435 71.6164\\nQ 61.8098 71.768, 61.456 71.8564\\nQ 61.1023 71.9449, 60.7106 71.9449\\nQ 59.7378 71.9449, 59.2135 71.3511\\nQ 58.6955 70.7573, 58.6955 69.6455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 62.6878 67.0934\\nL 63.269 67.0934\\nL 63.269 71.888\\nL 62.6878 71.888\\nL 62.6878 67.0934\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 58.7408 98.0719\\nQ 58.7408 96.9601, 59.2588 96.3789\\nQ 59.7831 95.7914, 60.7748 95.7914\\nQ 61.6971 95.7914, 62.1898 96.4421\\nL 61.7729 96.7832\\nQ 61.4128 96.3094, 60.7748 96.3094\\nQ 60.0989 96.3094, 59.7388 96.7642\\nQ 59.3851 97.2127, 59.3851 98.0719\\nQ 59.3851 98.9562, 59.7515 99.411\\nQ 60.1242 99.8659, 60.8443 99.8659\\nQ 61.337 99.8659, 61.9119 99.569\\nL 62.0888 100.043\\nQ 61.855 100.194, 61.5013 100.283\\nQ 61.1475 100.371, 60.7559 100.371\\nQ 59.7831 100.371, 59.2588 99.7774\\nQ 58.7408 99.1836, 58.7408 98.0719\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 62.7331 95.5198\\nL 63.3143 95.5198\\nL 63.3143 100.314\\nL 62.7331 100.314\\nL 62.7331 95.5198\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 85.9395 112.246\\nQ 85.9395 111.134, 86.4575 110.553\\nQ 86.9818 109.966, 87.9736 109.966\\nQ 88.8959 109.966, 89.3886 110.616\\nL 88.9717 110.957\\nQ 88.6116 110.484, 87.9736 110.484\\nQ 87.2977 110.484, 86.9376 110.938\\nQ 86.5839 111.387, 86.5839 112.246\\nQ 86.5839 113.13, 86.9502 113.585\\nQ 87.3229 114.04, 88.0431 114.04\\nQ 88.5358 114.04, 89.1106 113.743\\nL 89.2875 114.217\\nQ 89.0538 114.369, 88.7 114.457\\nQ 88.3463 114.545, 87.9546 114.545\\nQ 86.9818 114.545, 86.4575 113.952\\nQ 85.9395 113.358, 85.9395 112.246\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 89.9319 109.694\\nL 90.513 109.694\\nL 90.513 114.489\\nL 89.9319 114.489\\nL 89.9319 109.694\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -8.01, "data-ID": 266, "mols2grid-id": 52, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,3\\uffb4,4,4\\uffb4-PCB<br><strong>SMILES</strong>: c1cc(Cl)c(Cl)c(Cl)c1c2c(Cl)c(Cl)c(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-8.01</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Clc1c(Cl)cc(Cl)c(Cl)c1c2c(Cl)c(Cl)cc(Cl)c2Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.457,45.5281 L 105.44,42.0548' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.44,42.0548 L 99.424,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.424,38.5814 L 99.424,17.234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.1545,35.3793 L 95.1545,20.4362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-1' d='M 80.9372,49.2551 L 99.424,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 99.424,17.234 L 105.44,13.7607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.44,13.7607 L 111.457,10.2874' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 99.424,17.234 L 80.9372,6.56034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.9372,6.56034 L 62.4503,17.234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.2989,11.8588 L 67.3581,19.3304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 62.4503,17.234 L 55.4647,13.2012' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.4647,13.2012 L 48.4792,9.16834' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 62.4503,17.234 L 62.4503,38.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 62.4503,38.5814 L 55.4647,42.6143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 55.4647,42.6143 L 48.4792,46.6471' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 62.4503,38.5814 L 80.9372,49.2551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 67.3581,36.485 L 80.2989,43.9566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.9372,49.2551 L 80.9372,70.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.9372,70.6139 L 62.4674,81.3175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 80.3074,75.9135 L 67.3786,83.406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-10' d='M 99.4411,81.2592 L 80.9372,70.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 62.4674,81.3175 L 55.4754,77.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 55.4754,77.2959 L 48.4834,73.2742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 62.4674,81.3175 L 62.5001,102.665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 62.5001,102.665 L 55.5224,106.709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 55.5224,106.709 L 48.5446,110.753' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 62.5001,102.665 L 81.0055,113.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 67.4048,100.561 L 80.3586,108.013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 81.0055,113.31 L 99.4752,102.607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 99.4752,102.607 L 105.498,106.071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 105.498,106.071 L 111.521,109.535' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 99.4752,102.607 L 99.4411,81.2592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 95.2006,99.4113 L 95.1767,84.4681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 99.4411,81.2592 L 105.45,77.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 105.45,77.7773 L 111.46,74.2955' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 111.884 47.3296\\nQ 111.884 45.8267, 112.584 45.0412\\nQ 113.293 44.247, 114.633 44.247\\nQ 115.88 44.247, 116.546 45.1266\\nL 115.982 45.5877\\nQ 115.496 44.9472, 114.633 44.9472\\nQ 113.72 44.9472, 113.233 45.562\\nQ 112.755 46.1683, 112.755 47.3296\\nQ 112.755 48.5251, 113.25 49.1399\\nQ 113.754 49.7547, 114.727 49.7547\\nQ 115.393 49.7547, 116.17 49.3533\\nL 116.409 49.9938\\nQ 116.093 50.1987, 115.615 50.3182\\nQ 115.137 50.4378, 114.608 50.4378\\nQ 113.293 50.4378, 112.584 49.6351\\nQ 111.884 48.8325, 111.884 47.3296\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 117.28 43.8799\\nL 118.066 43.8799\\nL 118.066 50.3609\\nL 117.28 50.3609\\nL 117.28 43.8799\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 111.884 8.90429\\nQ 111.884 7.40143, 112.584 6.61584\\nQ 113.293 5.82172, 114.633 5.82172\\nQ 115.88 5.82172, 116.546 6.70123\\nL 115.982 7.16234\\nQ 115.496 6.52192, 114.633 6.52192\\nQ 113.72 6.52192, 113.233 7.13672\\nQ 112.755 7.74299, 112.755 8.90429\\nQ 112.755 10.0997, 113.25 10.7145\\nQ 113.754 11.3294, 114.727 11.3294\\nQ 115.393 11.3294, 116.17 10.928\\nL 116.409 11.5684\\nQ 116.093 11.7734, 115.615 11.8929\\nQ 115.137 12.0125, 114.608 12.0125\\nQ 113.293 12.0125, 112.584 11.2098\\nQ 111.884 10.4071, 111.884 8.90429\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 117.28 5.45455\\nL 118.066 5.45455\\nL 118.066 11.9356\\nL 117.28 11.9356\\nL 117.28 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 41.87 8.90429\\nQ 41.87 7.40143, 42.5702 6.61584\\nQ 43.2789 5.82172, 44.6195 5.82172\\nQ 45.8662 5.82172, 46.5323 6.70123\\nL 45.9687 7.16234\\nQ 45.482 6.52192, 44.6195 6.52192\\nQ 43.7059 6.52192, 43.2191 7.13672\\nQ 42.741 7.74299, 42.741 8.90429\\nQ 42.741 10.0997, 43.2362 10.7145\\nQ 43.74 11.3294, 44.7135 11.3294\\nQ 45.3795 11.3294, 46.1565 10.928\\nL 46.3956 11.5684\\nQ 46.0797 11.7734, 45.6015 11.8929\\nQ 45.1233 12.0125, 44.5939 12.0125\\nQ 43.2789 12.0125, 42.5702 11.2098\\nQ 41.87 10.4071, 41.87 8.90429\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 47.2666 5.45455\\nL 48.0522 5.45455\\nL 48.0522 11.9356\\nL 47.2666 11.9356\\nL 47.2666 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 41.87 47.3296\\nQ 41.87 45.8267, 42.5702 45.0412\\nQ 43.2789 44.247, 44.6195 44.247\\nQ 45.8662 44.247, 46.5323 45.1266\\nL 45.9687 45.5877\\nQ 45.482 44.9472, 44.6195 44.9472\\nQ 43.7059 44.9472, 43.2191 45.562\\nQ 42.741 46.1683, 42.741 47.3296\\nQ 42.741 48.5251, 43.2362 49.1399\\nQ 43.74 49.7547, 44.7135 49.7547\\nQ 45.3795 49.7547, 46.1565 49.3533\\nL 46.3956 49.9938\\nQ 46.0797 50.1987, 45.6015 50.3182\\nQ 45.1233 50.4378, 44.5939 50.4378\\nQ 43.2789 50.4378, 42.5702 49.6351\\nQ 41.87 48.8325, 41.87 47.3296\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 47.2666 43.8799\\nL 48.0522 43.8799\\nL 48.0522 50.3609\\nL 47.2666 50.3609\\nL 47.2666 43.8799\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 41.8743 73.012\\nQ 41.8743 71.5091, 42.5744 70.7235\\nQ 43.2832 69.9294, 44.6238 69.9294\\nQ 45.8705 69.9294, 46.5365 70.8089\\nL 45.973 71.27\\nQ 45.4862 70.6296, 44.6238 70.6296\\nQ 43.7101 70.6296, 43.2234 71.2444\\nQ 42.7452 71.8507, 42.7452 73.012\\nQ 42.7452 74.2074, 43.2405 74.8222\\nQ 43.7443 75.437, 44.7177 75.437\\nQ 45.3838 75.437, 46.1608 75.0357\\nL 46.3999 75.6761\\nQ 46.084 75.881, 45.6058 76.0006\\nQ 45.1276 76.1201, 44.5982 76.1201\\nQ 43.2832 76.1201, 42.5744 75.3175\\nQ 41.8743 74.5148, 41.8743 73.012\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 47.2709 69.5622\\nL 48.0565 69.5622\\nL 48.0565 76.0433\\nL 47.2709 76.0433\\nL 47.2709 69.5622\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 41.9355 111.437\\nQ 41.9355 109.934, 42.6356 109.149\\nQ 43.3444 108.355, 44.685 108.355\\nQ 45.9317 108.355, 46.5977 109.234\\nL 46.0342 109.695\\nQ 45.5474 109.055, 44.685 109.055\\nQ 43.7713 109.055, 43.2846 109.67\\nQ 42.8064 110.276, 42.8064 111.437\\nQ 42.8064 112.633, 43.3017 113.248\\nQ 43.8055 113.862, 44.7789 113.862\\nQ 45.445 113.862, 46.222 113.461\\nL 46.4611 114.101\\nQ 46.1452 114.306, 45.667 114.426\\nQ 45.1888 114.545, 44.6594 114.545\\nQ 43.3444 114.545, 42.6356 113.743\\nQ 41.9355 112.94, 41.9355 111.437\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 47.3321 107.988\\nL 48.1177 107.988\\nL 48.1177 114.469\\nL 47.3321 114.469\\nL 47.3321 107.988\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 111.948 111.331\\nQ 111.948 109.828, 112.648 109.042\\nQ 113.357 108.248, 114.697 108.248\\nQ 115.944 108.248, 116.61 109.127\\nL 116.047 109.589\\nQ 115.56 108.948, 114.697 108.948\\nQ 113.784 108.948, 113.297 109.563\\nQ 112.819 110.169, 112.819 111.331\\nQ 112.819 112.526, 113.314 113.141\\nQ 113.818 113.756, 114.791 113.756\\nQ 115.457 113.756, 116.234 113.354\\nL 116.473 113.995\\nQ 116.158 114.2, 115.679 114.319\\nQ 115.201 114.439, 114.672 114.439\\nQ 113.357 114.439, 112.648 113.636\\nQ 111.948 112.833, 111.948 111.331\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 117.344 107.881\\nL 118.13 107.881\\nL 118.13 114.362\\nL 117.344 114.362\\nL 117.344 107.881\\n' fill='#00CC00'/>\\n<path class='atom-19' d='M 111.887 72.9066\\nQ 111.887 71.4038, 112.587 70.6182\\nQ 113.296 69.8241, 114.636 69.8241\\nQ 115.883 69.8241, 116.549 70.7036\\nL 115.985 71.1647\\nQ 115.499 70.5243, 114.636 70.5243\\nQ 113.722 70.5243, 113.236 71.1391\\nQ 112.758 71.7453, 112.758 72.9066\\nQ 112.758 74.1021, 113.253 74.7169\\nQ 113.757 75.3317, 114.73 75.3317\\nQ 115.396 75.3317, 116.173 74.9304\\nL 116.412 75.5708\\nQ 116.096 75.7757, 115.618 75.8953\\nQ 115.14 76.0148, 114.611 76.0148\\nQ 113.296 76.0148, 112.587 75.2122\\nQ 111.887 74.4095, 111.887 72.9066\\n' fill='#00CC00'/>\\n<path class='atom-19' d='M 117.283 69.4569\\nL 118.069 69.4569\\nL 118.069 75.938\\nL 117.283 75.938\\nL 117.283 69.4569\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -9.15, "data-ID": 271, "mols2grid-id": 53, "mols2grid-tooltip": "<strong>Name</strong>: 2,2\\uffb4,3,3\\uffb4,5,5\\uffb4,6,6\\uffb4-PCB<br><strong>SMILES</strong>: Clc1c(Cl)cc(Cl)c(Cl)c1c2c(Cl)c(Cl)cc(Cl)c2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-9.15</span>", "style-Solubility": "color: red"}, {"data-SMILES": "ClC(Cl)C(c1ccc(Cl)cc1)c2ccc(Cl)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.5,39.6515 L 117.397,36.6831' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.397,36.6831 L 112.293,33.7147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.293,33.7147 L 112.312,28.0459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.312,28.0459 L 112.332,22.377' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.293,33.7147 L 96.5298,42.7363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.5298,42.7363 L 80.8187,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-3 atom-11' d='M 96.5298,42.7363 L 96.5032,60.8979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.8187,33.6228 L 80.8187,15.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.1883,30.9 L 77.1883,18.1936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-4' d='M 65.099,42.6988 L 80.8187,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.8187,15.4708 L 65.099,6.39482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.099,6.39482 L 49.3794,15.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 64.5563,10.9002 L 53.5526,17.2534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 49.3794,15.4708 L 43.4395,12.0416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 43.4395,12.0416 L 37.4996,8.61243' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 49.3794,15.4708 L 49.3794,33.6228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.3794,33.6228 L 65.099,42.6988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 53.5526,31.8402 L 64.5563,38.1934' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 96.5032,60.8979 L 112.191,70.0296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 97.0301,65.4052 L 108.012,71.7974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-11' d='M 80.7521,69.9207 L 96.5032,60.8979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 112.191,70.0296 L 112.13,88.1815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 112.13,88.1815 L 96.3773,97.2031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.963,86.3844 L 96.9359,92.6995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.3773,97.2031 L 96.3573,103.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.3573,103.061 L 96.3373,108.918' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 96.3773,97.2031 L 80.6892,88.0726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 80.6892,88.0726 L 80.7521,69.9207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.329,85.3624 L 84.373,72.656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 122.863 41.1934\\nQ 122.863 39.9155, 123.459 39.2475\\nQ 124.061 38.5722, 125.201 38.5722\\nQ 126.262 38.5722, 126.828 39.3201\\nL 126.349 39.7122\\nQ 125.935 39.1676, 125.201 39.1676\\nQ 124.425 39.1676, 124.011 39.6904\\nQ 123.604 40.2059, 123.604 41.1934\\nQ 123.604 42.2099, 124.025 42.7326\\nQ 124.454 43.2554, 125.281 43.2554\\nQ 125.848 43.2554, 126.508 42.9142\\nL 126.712 43.4587\\nQ 126.443 43.633, 126.036 43.7346\\nQ 125.63 43.8363, 125.18 43.8363\\nQ 124.061 43.8363, 123.459 43.1538\\nQ 122.863 42.4712, 122.863 41.1934\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 127.452 38.26\\nL 128.12 38.26\\nL 128.12 43.7709\\nL 127.452 43.7709\\nL 127.452 38.26\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 110.36 19.3711\\nQ 110.36 18.0932, 110.956 17.4252\\nQ 111.558 16.7499, 112.698 16.7499\\nQ 113.758 16.7499, 114.325 17.4978\\nL 113.846 17.8899\\nQ 113.432 17.3453, 112.698 17.3453\\nQ 111.921 17.3453, 111.508 17.8681\\nQ 111.101 18.3836, 111.101 19.3711\\nQ 111.101 20.3876, 111.522 20.9103\\nQ 111.95 21.4331, 112.778 21.4331\\nQ 113.345 21.4331, 114.005 21.0919\\nL 114.209 21.6364\\nQ 113.94 21.8107, 113.533 21.9123\\nQ 113.127 22.014, 112.677 22.014\\nQ 111.558 22.014, 110.956 21.3315\\nQ 110.36 20.649, 110.36 19.3711\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 114.949 16.4377\\nL 115.617 16.4377\\nL 115.617 21.9486\\nL 114.949 21.9486\\nL 114.949 16.4377\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 31.8797 8.3879\\nQ 31.8797 7.11, 32.4751 6.44201\\nQ 33.0778 5.76676, 34.2177 5.76676\\nQ 35.2778 5.76676, 35.8441 6.51462\\nL 35.3649 6.9067\\nQ 34.9511 6.36214, 34.2177 6.36214\\nQ 33.4408 6.36214, 33.0269 6.88492\\nQ 32.6203 7.40044, 32.6203 8.3879\\nQ 32.6203 9.40441, 33.0415 9.92719\\nQ 33.4698 10.45, 34.2976 10.45\\nQ 34.8639 10.45, 35.5247 10.1087\\nL 35.728 10.6533\\nQ 35.4593 10.8275, 35.0527 10.9292\\nQ 34.6461 11.0308, 34.1959 11.0308\\nQ 33.0778 11.0308, 32.4751 10.3483\\nQ 31.8797 9.6658, 31.8797 8.3879\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 36.4686 5.45455\\nL 37.1365 5.45455\\nL 37.1365 10.9655\\nL 36.4686 10.9655\\nL 36.4686 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 94.3455 111.903\\nQ 94.3455 110.625, 94.9409 109.957\\nQ 95.5435 109.281, 96.6835 109.281\\nQ 97.7435 109.281, 98.3099 110.029\\nL 97.8307 110.421\\nQ 97.4168 109.877, 96.6835 109.877\\nQ 95.9066 109.877, 95.4927 110.4\\nQ 95.0861 110.915, 95.0861 111.903\\nQ 95.0861 112.919, 95.5072 113.442\\nQ 95.9356 113.965, 96.7633 113.965\\nQ 97.3297 113.965, 97.9904 113.623\\nL 98.1937 114.168\\nQ 97.9251 114.342, 97.5185 114.444\\nQ 97.1119 114.545, 96.6617 114.545\\nQ 95.5435 114.545, 94.9409 113.863\\nQ 94.3455 113.18, 94.3455 111.903\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 98.9343 108.969\\nL 99.6023 108.969\\nL 99.6023 114.48\\nL 98.9343 114.48\\nL 98.9343 108.969\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -7.2, "data-ID": 276, "mols2grid-id": 54, "mols2grid-tooltip": "<strong>Name</strong>: p,p\\uffb4-DDD<br><strong>SMILES</strong>: ClC(Cl)C(c1ccc(Cl)cc1)c2ccc(Cl)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.2</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(ccc1Br)ccc2)(c2)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.1798,75.5975 L 96.1798,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 96.1798,75.5975 L 124.452,91.9256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 96.1798,75.5975 L 67.9071,91.9256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 88.6669,72.3811 L 68.876,83.8108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.1798,42.9457 L 67.9071,26.6176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.6669,46.1621 L 68.876,34.7324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 96.1798,42.9457 L 124.452,26.6176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 67.9071,26.6176 L 39.2354,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 39.2354,42.9457 L 39.2354,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 45.778,47.8435 L 45.778,70.6997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 39.2354,75.5975 L 29.2144,81.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 29.2144,81.4227 L 19.1933,87.248' style='fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 67.9071,91.9256 L 39.2354,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.452,26.6176 L 152.727,42.9457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 125.422,34.7325 L 145.214,46.1622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,42.9457 L 152.727,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 124.452,91.9256 L 152.727,75.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 125.422,83.8107 L 145.214,72.381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 11.774 88.5147\\nQ 12.6638 88.7633, 13.1087 89.3129\\nQ 13.5667 89.8494, 13.5667 90.6476\\nQ 13.5667 91.93, 12.7423 92.6627\\nQ 11.931 93.3824, 10.387 93.3824\\nL 7.27273 93.3824\\nL 7.27273 84.1181\\nL 10.0075 84.1181\\nQ 11.5908 84.1181, 12.389 84.7593\\nQ 13.1872 85.4005, 13.1872 86.5781\\nQ 13.1872 87.9782, 11.774 88.5147\\nM 8.51582 85.1649\\nL 8.51582 88.0698\\nL 10.0075 88.0698\\nQ 10.9235 88.0698, 11.3946 87.7034\\nQ 11.8787 87.324, 11.8787 86.5781\\nQ 11.8787 85.1649, 10.0075 85.1649\\nL 8.51582 85.1649\\nM 10.387 92.3356\\nQ 11.2899 92.3356, 11.774 91.9038\\nQ 12.2582 91.472, 12.2582 90.6476\\nQ 12.2582 89.8887, 11.7217 89.5092\\nQ 11.1983 89.1166, 10.1907 89.1166\\nL 8.51582 89.1166\\nL 8.51582 92.3356\\nL 10.387 92.3356\\n' fill='#7F4C19'/>\\n<path class='atom-5' d='M 15.6734 86.6566\\nL 15.8173 87.5857\\nQ 16.5239 86.5389, 17.6754 86.5389\\nQ 18.0418 86.5389, 18.539 86.6697\\nL 18.3428 87.7689\\nQ 17.7801 87.638, 17.4661 87.638\\nQ 16.9165 87.638, 16.5501 87.8605\\nQ 16.1968 88.0698, 15.9089 88.5802\\nL 15.9089 93.3824\\nL 14.6789 93.3824\\nL 14.6789 86.6566\\nL 15.6734 86.6566\\n' fill='#7F4C19'/>\\n</svg>\\n", "data-Solubility": -4.4, "data-ID": 281, "mols2grid-id": 55, "mols2grid-tooltip": "<strong>Name</strong>: 2-bromonaphthalene<br><strong>SMILES</strong>: c(c(ccc1Br)ccc2)(c2)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCC(O)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.285,79.7287 L 40.27,64.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.27,64.7362 L 72.77,83.4862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.77,83.4862 L 105.27,64.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.27,64.7362 L 115.45,70.6098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.45,70.6098 L 125.63,76.4833' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 105.27,64.7362 L 105.27,34.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 126.38 79.7587\\nQ 126.38 77.2087, 127.64 75.7837\\nQ 128.9 74.3588, 131.255 74.3588\\nQ 133.61 74.3588, 134.87 75.7837\\nQ 136.13 77.2087, 136.13 79.7587\\nQ 136.13 82.3387, 134.855 83.8087\\nQ 133.58 85.2638, 131.255 85.2638\\nQ 128.915 85.2638, 127.64 83.8087\\nQ 126.38 82.3537, 126.38 79.7587\\nM 131.255 84.0637\\nQ 132.875 84.0637, 133.745 82.9838\\nQ 134.63 81.8888, 134.63 79.7587\\nQ 134.63 77.6737, 133.745 76.6238\\nQ 132.875 75.5587, 131.255 75.5587\\nQ 129.635 75.5587, 128.75 76.6088\\nQ 127.88 77.6587, 127.88 79.7587\\nQ 127.88 81.9038, 128.75 82.9838\\nQ 129.635 84.0637, 131.255 84.0637\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 137.405 74.4787\\nL 138.845 74.4787\\nL 138.845 78.9937\\nL 144.275 78.9937\\nL 144.275 74.4787\\nL 145.715 74.4787\\nL 145.715 85.0987\\nL 144.275 85.0987\\nL 144.275 80.1937\\nL 138.845 80.1937\\nL 138.845 85.0987\\nL 137.405 85.0987\\nL 137.405 74.4787\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.29, "data-ID": 286, "mols2grid-id": 56, "mols2grid-tooltip": "<strong>Name</strong>: 2-pentanol<br><strong>SMILES</strong>: CCCC(O)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.29</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OCC(C)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 50.3575,47.3721 L 60.5375,41.4985' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 60.5375,41.4985 L 70.7175,35.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,35.625 L 103.217,54.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.217,54.375 L 129.202,39.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 103.217,54.375 L 103.217,84.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 103.217,54.375 L 129.195,69.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 30.7975 45.3675\\nL 32.2375 45.3675\\nL 32.2375 49.8825\\nL 37.6675 49.8825\\nL 37.6675 45.3675\\nL 39.1075 45.3675\\nL 39.1075 55.9875\\nL 37.6675 55.9875\\nL 37.6675 51.0825\\nL 32.2375 51.0825\\nL 32.2375 55.9875\\nL 30.7975 55.9875\\nL 30.7975 45.3675\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 39.8575 50.6475\\nQ 39.8575 48.0975, 41.1175 46.6725\\nQ 42.3775 45.2475, 44.7325 45.2475\\nQ 47.0875 45.2475, 48.3475 46.6725\\nQ 49.6075 48.0975, 49.6075 50.6475\\nQ 49.6075 53.2275, 48.3325 54.6975\\nQ 47.0575 56.1525, 44.7325 56.1525\\nQ 42.3925 56.1525, 41.1175 54.6975\\nQ 39.8575 53.2425, 39.8575 50.6475\\nM 44.7325 54.9525\\nQ 46.3525 54.9525, 47.2225 53.8725\\nQ 48.1075 52.7775, 48.1075 50.6475\\nQ 48.1075 48.5625, 47.2225 47.5125\\nQ 46.3525 46.4475, 44.7325 46.4475\\nQ 43.1125 46.4475, 42.2275 47.4975\\nQ 41.3575 48.5475, 41.3575 50.6475\\nQ 41.3575 52.7925, 42.2275 53.8725\\nQ 43.1125 54.9525, 44.7325 54.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.4, "data-ID": 291, "mols2grid-id": 57, "mols2grid-tooltip": "<strong>Name</strong>: 2,2-dimethyl-1-propanol<br><strong>SMILES</strong>: OCC(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.4</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)C(C)CO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.285,65.6175 L 40.27,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.27,50.625 L 40.27,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 40.27,50.625 L 72.77,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.77,69.375 L 72.77,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 72.77,69.375 L 105.27,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.27,50.625 L 115.45,56.4985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 115.45,56.4985 L 125.63,62.3721' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 126.38 65.6475\\nQ 126.38 63.0975, 127.64 61.6725\\nQ 128.9 60.2475, 131.255 60.2475\\nQ 133.61 60.2475, 134.87 61.6725\\nQ 136.13 63.0975, 136.13 65.6475\\nQ 136.13 68.2275, 134.855 69.6975\\nQ 133.58 71.1525, 131.255 71.1525\\nQ 128.915 71.1525, 127.64 69.6975\\nQ 126.38 68.2425, 126.38 65.6475\\nM 131.255 69.9525\\nQ 132.875 69.9525, 133.745 68.8725\\nQ 134.63 67.7775, 134.63 65.6475\\nQ 134.63 63.5625, 133.745 62.5125\\nQ 132.875 61.4475, 131.255 61.4475\\nQ 129.635 61.4475, 128.75 62.4975\\nQ 127.88 63.5475, 127.88 65.6475\\nQ 127.88 67.7925, 128.75 68.8725\\nQ 129.635 69.9525, 131.255 69.9525\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 137.405 60.3675\\nL 138.845 60.3675\\nL 138.845 64.8825\\nL 144.275 64.8825\\nL 144.275 60.3675\\nL 145.715 60.3675\\nL 145.715 70.9875\\nL 144.275 70.9875\\nL 144.275 66.0825\\nL 138.845 66.0825\\nL 138.845 70.9875\\nL 137.405 70.9875\\nL 137.405 60.3675\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.39, "data-ID": 296, "mols2grid-id": 58, "mols2grid-tooltip": "<strong>Name</strong>: 2,3-dimethylbutanol<br><strong>SMILES</strong>: CC(C)C(C)CO<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.39</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)CCCO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,78.2938 L 30.3291,64.991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.3291,64.991 L 30.3291,38.3721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.3291,64.991 L 59.1663,81.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.1663,81.6279 L 88.0034,64.991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.0034,64.991 L 116.841,81.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 116.841,81.6279 L 125.873,76.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 125.873,76.4163 L 134.906,71.2047' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 135.571 68.3517\\nQ 135.571 66.0891, 136.689 64.8247\\nQ 137.807 63.5603, 139.897 63.5603\\nQ 141.987 63.5603, 143.105 64.8247\\nQ 144.223 66.0891, 144.223 68.3517\\nQ 144.223 70.6409, 143.091 71.9452\\nQ 141.96 73.2362, 139.897 73.2362\\nQ 137.821 73.2362, 136.689 71.9452\\nQ 135.571 70.6542, 135.571 68.3517\\nM 139.897 72.1715\\nQ 141.334 72.1715, 142.106 71.2132\\nQ 142.892 70.2416, 142.892 68.3517\\nQ 142.892 66.5017, 142.106 65.57\\nQ 141.334 64.625, 139.897 64.625\\nQ 138.46 64.625, 137.674 65.5567\\nQ 136.902 66.4884, 136.902 68.3517\\nQ 136.902 70.2549, 137.674 71.2132\\nQ 138.46 72.1715, 139.897 72.1715\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 145.354 63.6668\\nL 146.632 63.6668\\nL 146.632 67.6729\\nL 151.45 67.6729\\nL 151.45 63.6668\\nL 152.727 63.6668\\nL 152.727 73.0898\\nL 151.45 73.0898\\nL 151.45 68.7377\\nL 146.632 68.7377\\nL 146.632 73.0898\\nL 145.354 73.0898\\nL 145.354 63.6668\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.14, "data-ID": 301, "mols2grid-id": 59, "mols2grid-tooltip": "<strong>Name</strong>: 4-methyl-1-pentanol<br><strong>SMILES</strong>: CC(C)CCCO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.14</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OC(C(C)(C)C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 50.3575,62.3721 L 60.5375,56.4985' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 60.5375,56.4985 L 70.7175,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,50.625 L 103.217,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 70.7175,50.625 L 70.7175,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.217,69.375 L 129.202,54.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 103.217,69.375 L 103.217,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 103.217,69.375 L 129.195,84.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 30.7975 60.3675\\nL 32.2375 60.3675\\nL 32.2375 64.8825\\nL 37.6675 64.8825\\nL 37.6675 60.3675\\nL 39.1075 60.3675\\nL 39.1075 70.9875\\nL 37.6675 70.9875\\nL 37.6675 66.0825\\nL 32.2375 66.0825\\nL 32.2375 70.9875\\nL 30.7975 70.9875\\nL 30.7975 60.3675\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 39.8575 65.6475\\nQ 39.8575 63.0975, 41.1175 61.6725\\nQ 42.3775 60.2475, 44.7325 60.2475\\nQ 47.0875 60.2475, 48.3475 61.6725\\nQ 49.6075 63.0975, 49.6075 65.6475\\nQ 49.6075 68.2275, 48.3325 69.6975\\nQ 47.0575 71.1525, 44.7325 71.1525\\nQ 42.3925 71.1525, 41.1175 69.6975\\nQ 39.8575 68.2425, 39.8575 65.6475\\nM 44.7325 69.9525\\nQ 46.3525 69.9525, 47.2225 68.8725\\nQ 48.1075 67.7775, 48.1075 65.6475\\nQ 48.1075 63.5625, 47.2225 62.5125\\nQ 46.3525 61.4475, 44.7325 61.4475\\nQ 43.1125 61.4475, 42.2275 62.4975\\nQ 41.3575 63.5475, 41.3575 65.6475\\nQ 41.3575 67.7925, 42.2275 68.8725\\nQ 43.1125 69.9525, 44.7325 69.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.62, "data-ID": 306, "mols2grid-id": 60, "mols2grid-tooltip": "<strong>Name</strong>: 3,3-dimethyl-2-butanol<br><strong>SMILES</strong>: OC(C(C)(C)C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.62</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OC(CCCCC)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.7955,72.2384 L 29.3539,67.8775' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 29.3539,67.8775 L 36.9123,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.9123,63.5165 L 61.0428,77.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 36.9123,63.5165 L 36.9123,41.2423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 61.0428,77.438 L 85.1732,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.1732,63.5165 L 109.304,77.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.304,77.438 L 133.434,63.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 133.434,63.5165 L 152.727,74.6481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 70.7501\\nL 8.34189 70.7501\\nL 8.34189 74.1024\\nL 12.3735 74.1024\\nL 12.3735 70.7501\\nL 13.4427 70.7501\\nL 13.4427 78.6352\\nL 12.3735 78.6352\\nL 12.3735 74.9934\\nL 8.34189 74.9934\\nL 8.34189 78.6352\\nL 7.27273 78.6352\\nL 7.27273 70.7501\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 13.9995 74.6704\\nQ 13.9995 72.7771, 14.9351 71.719\\nQ 15.8706 70.661, 17.6191 70.661\\nQ 19.3676 70.661, 20.3032 71.719\\nQ 21.2387 72.7771, 21.2387 74.6704\\nQ 21.2387 76.586, 20.292 77.6774\\nQ 19.3454 78.7577, 17.6191 78.7577\\nQ 15.8817 78.7577, 14.9351 77.6774\\nQ 13.9995 76.5971, 13.9995 74.6704\\nM 17.6191 77.8667\\nQ 18.8219 77.8667, 19.4679 77.0649\\nQ 20.125 76.2518, 20.125 74.6704\\nQ 20.125 73.1223, 19.4679 72.3427\\nQ 18.8219 71.552, 17.6191 71.552\\nQ 16.4163 71.552, 15.7592 72.3316\\nQ 15.1133 73.1112, 15.1133 74.6704\\nQ 15.1133 76.263, 15.7592 77.0649\\nQ 16.4163 77.8667, 17.6191 77.8667\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.55, "data-ID": 311, "mols2grid-id": 61, "mols2grid-tooltip": "<strong>Name</strong>: 2-heptanol<br><strong>SMILES</strong>: OC(CCCCC)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.55</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OCC(C)CC(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.684,48.7593 L 33.7457,43.531' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 33.7457,43.531 L 42.8074,38.3027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 42.8074,38.3027 L 71.7372,54.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 71.7372,54.9929 L 71.7372,81.6973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 71.7372,54.9929 L 100.667,38.3027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.667,38.3027 L 129.597,54.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 129.597,54.9929 L 152.727,41.6474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 129.597,54.9929 L 129.597,81.6973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 46.9749\\nL 8.55454 46.9749\\nL 8.55454 50.9939\\nL 13.388 50.9939\\nL 13.388 46.9749\\nL 14.6699 46.9749\\nL 14.6699 56.4283\\nL 13.388 56.4283\\nL 13.388 52.0621\\nL 8.55454 52.0621\\nL 8.55454 56.4283\\nL 7.27273 56.4283\\nL 7.27273 46.9749\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.3375 51.6749\\nQ 15.3375 49.405, 16.459 48.1366\\nQ 17.5806 46.8681, 19.6769 46.8681\\nQ 21.7732 46.8681, 22.8948 48.1366\\nQ 24.0164 49.405, 24.0164 51.6749\\nQ 24.0164 53.9715, 22.8815 55.28\\nQ 21.7465 56.5752, 19.6769 56.5752\\nQ 17.594 56.5752, 16.459 55.28\\nQ 15.3375 53.9848, 15.3375 51.6749\\nM 19.6769 55.507\\nQ 21.119 55.507, 21.8934 54.5456\\nQ 22.6812 53.5709, 22.6812 51.6749\\nQ 22.6812 49.8189, 21.8934 48.8843\\nQ 21.119 47.9363, 19.6769 47.9363\\nQ 18.2349 47.9363, 17.4471 48.8709\\nQ 16.6727 49.8056, 16.6727 51.6749\\nQ 16.6727 53.5843, 17.4471 54.5456\\nQ 18.2349 55.507, 19.6769 55.507\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.6, "data-ID": 316, "mols2grid-id": 62, "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethyl-1-pentanol<br><strong>SMILES</strong>: OCC(C)CC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)C(O)(C)CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,65.6175 L 47.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,50.625 L 47.5,20.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 47.5,50.625 L 80,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,69.375 L 90.1763,75.253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.1763,75.253 L 100.353,81.1309' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80,69.375 L 80,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-3 atom-6' d='M 80,69.375 L 112.5,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 112.5,50.625 L 138.485,65.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 101.102 84.41\\nQ 101.102 81.86, 102.362 80.435\\nQ 103.622 79.01, 105.977 79.01\\nQ 108.332 79.01, 109.592 80.435\\nQ 110.852 81.86, 110.852 84.41\\nQ 110.852 86.99, 109.577 88.46\\nQ 108.302 89.915, 105.977 89.915\\nQ 103.637 89.915, 102.362 88.46\\nQ 101.102 87.005, 101.102 84.41\\nM 105.977 88.715\\nQ 107.597 88.715, 108.467 87.635\\nQ 109.352 86.54, 109.352 84.41\\nQ 109.352 82.325, 108.467 81.275\\nQ 107.597 80.21, 105.977 80.21\\nQ 104.357 80.21, 103.472 81.26\\nQ 102.602 82.31, 102.602 84.41\\nQ 102.602 86.555, 103.472 87.635\\nQ 104.357 88.715, 105.977 88.715\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 112.127 79.13\\nL 113.567 79.13\\nL 113.567 83.645\\nL 118.997 83.645\\nL 118.997 79.13\\nL 120.438 79.13\\nL 120.438 89.75\\nL 118.997 89.75\\nL 118.997 84.845\\nL 113.567 84.845\\nL 113.567 89.75\\nL 112.127 89.75\\nL 112.127 79.13\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.22, "data-ID": 321, "mols2grid-id": 63, "mols2grid-tooltip": "<strong>Name</strong>: 2,4-dimethyl-3-pentanol<br><strong>SMILES</strong>: CC(C)C(O)(C)CC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.22</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(O)(C)C(C)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 70.7175,20.625 L 70.7175,50.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.7175,50.625 L 60.5375,56.4985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.5375,56.4985 L 50.3575,62.3721' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 70.7175,50.625 L 44.74,35.62' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 70.7175,50.625 L 103.217,69.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.217,69.375 L 129.202,54.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 103.217,69.375 L 103.217,99.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 103.217,69.375 L 129.195,84.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 30.7975 60.3675\\nL 32.2375 60.3675\\nL 32.2375 64.8825\\nL 37.6675 64.8825\\nL 37.6675 60.3675\\nL 39.1075 60.3675\\nL 39.1075 70.9875\\nL 37.6675 70.9875\\nL 37.6675 66.0825\\nL 32.2375 66.0825\\nL 32.2375 70.9875\\nL 30.7975 70.9875\\nL 30.7975 60.3675\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 39.8575 65.6475\\nQ 39.8575 63.0975, 41.1175 61.6725\\nQ 42.3775 60.2475, 44.7325 60.2475\\nQ 47.0875 60.2475, 48.3475 61.6725\\nQ 49.6075 63.0975, 49.6075 65.6475\\nQ 49.6075 68.2275, 48.3325 69.6975\\nQ 47.0575 71.1525, 44.7325 71.1525\\nQ 42.3925 71.1525, 41.1175 69.6975\\nQ 39.8575 68.2425, 39.8575 65.6475\\nM 44.7325 69.9525\\nQ 46.3525 69.9525, 47.2225 68.8725\\nQ 48.1075 67.7775, 48.1075 65.6475\\nQ 48.1075 63.5625, 47.2225 62.5125\\nQ 46.3525 61.4475, 44.7325 61.4475\\nQ 43.1125 61.4475, 42.2275 62.4975\\nQ 41.3575 63.5475, 41.3575 65.6475\\nQ 41.3575 67.7925, 42.2275 68.8725\\nQ 43.1125 69.9525, 44.7325 69.9525\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.72, "data-ID": 326, "mols2grid-id": 64, "mols2grid-tooltip": "<strong>Name</strong>: 2,3,3-trimethyl-2-butanol<br><strong>SMILES</strong>: CC(O)(C)C(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.72</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCC(C)(O)CCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,52.5003 L 28.0434,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.0434,40.5163 L 54.0217,55.5038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 54.0217,55.5038 L 54.0217,79.4837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 54.0217,55.5038 L 45.8865,60.2023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 45.8865,60.2023 L 37.7513,64.9009' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 54.0217,55.5038 L 80,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,40.5163 L 105.978,55.5038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.978,55.5038 L 131.957,40.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.957,40.5163 L 152.727,52.5003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 22.1163 63.3012\\nL 23.2674 63.3012\\nL 23.2674 66.9102\\nL 27.6077 66.9102\\nL 27.6077 63.3012\\nL 28.7588 63.3012\\nL 28.7588 71.7902\\nL 27.6077 71.7902\\nL 27.6077 67.8694\\nL 23.2674 67.8694\\nL 23.2674 71.7902\\nL 22.1163 71.7902\\nL 22.1163 63.3012\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 29.3583 67.5217\\nQ 29.3583 65.4834, 30.3654 64.3444\\nQ 31.3726 63.2053, 33.255 63.2053\\nQ 35.1375 63.2053, 36.1446 64.3444\\nQ 37.1518 65.4834, 37.1518 67.5217\\nQ 37.1518 69.584, 36.1326 70.759\\nQ 35.1135 71.922, 33.255 71.922\\nQ 31.3846 71.922, 30.3654 70.759\\nQ 29.3583 69.596, 29.3583 67.5217\\nM 33.255 70.9628\\nQ 34.55 70.9628, 35.2454 70.0996\\nQ 35.9528 69.2243, 35.9528 67.5217\\nQ 35.9528 65.8551, 35.2454 65.0158\\nQ 34.55 64.1645, 33.255 64.1645\\nQ 31.9601 64.1645, 31.2527 65.0038\\nQ 30.5573 65.8431, 30.5573 67.5217\\nQ 30.5573 69.2363, 31.2527 70.0996\\nQ 31.9601 70.9628, 33.255 70.9628\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.6, "data-ID": 331, "mols2grid-id": 65, "mols2grid-tooltip": "<strong>Name</strong>: 3-methyl-3-heptanol<br><strong>SMILES</strong>: CCC(C)(O)CCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OCCCCCCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.0026,60.662 L 20.5461,58.0406' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.5461,58.0406 L 25.0895,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.0895,55.4192 L 39.5947,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.5947,63.7875 L 54.0999,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 54.0999,55.4192 L 68.6051,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.6051,63.7875 L 83.1102,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 83.1102,55.4192 L 97.6143,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.6143,63.7875 L 112.119,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.119,55.4192 L 126.625,63.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 126.625,63.7875 L 141.13,55.4192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 141.13,55.4192 L 152.727,62.1105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 59.7674\\nL 7.91542 59.7674\\nL 7.91542 61.7825\\nL 10.3389 61.7825\\nL 10.3389 59.7674\\nL 10.9816 59.7674\\nL 10.9816 64.5072\\nL 10.3389 64.5072\\nL 10.3389 62.318\\nL 7.91542 62.318\\nL 7.91542 64.5072\\nL 7.27273 64.5072\\nL 7.27273 59.7674\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 11.3163 62.1239\\nQ 11.3163 60.9858, 11.8787 60.3498\\nQ 12.441 59.7138, 13.4921 59.7138\\nQ 14.5432 59.7138, 15.1055 60.3498\\nQ 15.6679 60.9858, 15.6679 62.1239\\nQ 15.6679 63.2754, 15.0988 63.9315\\nQ 14.5298 64.5808, 13.4921 64.5808\\nQ 12.4477 64.5808, 11.8787 63.9315\\nQ 11.3163 63.2821, 11.3163 62.1239\\nM 13.4921 64.0453\\nQ 14.2151 64.0453, 14.6034 63.5633\\nQ 14.9984 63.0745, 14.9984 62.1239\\nQ 14.9984 61.1933, 14.6034 60.7247\\nQ 14.2151 60.2494, 13.4921 60.2494\\nQ 12.7691 60.2494, 12.3741 60.718\\nQ 11.9858 61.1866, 11.9858 62.1239\\nQ 11.9858 63.0812, 12.3741 63.5633\\nQ 12.7691 64.0453, 13.4921 64.0453\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.63, "data-ID": 336, "mols2grid-id": 66, "mols2grid-tooltip": "<strong>Name</strong>: 1-decanol<br><strong>SMILES</strong>: OCCCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.63</span>", "style-Solubility": "color: red"}, {"data-SMILES": "OCc(ccc(c1)C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.703,103.051 L 133.72,91.275' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 133.72,91.275 L 133.737,79.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 133.737,79.4993 L 101.726,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.726,60.9308 L 101.726,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.3289,55.3831 L 94.3289,29.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-8' d='M 101.726,60.9308 L 69.6974,79.4228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.726,23.9466 L 69.6974,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.6974,5.45455 L 37.6692,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.5917,14.6342 L 46.1719,27.5786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.6692,23.9466 L 37.6692,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 37.6692,23.9466 L 12.0441,9.15296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-6' d='M 69.6974,79.4228 L 37.6692,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-6' d='M 68.5917,70.2432 L 46.1719,57.2988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.887 109.116\\nQ 128.887 106.601, 130.13 105.196\\nQ 131.372 103.79, 133.695 103.79\\nQ 136.017 103.79, 137.26 105.196\\nQ 138.503 106.601, 138.503 109.116\\nQ 138.503 111.661, 137.245 113.11\\nQ 135.988 114.545, 133.695 114.545\\nQ 131.387 114.545, 130.13 113.11\\nQ 128.887 111.675, 128.887 109.116\\nM 133.695 113.362\\nQ 135.293 113.362, 136.151 112.297\\nQ 137.023 111.217, 137.023 109.116\\nQ 137.023 107.06, 136.151 106.024\\nQ 135.293 104.974, 133.695 104.974\\nQ 132.097 104.974, 131.224 106.01\\nQ 130.366 107.045, 130.366 109.116\\nQ 130.366 111.232, 131.224 112.297\\nQ 132.097 113.362, 133.695 113.362\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 139.76 103.909\\nL 141.18 103.909\\nL 141.18 108.362\\nL 146.536 108.362\\nL 146.536 103.909\\nL 147.956 103.909\\nL 147.956 114.383\\nL 146.536 114.383\\nL 146.536 109.545\\nL 141.18 109.545\\nL 141.18 114.383\\nL 139.76 114.383\\nL 139.76 103.909\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.2, "data-ID": 341, "mols2grid-id": 67, "mols2grid-tooltip": "<strong>Name</strong>: p-methylbenzyl_alcohol<br><strong>SMILES</strong>: OCc(ccc(c1)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.2</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(c(O)ccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.611,90.4201 L 102.432,84.5438' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.432,84.5438 L 92.2537,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2537,78.6675 L 92.2537,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.7537,73.0425 L 84.7537,46.7925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 92.2537,78.6675 L 59.7788,97.4175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2537,41.1675 L 102.432,35.2912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.432,35.2912 L 112.611,29.4149' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 92.2537,41.1675 L 59.7788,22.4175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.7788,22.4175 L 27.3038,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.6576,31.7251 L 35.9251,44.8501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 27.3038,41.1675 L 27.3038,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 59.7788,97.4175 L 27.3038,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 58.6576,88.1099 L 35.9251,74.9849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 113.361 93.6975\\nQ 113.361 91.1475, 114.621 89.7225\\nQ 115.881 88.2975, 118.236 88.2975\\nQ 120.591 88.2975, 121.851 89.7225\\nQ 123.111 91.1475, 123.111 93.6975\\nQ 123.111 96.2775, 121.836 97.7475\\nQ 120.561 99.2025, 118.236 99.2025\\nQ 115.896 99.2025, 114.621 97.7475\\nQ 113.361 96.2925, 113.361 93.6975\\nM 118.236 98.0025\\nQ 119.856 98.0025, 120.726 96.9225\\nQ 121.611 95.8275, 121.611 93.6975\\nQ 121.611 91.6125, 120.726 90.5625\\nQ 119.856 89.4975, 118.236 89.4975\\nQ 116.616 89.4975, 115.731 90.5475\\nQ 114.861 91.5975, 114.861 93.6975\\nQ 114.861 95.8425, 115.731 96.9225\\nQ 116.616 98.0025, 118.236 98.0025\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 124.386 88.4175\\nL 125.826 88.4175\\nL 125.826 92.9325\\nL 131.256 92.9325\\nL 131.256 88.4175\\nL 132.696 88.4175\\nL 132.696 99.0375\\nL 131.256 99.0375\\nL 131.256 94.1325\\nL 125.826 94.1325\\nL 125.826 99.0375\\nL 124.386 99.0375\\nL 124.386 88.4175\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 113.361 26.1975\\nQ 113.361 23.6475, 114.621 22.2225\\nQ 115.881 20.7975, 118.236 20.7975\\nQ 120.591 20.7975, 121.851 22.2225\\nQ 123.111 23.6475, 123.111 26.1975\\nQ 123.111 28.7775, 121.836 30.2475\\nQ 120.561 31.7025, 118.236 31.7025\\nQ 115.896 31.7025, 114.621 30.2475\\nQ 113.361 28.7925, 113.361 26.1975\\nM 118.236 30.5025\\nQ 119.856 30.5025, 120.726 29.4225\\nQ 121.611 28.3275, 121.611 26.1975\\nQ 121.611 24.1125, 120.726 23.0625\\nQ 119.856 21.9975, 118.236 21.9975\\nQ 116.616 21.9975, 115.731 23.0475\\nQ 114.861 24.0975, 114.861 26.1975\\nQ 114.861 28.3425, 115.731 29.4225\\nQ 116.616 30.5025, 118.236 30.5025\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 124.386 20.9175\\nL 125.826 20.9175\\nL 125.826 25.4325\\nL 131.256 25.4325\\nL 131.256 20.9175\\nL 132.696 20.9175\\nL 132.696 31.5375\\nL 131.256 31.5375\\nL 131.256 26.6325\\nL 125.826 26.6325\\nL 125.826 31.5375\\nL 124.386 31.5375\\nL 124.386 20.9175\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 0.62, "data-ID": 346, "mols2grid-id": 68, "mols2grid-tooltip": "<strong>Name</strong>: 1,2-benzenediol<br><strong>SMILES</strong>: Oc(c(O)ccc1)c1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.62</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccc(C)cc1O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.872,60.9697 L 124.872,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.47,55.4182 L 117.47,29.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 92.8215,79.4747 L 124.872,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.872,23.9596 L 92.8215,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8215,5.45455 L 60.7708,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.715,14.6406 L 69.2795,27.5941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.7708,23.9596 L 35.1277,9.15555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 60.7708,23.9596 L 60.7708,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.7708,60.9697 L 92.8215,79.4747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.2795,57.3351 L 91.715,70.2887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.8215,79.4747 L 92.8215,91.2587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.8215,91.2587 L 92.8215,103.043' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 88.0102 109.112\\nQ 88.0102 106.596, 89.2538 105.189\\nQ 90.4973 103.783, 92.8215 103.783\\nQ 95.1458 103.783, 96.3893 105.189\\nQ 97.6328 106.596, 97.6328 109.112\\nQ 97.6328 111.659, 96.3745 113.109\\nQ 95.1161 114.545, 92.8215 114.545\\nQ 90.5121 114.545, 89.2538 113.109\\nQ 88.0102 111.673, 88.0102 109.112\\nM 92.8215 113.361\\nQ 94.4204 113.361, 95.279 112.295\\nQ 96.1524 111.215, 96.1524 109.112\\nQ 96.1524 107.055, 95.279 106.018\\nQ 94.4204 104.967, 92.8215 104.967\\nQ 91.2227 104.967, 90.3493 106.004\\nQ 89.4906 107.04, 89.4906 109.112\\nQ 89.4906 111.229, 90.3493 112.295\\nQ 91.2227 113.361, 92.8215 113.361\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 98.8912 103.901\\nL 100.312 103.901\\nL 100.312 108.357\\nL 105.671 108.357\\nL 105.671 103.901\\nL 107.093 103.901\\nL 107.093 114.383\\nL 105.671 114.383\\nL 105.671 109.542\\nL 100.312 109.542\\nL 100.312 114.383\\nL 98.8912 114.383\\nL 98.8912 103.901\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.68, "data-ID": 351, "mols2grid-id": 69, "mols2grid-tooltip": "<strong>Name</strong>: m-cresol<br><strong>SMILES</strong>: c1ccc(C)cc1O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.68</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(c(ccc1C)C(C)C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.627,103.471 L 105.717,97.7499' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.717,97.7499 L 95.8068,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8068,92.0286 L 95.8068,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.5046,86.5519 L 88.5046,60.9943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 95.8068,92.0286 L 64.1883,110.284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.8068,55.5177 L 64.1883,37.2622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 95.8068,55.5177 L 127.406,37.1868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1883,37.2622 L 32.5699,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.0968,46.3244 L 40.9638,59.1032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.5699,55.5177 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 32.5699,92.0286 L 7.27273,106.633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 64.1883,110.284 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 63.0968,101.222 L 40.9638,88.4431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.406,37.1868 L 127.364,7.97806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 127.406,37.1868 L 152.727,51.7473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.358 106.662\\nQ 116.358 104.179, 117.584 102.792\\nQ 118.811 101.405, 121.104 101.405\\nQ 123.397 101.405, 124.624 102.792\\nQ 125.85 104.179, 125.85 106.662\\nQ 125.85 109.174, 124.609 110.605\\nQ 123.368 112.022, 121.104 112.022\\nQ 118.826 112.022, 117.584 110.605\\nQ 116.358 109.189, 116.358 106.662\\nM 121.104 110.854\\nQ 122.681 110.854, 123.528 109.802\\nQ 124.39 108.736, 124.39 106.662\\nQ 124.39 104.632, 123.528 103.61\\nQ 122.681 102.573, 121.104 102.573\\nQ 119.527 102.573, 118.665 103.595\\nQ 117.818 104.618, 117.818 106.662\\nQ 117.818 108.751, 118.665 109.802\\nQ 119.527 110.854, 121.104 110.854\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 127.092 101.521\\nL 128.494 101.521\\nL 128.494 105.917\\nL 133.781 105.917\\nL 133.781 101.521\\nL 135.183 101.521\\nL 135.183 111.861\\nL 133.781 111.861\\nL 133.781 107.086\\nL 128.494 107.086\\nL 128.494 111.861\\nL 127.092 111.861\\nL 127.092 101.521\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.22, "data-ID": 356, "mols2grid-id": 70, "mols2grid-tooltip": "<strong>Name</strong>: thymol<br><strong>SMILES</strong>: Oc(c(ccc1C)C(C)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.22</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(ccc(c1ccc2)c2)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.0113,34.6204 L 32.7025,39.6726' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.7025,39.6726 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,44.7248 L 41.3938,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.8119,49.5294 L 47.8119,71.951' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 41.3938,44.7248 L 69.5202,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 41.3938,76.7557 L 69.5202,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.5202,92.7732 L 97.2552,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.4707,84.8127 L 89.8852,73.6004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.2552,76.7557 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 97.2552,76.7557 L 124.99,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.2552,44.7248 L 124.99,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 69.5202,28.7072 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 70.4707,36.6677 L 89.8852,47.88' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.99,28.7072 L 152.727,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 125.941,36.6678 L 145.357,47.8801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,44.7248 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 124.99,92.7732 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 125.941,84.8126 L 145.357,73.6003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 27.3295\\nL 8.50501 27.3295\\nL 8.50501 31.1932\\nL 13.1518 31.1932\\nL 13.1518 27.3295\\nL 14.384 27.3295\\nL 14.384 36.4176\\nL 13.1518 36.4176\\nL 13.1518 32.2201\\nL 8.50501 32.2201\\nL 8.50501 36.4176\\nL 7.27273 36.4176\\nL 7.27273 27.3295\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.0259 31.8479\\nQ 15.0259 29.6657, 16.1041 28.4462\\nQ 17.1824 27.2268, 19.1977 27.2268\\nQ 21.213 27.2268, 22.2912 28.4462\\nQ 23.3694 29.6657, 23.3694 31.8479\\nQ 23.3694 34.0557, 22.2784 35.3137\\nQ 21.1873 36.5588, 19.1977 36.5588\\nQ 17.1952 36.5588, 16.1041 35.3137\\nQ 15.0259 34.0685, 15.0259 31.8479\\nM 19.1977 35.5319\\nQ 20.584 35.5319, 21.3285 34.6077\\nQ 22.0858 33.6706, 22.0858 31.8479\\nQ 22.0858 30.0636, 21.3285 29.1651\\nQ 20.584 28.2537, 19.1977 28.2537\\nQ 17.8113 28.2537, 17.054 29.1522\\nQ 16.3095 30.0508, 16.3095 31.8479\\nQ 16.3095 33.6834, 17.054 34.6077\\nQ 17.8113 35.5319, 19.1977 35.5319\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.28, "data-ID": 361, "mols2grid-id": 71, "mols2grid-tooltip": "<strong>Name</strong>: 2-naphthol<br><strong>SMILES</strong>: Oc(ccc(c1ccc2)c2)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.28</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCC=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 19.0775,64.7288 L 45.0625,49.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 45.0625,49.7362 L 77.5625,68.4862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.5625,68.4862 L 110.062,49.7362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 108.188,52.9844 L 118.368,58.8579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 118.368,58.8579 L 128.548,64.7314' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 111.937,46.4881 L 122.117,52.3616' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 122.117,52.3616 L 132.297,58.2352' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 131.172 64.7588\\nQ 131.172 62.2088, 132.432 60.7838\\nQ 133.692 59.3588, 136.047 59.3588\\nQ 138.402 59.3588, 139.662 60.7838\\nQ 140.922 62.2088, 140.922 64.7588\\nQ 140.922 67.3388, 139.647 68.8088\\nQ 138.372 70.2638, 136.047 70.2638\\nQ 133.707 70.2638, 132.432 68.8088\\nQ 131.172 67.3538, 131.172 64.7588\\nM 136.047 69.0638\\nQ 137.667 69.0638, 138.537 67.9838\\nQ 139.422 66.8888, 139.422 64.7588\\nQ 139.422 62.6738, 138.537 61.6238\\nQ 137.667 60.5588, 136.047 60.5588\\nQ 134.427 60.5588, 133.542 61.6088\\nQ 132.672 62.6588, 132.672 64.7588\\nQ 132.672 66.9038, 133.542 67.9838\\nQ 134.427 69.0638, 136.047 69.0638\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.01, "data-ID": 366, "mols2grid-id": 72, "mols2grid-tooltip": "<strong>Name</strong>: butanal<br><strong>SMILES</strong>: CCCC=O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.01</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=CCCCCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.6026,62.4204 L 18.8102,59.4158' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.8102,59.4158 L 24.0177,56.4112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 11.6853,59.0972 L 16.8928,56.0926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8928,56.0926 L 22.1004,53.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,54.7496 L 39.6843,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.6843,64.3411 L 56.3096,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 56.3096,54.7496 L 72.9349,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.9349,64.3411 L 89.5602,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.5602,54.7496 L 106.184,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 106.184,64.3411 L 122.809,54.7496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.809,54.7496 L 139.435,64.3411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 139.435,64.3411 L 152.727,56.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 62.4343\\nQ 7.27273 61.1299, 7.91728 60.4009\\nQ 8.56183 59.672, 9.76652 59.672\\nQ 10.9712 59.672, 11.6158 60.4009\\nQ 12.2603 61.1299, 12.2603 62.4343\\nQ 12.2603 63.7541, 11.6081 64.5061\\nQ 10.9559 65.2504, 9.76652 65.2504\\nQ 8.5695 65.2504, 7.91728 64.5061\\nQ 7.27273 63.7618, 7.27273 62.4343\\nM 9.76652 64.6365\\nQ 10.5952 64.6365, 11.0403 64.0841\\nQ 11.493 63.5239, 11.493 62.4343\\nQ 11.493 61.3677, 11.0403 60.8306\\nQ 10.5952 60.2858, 9.76652 60.2858\\nQ 8.93781 60.2858, 8.48509 60.823\\nQ 8.04005 61.3601, 8.04005 62.4343\\nQ 8.04005 63.5316, 8.48509 64.0841\\nQ 8.93781 64.6365, 9.76652 64.6365\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.17, "data-ID": 371, "mols2grid-id": 73, "mols2grid-tooltip": "<strong>Name</strong>: nonanal<br><strong>SMILES</strong>: O=CCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.17</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=CC(OC=C1)=C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.546,105.415 L 110.831,95.8256' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 110.831,95.8256 L 115.117,86.2357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.371,102.656 L 104.657,93.0663' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.657,93.0663 L 108.942,83.4765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.029,84.8561 L 92.2342,57.4909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2342,57.4909 L 96.5104,44.3291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.5104,44.3291 L 100.787,31.1673' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2342,54.1095 L 58.4194,60.8724' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2342,60.8724 L 58.4194,54.1095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.4417,21.5227 L 86.3842,13.4886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.3842,13.4886 L 75.3268,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3392,2.71892 L 49.9583,28.0665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 77.3144,8.19017 L 45.983,22.5952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 58.4194,57.4909 L 47.9707,25.3309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 96.5963 109.581\\nQ 96.5963 107.282, 97.7325 105.997\\nQ 98.8686 104.712, 100.992 104.712\\nQ 103.116 104.712, 104.252 105.997\\nQ 105.388 107.282, 105.388 109.581\\nQ 105.388 111.908, 104.238 113.233\\nQ 103.089 114.545, 100.992 114.545\\nQ 98.8822 114.545, 97.7325 113.233\\nQ 96.5963 111.921, 96.5963 109.581\\nM 100.992 113.463\\nQ 102.453 113.463, 103.237 112.49\\nQ 104.036 111.502, 104.036 109.581\\nQ 104.036 107.701, 103.237 106.755\\nQ 102.453 105.794, 100.992 105.794\\nQ 99.5314 105.794, 98.7334 106.741\\nQ 97.9489 107.688, 97.9489 109.581\\nQ 97.9489 111.516, 98.7334 112.49\\nQ 99.5314 113.463, 100.992 113.463\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 98.287 25.3579\\nQ 98.287 23.0585, 99.4232 21.7735\\nQ 100.559 20.4886, 102.683 20.4886\\nQ 104.807 20.4886, 105.943 21.7735\\nQ 107.079 23.0585, 107.079 25.3579\\nQ 107.079 27.6844, 105.929 29.0099\\nQ 104.779 30.3219, 102.683 30.3219\\nQ 100.573 30.3219, 99.4232 29.0099\\nQ 98.287 27.6979, 98.287 25.3579\\nM 102.683 29.2398\\nQ 104.144 29.2398, 104.928 28.266\\nQ 105.726 27.2786, 105.726 25.3579\\nQ 105.726 23.4778, 104.928 22.531\\nQ 104.144 21.5707, 102.683 21.5707\\nQ 101.222 21.5707, 100.424 22.5175\\nQ 99.6396 23.4643, 99.6396 25.3579\\nQ 99.6396 27.2921, 100.424 28.266\\nQ 101.222 29.2398, 102.683 29.2398\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.1, "data-ID": 376, "mols2grid-id": 74, "mols2grid-tooltip": "<strong>Name</strong>: furfural<br><strong>SMILES</strong>: O=CC(OC=C1)=C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.1</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(CCCC1)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.279,86.3625 L 109.1,80.4862' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.1,80.4862 L 98.9212,74.6099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.529,92.8577 L 105.35,86.9814' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.35,86.9814 L 95.1713,81.1051' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 97.0463,77.8575 L 97.0463,40.3575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 97.0463,77.8575 L 64.5713,96.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.0463,40.3575 L 64.5713,21.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.5713,21.6075 L 32.0963,40.3575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.0963,40.3575 L 32.0963,77.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 64.5713,96.6075 L 32.0963,77.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.154 92.8875\\nQ 118.154 90.3375, 119.414 88.9125\\nQ 120.674 87.4875, 123.029 87.4875\\nQ 125.384 87.4875, 126.644 88.9125\\nQ 127.904 90.3375, 127.904 92.8875\\nQ 127.904 95.4675, 126.629 96.9375\\nQ 125.354 98.3925, 123.029 98.3925\\nQ 120.689 98.3925, 119.414 96.9375\\nQ 118.154 95.4825, 118.154 92.8875\\nM 123.029 97.1925\\nQ 124.649 97.1925, 125.519 96.1125\\nQ 126.404 95.0175, 126.404 92.8875\\nQ 126.404 90.8025, 125.519 89.7525\\nQ 124.649 88.6875, 123.029 88.6875\\nQ 121.409 88.6875, 120.524 89.7375\\nQ 119.654 90.7875, 119.654 92.8875\\nQ 119.654 95.0325, 120.524 96.1125\\nQ 121.409 97.1925, 123.029 97.1925\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.6, "data-ID": 381, "mols2grid-id": 75, "mols2grid-tooltip": "<strong>Name</strong>: cyclohexanone<br><strong>SMILES</strong>: O=C(CCCC1)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(CCCCCCC)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.4194,71.396 L 20.299,68.0037' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.299,68.0037 L 26.1785,64.6114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 12.2547,67.6441 L 18.1342,64.2518' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.1342,64.2518 L 24.0137,60.8595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.0961,62.7354 L 43.8667,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 25.0961,62.7354 L 25.0961,45.4088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.8667,73.5646 L 62.6372,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.6372,62.7354 L 81.4078,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.4078,73.5646 L 100.178,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.178,62.7354 L 118.947,73.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 118.947,73.5646 L 137.718,62.7354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 137.718,62.7354 L 152.727,71.3945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 71.4118\\nQ 7.27273 69.939, 8.00045 69.116\\nQ 8.72817 68.293, 10.0883 68.293\\nQ 11.4485 68.293, 12.1762 69.116\\nQ 12.9039 69.939, 12.9039 71.4118\\nQ 12.9039 72.9019, 12.1675 73.7509\\nQ 11.4311 74.5912, 10.0883 74.5912\\nQ 8.73683 74.5912, 8.00045 73.7509\\nQ 7.27273 72.9105, 7.27273 71.4118\\nM 10.0883 73.8982\\nQ 11.024 73.8982, 11.5264 73.2744\\nQ 12.0376 72.642, 12.0376 71.4118\\nQ 12.0376 70.2076, 11.5264 69.6011\\nQ 11.024 68.986, 10.0883 68.986\\nQ 9.15267 68.986, 8.64153 69.5925\\nQ 8.13906 70.1989, 8.13906 71.4118\\nQ 8.13906 72.6506, 8.64153 73.2744\\nQ 9.15267 73.8982, 10.0883 73.8982\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.58, "data-ID": 386, "mols2grid-id": 76, "mols2grid-tooltip": "<strong>Name</strong>: 2-nonanone<br><strong>SMILES</strong>: O=C(CCCCCCC)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.58</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C1(=O)C=CC(=O)C=C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 110.6,81.9151 L 120.779,87.7914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.779,87.7914 L 130.958,93.6677' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.35,75.4199 L 124.529,81.2962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.529,81.2962 L 134.707,87.1725' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 112.475,78.6675 L 112.475,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,97.4175 L 112.475,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.35,37.9199 L 78.125,25.6651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.6,44.4151 L 81.875,19.1699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,22.4175 L 47.525,41.1675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3999,37.9199 L 39.2212,32.0436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 39.2212,32.0436 L 29.0424,26.1673' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.6501,44.4151 L 35.4714,38.5388' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 35.4714,38.5388 L 25.2926,32.6625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 47.525,41.1675 L 47.525,78.6675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 45.65,81.9151 L 81.875,94.1699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.4,75.4199 L 78.125,100.665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 133.582 93.6975\\nQ 133.582 91.1475, 134.842 89.7225\\nQ 136.102 88.2975, 138.457 88.2975\\nQ 140.812 88.2975, 142.072 89.7225\\nQ 143.332 91.1475, 143.332 93.6975\\nQ 143.332 96.2775, 142.057 97.7475\\nQ 140.782 99.2025, 138.457 99.2025\\nQ 136.117 99.2025, 134.842 97.7475\\nQ 133.582 96.2925, 133.582 93.6975\\nM 138.457 98.0025\\nQ 140.077 98.0025, 140.947 96.9225\\nQ 141.832 95.8275, 141.832 93.6975\\nQ 141.832 91.6125, 140.947 90.5625\\nQ 140.077 89.4975, 138.457 89.4975\\nQ 136.837 89.4975, 135.952 90.5475\\nQ 135.082 91.5975, 135.082 93.6975\\nQ 135.082 95.8425, 135.952 96.9225\\nQ 136.837 98.0025, 138.457 98.0025\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 16.6675 26.1975\\nQ 16.6675 23.6475, 17.9275 22.2225\\nQ 19.1875 20.7975, 21.5425 20.7975\\nQ 23.8975 20.7975, 25.1575 22.2225\\nQ 26.4175 23.6475, 26.4175 26.1975\\nQ 26.4175 28.7775, 25.1425 30.2475\\nQ 23.8675 31.7025, 21.5425 31.7025\\nQ 19.2025 31.7025, 17.9275 30.2475\\nQ 16.6675 28.7925, 16.6675 26.1975\\nM 21.5425 30.5025\\nQ 23.1625 30.5025, 24.0325 29.4225\\nQ 24.9175 28.3275, 24.9175 26.1975\\nQ 24.9175 24.1125, 24.0325 23.0625\\nQ 23.1625 21.9975, 21.5425 21.9975\\nQ 19.9225 21.9975, 19.0375 23.0475\\nQ 18.1675 24.0975, 18.1675 26.1975\\nQ 18.1675 28.3425, 19.0375 29.4225\\nQ 19.9225 30.5025, 21.5425 30.5025\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.99, "data-ID": 391, "mols2grid-id": 77, "mols2grid-tooltip": "<strong>Name</strong>: 2,5-cyclohexadiene-1,4-dione<br><strong>SMILES</strong>: C1(=O)C=CC(=O)C=C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.99</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(c(cccc1)c1)c(cccc2)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 109.678,40.407 L 103.753,43.8147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.753,43.8147 L 97.8272,47.2224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.853,44.1877 L 105.927,47.5954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.927,47.5954 L 100.001,51.0031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.9143,49.1127 L 80.04,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-8' d='M 98.9143,49.1127 L 98.8823,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.04,38.1644 L 80.04,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 75.6787,34.8934 L 75.6787,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 80.04,38.1644 L 61.1555,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.04,16.3578 L 61.1555,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.1555,5.45455 L 42.271,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.5035,10.867 L 47.2844,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 42.271,16.3578 L 42.271,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 61.1555,49.0676 L 42.271,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 60.5035,43.6552 L 47.2844,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 98.8823,70.9309 L 117.729,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 99.5153,76.3457 L 112.708,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-8 atom-13' d='M 98.8823,70.9309 L 79.96,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 117.729,81.901 L 117.655,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 117.655,103.708 L 98.7311,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 112.649,101.549 L 99.4022,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 98.7311,114.545 L 79.8844,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-12' d='M 79.96,81.7702 L 79.8844,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-12' d='M 84.31,85.0563 L 84.257,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 111.202 40.4337\\nQ 111.202 38.9509, 111.934 38.1222\\nQ 112.667 37.2936, 114.036 37.2936\\nQ 115.406 37.2936, 116.139 38.1222\\nQ 116.871 38.9509, 116.871 40.4337\\nQ 116.871 41.934, 116.13 42.7888\\nQ 115.388 43.6349, 114.036 43.6349\\nQ 112.676 43.6349, 111.934 42.7888\\nQ 111.202 41.9427, 111.202 40.4337\\nM 114.036 42.9371\\nQ 114.978 42.9371, 115.484 42.3091\\nQ 115.999 41.6723, 115.999 40.4337\\nQ 115.999 39.2213, 115.484 38.6107\\nQ 114.978 37.9914, 114.036 37.9914\\nQ 113.094 37.9914, 112.58 38.602\\nQ 112.074 39.2125, 112.074 40.4337\\nQ 112.074 41.681, 112.58 42.3091\\nQ 113.094 42.9371, 114.036 42.9371\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.12, "data-ID": 396, "mols2grid-id": 78, "mols2grid-tooltip": "<strong>Name</strong>: benzophenone<br><strong>SMILES</strong>: O=C(c(cccc1)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.12</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)CCC(=O)O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.577,65.0589 L 27.8769,59.6932' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.8769,59.6932 L 37.1768,54.3275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.1529,59.1243 L 24.4528,53.7586' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 24.4528,53.7586 L 33.7527,48.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,51.3602 L 35.4647,40.5278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,40.5278 L 35.4647,29.6954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.4647,51.3602 L 65.1549,68.4891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,68.4891 L 94.8451,51.3602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 94.8451,51.3602 L 124.535,68.4891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 126.247,71.4564 L 135.547,66.0907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 135.547,66.0907 L 144.847,60.725' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 122.823,65.5218 L 132.123,60.1561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 132.123,60.1561 L 141.423,54.7903' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 124.535,68.4891 L 124.535,79.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 124.535,79.3968 L 124.535,90.3046' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 65.0839\\nQ 7.27273 62.7543, 8.42379 61.4525\\nQ 9.57486 60.1507, 11.7263 60.1507\\nQ 13.8777 60.1507, 15.0287 61.4525\\nQ 16.1798 62.7543, 16.1798 65.0839\\nQ 16.1798 67.4408, 15.015 68.7837\\nQ 13.8502 70.1129, 11.7263 70.1129\\nQ 9.58856 70.1129, 8.42379 68.7837\\nQ 7.27273 67.4545, 7.27273 65.0839\\nM 11.7263 69.0167\\nQ 13.2062 69.0167, 14.001 68.0301\\nQ 14.8095 67.0297, 14.8095 65.0839\\nQ 14.8095 63.1791, 14.001 62.2199\\nQ 13.2062 61.247, 11.7263 61.247\\nQ 10.2463 61.247, 9.43783 62.2062\\nQ 8.64304 63.1654, 8.64304 65.0839\\nQ 8.64304 67.0434, 9.43783 68.0301\\nQ 10.2463 69.0167, 11.7263 69.0167\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 31.0112 23.9812\\nQ 31.0112 21.6517, 32.1622 20.3499\\nQ 33.3133 19.0481, 35.4647 19.0481\\nQ 37.6161 19.0481, 38.7672 20.3499\\nQ 39.9182 21.6517, 39.9182 23.9812\\nQ 39.9182 26.3382, 38.7535 27.6811\\nQ 37.5887 29.0103, 35.4647 29.0103\\nQ 33.327 29.0103, 32.1622 27.6811\\nQ 31.0112 26.3519, 31.0112 23.9812\\nM 35.4647 27.914\\nQ 36.9447 27.914, 37.7394 26.9274\\nQ 38.5479 25.9271, 38.5479 23.9812\\nQ 38.5479 22.0765, 37.7394 21.1173\\nQ 36.9447 20.1443, 35.4647 20.1443\\nQ 33.9848 20.1443, 33.1763 21.1036\\nQ 32.3815 22.0628, 32.3815 23.9812\\nQ 32.3815 25.9408, 33.1763 26.9274\\nQ 33.9848 27.914, 35.4647 27.914\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 41.083 19.1577\\nL 42.3985 19.1577\\nL 42.3985 23.2824\\nL 47.3591 23.2824\\nL 47.3591 19.1577\\nL 48.6746 19.1577\\nL 48.6746 28.8596\\nL 47.3591 28.8596\\nL 47.3591 24.3786\\nL 42.3985 24.3786\\nL 42.3985 28.8596\\nL 41.083 28.8596\\nL 41.083 19.1577\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 143.82 54.8202\\nQ 143.82 52.4907, 144.971 51.1889\\nQ 146.122 49.8871, 148.274 49.8871\\nQ 150.425 49.8871, 151.576 51.1889\\nQ 152.727 52.4907, 152.727 54.8202\\nQ 152.727 57.1771, 151.563 58.5201\\nQ 150.398 59.8493, 148.274 59.8493\\nQ 146.136 59.8493, 144.971 58.5201\\nQ 143.82 57.1909, 143.82 54.8202\\nM 148.274 58.753\\nQ 149.754 58.753, 150.548 57.7664\\nQ 151.357 56.7661, 151.357 54.8202\\nQ 151.357 52.9155, 150.548 51.9562\\nQ 149.754 50.9833, 148.274 50.9833\\nQ 146.794 50.9833, 145.985 51.9425\\nQ 145.191 52.9018, 145.191 54.8202\\nQ 145.191 56.7798, 145.985 57.7664\\nQ 146.794 58.753, 148.274 58.753\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 120.082 95.9229\\nQ 120.082 93.5933, 121.233 92.2915\\nQ 122.384 90.9897, 124.535 90.9897\\nQ 126.687 90.9897, 127.838 92.2915\\nQ 128.989 93.5933, 128.989 95.9229\\nQ 128.989 98.2798, 127.824 99.6227\\nQ 126.659 100.952, 124.535 100.952\\nQ 122.398 100.952, 121.233 99.6227\\nQ 120.082 98.2935, 120.082 95.9229\\nM 124.535 99.8557\\nQ 126.015 99.8557, 126.81 98.869\\nQ 127.619 97.8687, 127.619 95.9229\\nQ 127.619 94.0181, 126.81 93.0589\\nQ 126.015 92.086, 124.535 92.086\\nQ 123.055 92.086, 122.247 93.0452\\nQ 121.452 94.0044, 121.452 95.9229\\nQ 121.452 97.8824, 122.247 98.869\\nQ 123.055 99.8557, 124.535 99.8557\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 130.154 91.0993\\nL 131.469 91.0993\\nL 131.469 95.224\\nL 136.43 95.224\\nL 136.43 91.0993\\nL 137.745 91.0993\\nL 137.745 100.801\\nL 136.43 100.801\\nL 136.43 96.3202\\nL 131.469 96.3202\\nL 131.469 100.801\\nL 130.154 100.801\\nL 130.154 91.0993\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.2, "data-ID": 401, "mols2grid-id": 79, "mols2grid-tooltip": "<strong>Name</strong>: succinic_acid<br><strong>SMILES</strong>: O=C(O)CCC(=O)O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.2</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCCCCCCC(=O)O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,70.2896 L 19.2018,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.2018,63.4069 L 34.1217,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 34.1217,72.0146 L 49.0417,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.0417,63.4069 L 63.9616,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.9616,72.0146 L 78.8816,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.8816,63.4069 L 93.8004,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.8004,72.0146 L 108.72,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 108.72,63.4069 L 123.64,72.0146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 123.64,72.0146 L 138.56,63.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 137.7,64.898 L 142.373,67.5944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 142.373,67.5944 L 147.047,70.2908' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 139.421,61.9158 L 144.094,64.6122' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 144.094,64.6122 L 148.767,67.3086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 138.56,63.4069 L 138.56,57.9634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 138.56,57.9634 L 138.56,52.5199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 148.251 70.3034\\nQ 148.251 69.1327, 148.83 68.4785\\nQ 149.408 67.8244, 150.489 67.8244\\nQ 151.57 67.8244, 152.149 68.4785\\nQ 152.727 69.1327, 152.727 70.3034\\nQ 152.727 71.4878, 152.142 72.1626\\nQ 151.557 72.8306, 150.489 72.8306\\nQ 149.415 72.8306, 148.83 72.1626\\nQ 148.251 71.4947, 148.251 70.3034\\nM 150.489 72.2797\\nQ 151.233 72.2797, 151.632 71.7839\\nQ 152.039 71.2812, 152.039 70.3034\\nQ 152.039 69.3462, 151.632 68.8642\\nQ 151.233 68.3753, 150.489 68.3753\\nQ 149.746 68.3753, 149.339 68.8573\\nQ 148.94 69.3393, 148.94 70.3034\\nQ 148.94 71.2881, 149.339 71.7839\\nQ 149.746 72.2797, 150.489 72.2797\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 136.322 49.6484\\nQ 136.322 48.4778, 136.901 47.8236\\nQ 137.479 47.1694, 138.56 47.1694\\nQ 139.641 47.1694, 140.22 47.8236\\nQ 140.798 48.4778, 140.798 49.6484\\nQ 140.798 50.8328, 140.213 51.5077\\nQ 139.628 52.1756, 138.56 52.1756\\nQ 137.486 52.1756, 136.901 51.5077\\nQ 136.322 50.8397, 136.322 49.6484\\nM 138.56 51.6247\\nQ 139.304 51.6247, 139.703 51.1289\\nQ 140.11 50.6263, 140.11 49.6484\\nQ 140.11 48.6913, 139.703 48.2092\\nQ 139.304 47.7203, 138.56 47.7203\\nQ 137.817 47.7203, 137.41 48.2023\\nQ 137.011 48.6844, 137.011 49.6484\\nQ 137.011 50.6331, 137.41 51.1289\\nQ 137.817 51.6247, 138.56 51.6247\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 141.384 47.2245\\nL 142.045 47.2245\\nL 142.045 49.2972\\nL 144.537 49.2972\\nL 144.537 47.2245\\nL 145.198 47.2245\\nL 145.198 52.0999\\nL 144.537 52.0999\\nL 144.537 49.8481\\nL 142.045 49.8481\\nL 142.045 52.0999\\nL 141.384 52.0999\\nL 141.384 47.2245\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.44, "data-ID": 406, "mols2grid-id": 80, "mols2grid-tooltip": "<strong>Name</strong>: caprinic_acid<br><strong>SMILES</strong>: CCCCCCCCCC(=O)O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.44</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)c(cccc1C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.105,98.7541 L 120.12,88.1549' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.12,88.1549 L 120.135,77.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.447,98.7446 L 113.462,88.1454' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.462,88.1454 L 113.477,77.5463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.806,77.551 L 125.852,72.349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.852,72.349 L 134.898,67.147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 116.806,77.551 L 87.9938,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.9938,60.8378 L 87.9938,27.5489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.336,55.8444 L 81.336,32.5422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 87.9938,60.8378 L 59.1656,77.4822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.9938,27.5489 L 59.1656,10.9045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1656,10.9045 L 30.3375,27.5489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.1704,19.1669 L 37.9906,30.818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.3375,27.5489 L 30.3375,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.3375,60.8378 L 7.27273,74.1533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 59.1656,77.4822 L 30.3375,60.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 58.1704,69.2198 L 37.9906,57.5687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 112.441 104.209\\nQ 112.441 101.945, 113.56 100.68\\nQ 114.678 99.4151, 116.769 99.4151\\nQ 118.859 99.4151, 119.978 100.68\\nQ 121.096 101.945, 121.096 104.209\\nQ 121.096 106.499, 119.964 107.804\\nQ 118.833 109.096, 116.769 109.096\\nQ 114.691 109.096, 113.56 107.804\\nQ 112.441 106.512, 112.441 104.209\\nM 116.769 108.03\\nQ 118.207 108.03, 118.979 107.072\\nQ 119.765 106.1, 119.765 104.209\\nQ 119.765 102.358, 118.979 101.426\\nQ 118.207 100.48, 116.769 100.48\\nQ 115.331 100.48, 114.545 101.412\\nQ 113.773 102.345, 113.773 104.209\\nQ 113.773 106.113, 114.545 107.072\\nQ 115.331 108.03, 116.769 108.03\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.564 64.302\\nQ 135.564 62.0384, 136.682 60.7734\\nQ 137.801 59.5084, 139.891 59.5084\\nQ 141.982 59.5084, 143.1 60.7734\\nQ 144.219 62.0384, 144.219 64.302\\nQ 144.219 66.5923, 143.087 67.8972\\nQ 141.955 69.1888, 139.891 69.1888\\nQ 137.814 69.1888, 136.682 67.8972\\nQ 135.564 66.6056, 135.564 64.302\\nM 139.891 68.1236\\nQ 141.329 68.1236, 142.101 67.1649\\nQ 142.887 66.1928, 142.887 64.302\\nQ 142.887 62.4512, 142.101 61.5191\\nQ 141.329 60.5737, 139.891 60.5737\\nQ 138.453 60.5737, 137.667 61.5058\\nQ 136.895 62.4379, 136.895 64.302\\nQ 136.895 66.2062, 137.667 67.1649\\nQ 138.453 68.1236, 139.891 68.1236\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.35 59.615\\nL 146.629 59.615\\nL 146.629 63.6229\\nL 151.449 63.6229\\nL 151.449 59.615\\nL 152.727 59.615\\nL 152.727 69.0424\\nL 151.449 69.0424\\nL 151.449 64.6882\\nL 146.629 64.6882\\nL 146.629 69.0424\\nL 145.35 69.0424\\nL 145.35 59.615\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.14, "data-ID": 411, "mols2grid-id": 81, "mols2grid-tooltip": "<strong>Name</strong>: m-toluic_acid<br><strong>SMILES</strong>: O=C(O)c(cccc1C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.14</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)C=Cc(cccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.615,106.934 L 111.626,99.1321' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.626,99.1321 L 111.637,91.3305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.715,106.927 L 106.726,99.1251' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.726,99.1251 L 106.737,91.3236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.187,91.327 L 115.846,87.498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.846,87.498 L 122.505,83.6689' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.187,91.327 L 87.9812,79.0252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.4315,79.0288 L 85.5669,54.5063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.531,79.0217 L 90.4674,54.5134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.0172,54.5098 L 66.8096,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8096,42.208 L 66.8096,17.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.9091,38.5327 L 61.9091,21.3811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 66.8096,42.208 L 45.5906,54.4592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.8096,17.7057 L 45.5906,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 45.5906,5.45455 L 24.3715,17.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 44.858,11.5361 L 30.0047,20.1119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 24.3715,17.7057 L 24.3715,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 45.5906,54.4592 L 24.3715,42.208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 44.858,48.3776 L 30.0047,39.8018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 105.974 110.949\\nQ 105.974 109.282, 106.797 108.351\\nQ 107.621 107.42, 109.159 107.42\\nQ 110.698 107.42, 111.521 108.351\\nQ 112.345 109.282, 112.345 110.949\\nQ 112.345 112.634, 111.512 113.595\\nQ 110.679 114.545, 109.159 114.545\\nQ 107.63 114.545, 106.797 113.595\\nQ 105.974 112.644, 105.974 110.949\\nM 109.159 113.761\\nQ 110.218 113.761, 110.786 113.056\\nQ 111.365 112.34, 111.365 110.949\\nQ 111.365 109.586, 110.786 108.9\\nQ 110.218 108.204, 109.159 108.204\\nQ 108.101 108.204, 107.523 108.89\\nQ 106.954 109.576, 106.954 110.949\\nQ 106.954 112.35, 107.523 113.056\\nQ 108.101 113.761, 109.159 113.761\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 122.995 81.5751\\nQ 122.995 79.909, 123.818 78.9779\\nQ 124.642 78.0468, 126.18 78.0468\\nQ 127.719 78.0468, 128.542 78.9779\\nQ 129.366 79.909, 129.366 81.5751\\nQ 129.366 83.2609, 128.533 84.2214\\nQ 127.7 85.1721, 126.18 85.1721\\nQ 124.651 85.1721, 123.818 84.2214\\nQ 122.995 83.2707, 122.995 81.5751\\nM 126.18 84.388\\nQ 127.239 84.388, 127.807 83.6823\\nQ 128.386 82.9669, 128.386 81.5751\\nQ 128.386 80.2128, 127.807 79.5267\\nQ 127.239 78.8309, 126.18 78.8309\\nQ 125.122 78.8309, 124.544 79.5169\\nQ 123.975 80.203, 123.975 81.5751\\nQ 123.975 82.9767, 124.544 83.6823\\nQ 125.122 84.388, 126.18 84.388\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.199 78.1252\\nL 131.14 78.1252\\nL 131.14 81.0753\\nL 134.688 81.0753\\nL 134.688 78.1252\\nL 135.628 78.1252\\nL 135.628 85.0643\\nL 134.688 85.0643\\nL 134.688 81.8593\\nL 131.14 81.8593\\nL 131.14 85.0643\\nL 130.199 85.0643\\nL 130.199 78.1252\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.48, "data-ID": 416, "mols2grid-id": 82, "mols2grid-tooltip": "<strong>Name</strong>: cinnamic_acid<br><strong>SMILES</strong>: O=C(O)C=Cc(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.48</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)Cc(c(c(ccc1)cc2)c1)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.905,106.91 L 111.889,99.0934' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.889,99.0934 L 111.873,91.2766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.995,106.92 L 106.979,99.1036' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.979,99.1036 L 106.963,91.2869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.418,91.2818 L 116.072,87.4243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.072,87.4243 L 122.727,83.5669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.418,91.2818 L 88.1277,79.0296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.1277,79.0296 L 88.077,54.4664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.077,54.4664 L 66.8591,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.3499,48.3764 L 72.4974,39.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-4 atom-13' d='M 88.077,54.4664 L 109.296,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8591,42.2126 L 66.8591,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-5 atom-12' d='M 66.8591,42.2126 L 45.6413,54.4664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.8591,17.7083 L 45.6413,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 66.8591,17.7083 L 88.077,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 72.4974,20.1221 L 87.3499,11.5445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 45.6413,5.45455 L 24.1239,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 44.8435,11.5593 L 29.7813,20.1369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 24.1239,17.7083 L 24.1239,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 45.6413,54.4664 L 24.1239,42.2126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 44.8435,48.3617 L 29.7813,39.784' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 88.077,5.45455 L 109.296,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-11' d='M 109.296,42.2126 L 109.296,17.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-11' d='M 104.386,38.537 L 104.386,21.384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.267 110.941\\nQ 106.267 109.272, 107.092 108.339\\nQ 107.917 107.406, 109.459 107.406\\nQ 111 107.406, 111.825 108.339\\nQ 112.65 109.272, 112.65 110.941\\nQ 112.65 112.631, 111.815 113.593\\nQ 110.981 114.545, 109.459 114.545\\nQ 107.927 114.545, 107.092 113.593\\nQ 106.267 112.64, 106.267 110.941\\nM 109.459 113.76\\nQ 110.519 113.76, 111.089 113.053\\nQ 111.668 112.336, 111.668 110.941\\nQ 111.668 109.577, 111.089 108.889\\nQ 110.519 108.192, 109.459 108.192\\nQ 108.398 108.192, 107.819 108.879\\nQ 107.249 109.567, 107.249 110.941\\nQ 107.249 112.346, 107.819 113.053\\nQ 108.398 113.76, 109.459 113.76\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 123.218 81.4519\\nQ 123.218 79.7825, 124.043 78.8496\\nQ 124.868 77.9167, 126.41 77.9167\\nQ 127.951 77.9167, 128.776 78.8496\\nQ 129.601 79.7825, 129.601 81.4519\\nQ 129.601 83.1409, 128.766 84.1033\\nQ 127.932 85.0559, 126.41 85.0559\\nQ 124.878 85.0559, 124.043 84.1033\\nQ 123.218 83.1508, 123.218 81.4519\\nM 126.41 84.2702\\nQ 127.47 84.2702, 128.04 83.5632\\nQ 128.619 82.8463, 128.619 81.4519\\nQ 128.619 80.0869, 128.04 79.3995\\nQ 127.47 78.7023, 126.41 78.7023\\nQ 125.349 78.7023, 124.77 79.3897\\nQ 124.2 80.0771, 124.2 81.4519\\nQ 124.2 82.8562, 124.77 83.5632\\nQ 125.349 84.2702, 126.41 84.2702\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.436 77.9952\\nL 131.378 77.9952\\nL 131.378 80.9511\\nL 134.933 80.9511\\nL 134.933 77.9952\\nL 135.876 77.9952\\nL 135.876 84.9478\\nL 134.933 84.9478\\nL 134.933 81.7367\\nL 131.378 81.7367\\nL 131.378 84.9478\\nL 130.436 84.9478\\nL 130.436 77.9952\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.65, "data-ID": 421, "mols2grid-id": 83, "mols2grid-tooltip": "<strong>Name</strong>: 1-naphthaceneacetic_acid<br><strong>SMILES</strong>: O=C(O)Cc(c(c(ccc1)cc2)c1)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.65</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)C(c(cccc1)c1)c(cccc2)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.738,43.258 L 115.833,39.8239' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.833,39.8239 L 109.929,36.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.545,47.0281 L 113.641,43.594' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.641,43.594 L 107.736,40.1599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.833,38.2749 L 108.856,31.3796' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.856,31.3796 L 108.88,24.4844' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 108.833,38.2749 L 89.8958,49.1127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.8958,49.1127 L 71.0215,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-10' d='M 89.8958,49.1127 L 89.8638,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.0215,38.1644 L 71.0215,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.6602,34.8934 L 66.6602,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 71.0215,38.1644 L 52.137,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 71.0215,16.3578 L 52.137,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.137,5.45455 L 33.2526,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.4851,10.867 L 38.2659,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 33.2526,16.3578 L 33.2526,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 52.137,49.0676 L 33.2526,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 51.4851,43.6552 L 38.2659,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8638,70.9309 L 108.711,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 90.4968,76.3457 L 103.69,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 89.8638,70.9309 L 70.9416,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 108.711,81.901 L 108.636,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 108.636,103.708 L 89.7126,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 103.63,101.549 L 90.3837,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 89.7126,114.545 L 70.866,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 70.9416,81.7702 L 70.866,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 75.2915,85.0563 L 75.2386,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.078 47.0629\\nQ 121.078 45.5801, 121.81 44.7514\\nQ 122.543 43.9228, 123.913 43.9228\\nQ 125.282 43.9228, 126.015 44.7514\\nQ 126.747 45.5801, 126.747 47.0629\\nQ 126.747 48.5632, 126.006 49.418\\nQ 125.265 50.2641, 123.913 50.2641\\nQ 122.552 50.2641, 121.81 49.418\\nQ 121.078 48.5719, 121.078 47.0629\\nM 123.913 49.5663\\nQ 124.855 49.5663, 125.361 48.9383\\nQ 125.875 48.3015, 125.875 47.0629\\nQ 125.875 45.8505, 125.361 45.2399\\nQ 124.855 44.6206, 123.913 44.6206\\nQ 122.971 44.6206, 122.456 45.2311\\nQ 121.95 45.8417, 121.95 47.0629\\nQ 121.95 48.3102, 122.456 48.9383\\nQ 122.971 49.5663, 123.913 49.5663\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 106.057 20.8471\\nQ 106.057 19.3642, 106.79 18.5356\\nQ 107.523 17.7069, 108.892 17.7069\\nQ 110.262 17.7069, 110.994 18.5356\\nQ 111.727 19.3642, 111.727 20.8471\\nQ 111.727 22.3474, 110.986 23.2022\\nQ 110.244 24.0483, 108.892 24.0483\\nQ 107.531 24.0483, 106.79 23.2022\\nQ 106.057 22.3561, 106.057 20.8471\\nM 108.892 23.3505\\nQ 109.834 23.3505, 110.34 22.7224\\nQ 110.855 22.0857, 110.855 20.8471\\nQ 110.855 19.6346, 110.34 19.024\\nQ 109.834 18.4047, 108.892 18.4047\\nQ 107.95 18.4047, 107.436 19.0153\\nQ 106.93 19.6259, 106.93 20.8471\\nQ 106.93 22.0944, 107.436 22.7224\\nQ 107.95 23.3505, 108.892 23.3505\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 112.469 17.7767\\nL 113.306 17.7767\\nL 113.306 20.4022\\nL 116.463 20.4022\\nL 116.463 17.7767\\nL 117.301 17.7767\\nL 117.301 23.9523\\nL 116.463 23.9523\\nL 116.463 21.1\\nL 113.306 21.1\\nL 113.306 23.9523\\nL 112.469 23.9523\\nL 112.469 17.7767\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.22, "data-ID": 426, "mols2grid-id": 84, "mols2grid-tooltip": "<strong>Name</strong>: diphenylacetic_acid<br><strong>SMILES</strong>: O=C(O)C(c(cccc1)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.22</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)CCCCCCCCCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 11.8483,67.0736 L 14.9752,65.2695' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 14.9752,65.2695 L 18.1021,63.4654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 10.6298,64.9617 L 13.7567,63.1576' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 13.7567,63.1576 L 16.8836,61.3535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.4928,62.4094 L 17.4928,58.7619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.4928,58.7619 L 17.4928,55.1144' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 17.4928,62.4094 L 28.0585,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 28.0585,68.505 L 38.6241,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 38.6241,62.4094 L 49.1897,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 49.1897,68.505 L 59.7554,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.7554,62.4094 L 70.3202,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.3202,68.505 L 80.8858,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 80.8858,62.4094 L 91.4515,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 91.4515,68.505 L 102.017,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 102.017,62.4094 L 112.583,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.583,68.505 L 123.148,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.148,62.4094 L 133.714,68.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.714,68.505 L 144.28,62.4094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 144.28,62.4094 L 152.727,67.2835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.09519 67.2955\\nQ 7.09519 66.2755, 7.59919 65.7055\\nQ 8.10319 65.1355, 9.04519 65.1355\\nQ 9.98719 65.1355, 10.4912 65.7055\\nQ 10.9952 66.2755, 10.9952 67.2955\\nQ 10.9952 68.3275, 10.4852 68.9155\\nQ 9.97519 69.4975, 9.04519 69.4975\\nQ 8.10919 69.4975, 7.59919 68.9155\\nQ 7.09519 68.3335, 7.09519 67.2955\\nM 9.04519 69.0175\\nQ 9.69319 69.0175, 10.0412 68.5855\\nQ 10.3952 68.1475, 10.3952 67.2955\\nQ 10.3952 66.4615, 10.0412 66.0415\\nQ 9.69319 65.6155, 9.04519 65.6155\\nQ 8.39719 65.6155, 8.04319 66.0355\\nQ 7.69519 66.4555, 7.69519 67.2955\\nQ 7.69519 68.1535, 8.04319 68.5855\\nQ 8.39719 69.0175, 9.04519 69.0175\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 15.5428 52.6686\\nQ 15.5428 51.6486, 16.0468 51.0786\\nQ 16.5508 50.5086, 17.4928 50.5086\\nQ 18.4348 50.5086, 18.9388 51.0786\\nQ 19.4428 51.6486, 19.4428 52.6686\\nQ 19.4428 53.7006, 18.9328 54.2886\\nQ 18.4228 54.8706, 17.4928 54.8706\\nQ 16.5568 54.8706, 16.0468 54.2886\\nQ 15.5428 53.7066, 15.5428 52.6686\\nM 17.4928 54.3906\\nQ 18.1408 54.3906, 18.4888 53.9586\\nQ 18.8428 53.5206, 18.8428 52.6686\\nQ 18.8428 51.8346, 18.4888 51.4146\\nQ 18.1408 50.9886, 17.4928 50.9886\\nQ 16.8448 50.9886, 16.4908 51.4086\\nQ 16.1428 51.8286, 16.1428 52.6686\\nQ 16.1428 53.5266, 16.4908 53.9586\\nQ 16.8448 54.3906, 17.4928 54.3906\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 19.9528 50.5566\\nL 20.5288 50.5566\\nL 20.5288 52.3626\\nL 22.7008 52.3626\\nL 22.7008 50.5566\\nL 23.2768 50.5566\\nL 23.2768 54.8046\\nL 22.7008 54.8046\\nL 22.7008 52.8426\\nL 20.5288 52.8426\\nL 20.5288 54.8046\\nL 19.9528 54.8046\\nL 19.9528 50.5566\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.33, "data-ID": 431, "mols2grid-id": 85, "mols2grid-tooltip": "<strong>Name</strong>: tetradecanoic_acid<br><strong>SMILES</strong>: O=C(O)CCCCCCCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.33</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=COCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4516,62.8527 L 41.6316,56.9792' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.6316,56.9792 L 51.8116,51.1056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.7034,56.3564 L 37.8834,50.4829' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 37.8834,50.4829 L 48.0634,44.6094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.9375,47.8575 L 63.281,55.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 63.281,55.5557 L 76.6245,63.2538' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.2505,63.2538 L 101.594,55.5557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.594,55.5557 L 114.937,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.937,47.8575 L 140.922,62.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 19.0775 62.88\\nQ 19.0775 60.33, 20.3375 58.905\\nQ 21.5975 57.48, 23.9525 57.48\\nQ 26.3075 57.48, 27.5675 58.905\\nQ 28.8275 60.33, 28.8275 62.88\\nQ 28.8275 65.46, 27.5525 66.93\\nQ 26.2775 68.385, 23.9525 68.385\\nQ 21.6125 68.385, 20.3375 66.93\\nQ 19.0775 65.475, 19.0775 62.88\\nM 23.9525 67.185\\nQ 25.5725 67.185, 26.4425 66.105\\nQ 27.3275 65.01, 27.3275 62.88\\nQ 27.3275 60.795, 26.4425 59.745\\nQ 25.5725 58.68, 23.9525 58.68\\nQ 22.3325 58.68, 21.4475 59.73\\nQ 20.5775 60.78, 20.5775 62.88\\nQ 20.5775 65.025, 21.4475 66.105\\nQ 22.3325 67.185, 23.9525 67.185\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 77.5625 66.6375\\nQ 77.5625 64.0875, 78.8225 62.6625\\nQ 80.0825 61.2375, 82.4375 61.2375\\nQ 84.7925 61.2375, 86.0525 62.6625\\nQ 87.3125 64.0875, 87.3125 66.6375\\nQ 87.3125 69.2175, 86.0375 70.6875\\nQ 84.7625 72.1425, 82.4375 72.1425\\nQ 80.0975 72.1425, 78.8225 70.6875\\nQ 77.5625 69.2325, 77.5625 66.6375\\nM 82.4375 70.9425\\nQ 84.0575 70.9425, 84.9275 69.8625\\nQ 85.8125 68.7675, 85.8125 66.6375\\nQ 85.8125 64.5525, 84.9275 63.5025\\nQ 84.0575 62.4375, 82.4375 62.4375\\nQ 80.8175 62.4375, 79.9325 63.4875\\nQ 79.0625 64.5375, 79.0625 66.6375\\nQ 79.0625 68.7825, 79.9325 69.8625\\nQ 80.8175 70.9425, 82.4375 70.9425\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 0.15, "data-ID": 436, "mols2grid-id": 86, "mols2grid-tooltip": "<strong>Name</strong>: ethyl_formate<br><strong>SMILES</strong>: O=COCC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.15</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 92.1642,42.3157 L 92.1642,53.8547' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1642,53.8547 L 92.1642,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.4627,42.3157 L 99.4627,53.8547' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.4627,53.8547 L 99.4627,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8134,65.3936 L 82.8284,72.885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.8284,72.885 L 69.8434,80.3763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 95.8134,65.3936 L 127.44,83.6399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.5297,80.3763 L 45.5447,72.885' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.5447,72.885 L 32.5597,65.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 32.5597,65.3936 L 7.27273,79.9833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.44,83.6399 L 152.727,69.0502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 91.0694 36.2287\\nQ 91.0694 33.7472, 92.2956 32.3605\\nQ 93.5217 30.9738, 95.8134 30.9738\\nQ 98.1052 30.9738, 99.3313 32.3605\\nQ 100.557 33.7472, 100.557 36.2287\\nQ 100.557 38.7394, 99.3167 40.1699\\nQ 98.076 41.5858, 95.8134 41.5858\\nQ 93.5363 41.5858, 92.2956 40.1699\\nQ 91.0694 38.754, 91.0694 36.2287\\nM 95.8134 40.4181\\nQ 97.3899 40.4181, 98.2366 39.3671\\nQ 99.0978 38.3015, 99.0978 36.2287\\nQ 99.0978 34.1997, 98.2366 33.178\\nQ 97.3899 32.1416, 95.8134 32.1416\\nQ 94.237 32.1416, 93.3757 33.1634\\nQ 92.5291 34.1852, 92.5291 36.2287\\nQ 92.5291 38.3161, 93.3757 39.3671\\nQ 94.237 40.4181, 95.8134 40.4181\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 59.4425 83.6691\\nQ 59.4425 81.1876, 60.6687 79.8009\\nQ 61.8948 78.4142, 64.1866 78.4142\\nQ 66.4783 78.4142, 67.7044 79.8009\\nQ 68.9306 81.1876, 68.9306 83.6691\\nQ 68.9306 86.1798, 67.6898 87.6103\\nQ 66.4491 89.0262, 64.1866 89.0262\\nQ 61.9094 89.0262, 60.6687 87.6103\\nQ 59.4425 86.1944, 59.4425 83.6691\\nM 64.1866 87.8584\\nQ 65.763 87.8584, 66.6097 86.8074\\nQ 67.4709 85.7419, 67.4709 83.6691\\nQ 67.4709 81.6401, 66.6097 80.6183\\nQ 65.763 79.5819, 64.1866 79.5819\\nQ 62.6101 79.5819, 61.7488 80.6037\\nQ 60.9022 81.6255, 60.9022 83.6691\\nQ 60.9022 85.7565, 61.7488 86.8074\\nQ 62.6101 87.8584, 64.1866 87.8584\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.66, "data-ID": 441, "mols2grid-id": 87, "mols2grid-tooltip": "<strong>Name</strong>: ethyl_propionate<br><strong>SMILES</strong>: O=C(OCC)CC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.66</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)CCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 77.0025,45.4741 L 77.0025,54.9522' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0025,54.9522 L 77.0025,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.9975,45.4741 L 82.9975,54.9522' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.9975,54.9522 L 82.9975,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80,64.4303 L 69.3341,70.5837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 69.3341,70.5837 L 58.6682,76.7371' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 80,64.4303 L 105.978,79.4178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 49.3752,76.7371 L 38.7093,70.5837' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.7093,70.5837 L 28.0434,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 28.0434,64.4303 L 7.27273,76.4143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.978,79.4178 L 131.957,64.4303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 131.957,64.4303 L 152.727,76.4143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 76.1033 40.4743\\nQ 76.1033 38.436, 77.1104 37.297\\nQ 78.1176 36.1579, 80 36.1579\\nQ 81.8824 36.1579, 82.8896 37.297\\nQ 83.8967 38.436, 83.8967 40.4743\\nQ 83.8967 42.5366, 82.8776 43.7116\\nQ 81.8584 44.8746, 80 44.8746\\nQ 78.1296 44.8746, 77.1104 43.7116\\nQ 76.1033 42.5486, 76.1033 40.4743\\nM 80 43.9154\\nQ 81.2949 43.9154, 81.9903 43.0522\\nQ 82.6977 42.1769, 82.6977 40.4743\\nQ 82.6977 38.8077, 81.9903 37.9684\\nQ 81.2949 37.1171, 80 37.1171\\nQ 78.7051 37.1171, 77.9977 37.9564\\nQ 77.3023 38.7957, 77.3023 40.4743\\nQ 77.3023 42.1889, 77.9977 43.0522\\nQ 78.7051 43.9154, 80 43.9154\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 50.1249 79.4418\\nQ 50.1249 77.4035, 51.1321 76.2644\\nQ 52.1393 75.1254, 54.0217 75.1254\\nQ 55.9041 75.1254, 56.9113 76.2644\\nQ 57.9184 77.4035, 57.9184 79.4418\\nQ 57.9184 81.504, 56.8993 82.6791\\nQ 55.8801 83.8421, 54.0217 83.8421\\nQ 52.1513 83.8421, 51.1321 82.6791\\nQ 50.1249 81.516, 50.1249 79.4418\\nM 54.0217 82.8829\\nQ 55.3166 82.8829, 56.012 82.0196\\nQ 56.7194 81.1443, 56.7194 79.4418\\nQ 56.7194 77.7752, 56.012 76.9359\\nQ 55.3166 76.0846, 54.0217 76.0846\\nQ 52.7268 76.0846, 52.0194 76.9239\\nQ 51.3239 77.7632, 51.3239 79.4418\\nQ 51.3239 81.1563, 52.0194 82.0196\\nQ 52.7268 82.8829, 54.0217 82.8829\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.28, "data-ID": 446, "mols2grid-id": 88, "mols2grid-tooltip": "<strong>Name</strong>: ethyl_butyrate<br><strong>SMILES</strong>: O=C(OCC)CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCCC)CCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 93.5641,72.3247 L 93.5641,64.2269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.5641,64.2269 L 93.5641,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.4776,72.3247 L 88.4776,64.2269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.4776,64.2269 L 88.4776,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.0208,56.1291 L 81.9712,50.9082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.9712,50.9082 L 72.9216,45.6873' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 91.0208,56.1291 L 113.062,43.4128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.0368,45.6873 L 55.9871,50.9082' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.9871,50.9082 L 46.9375,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.9375,56.1291 L 24.8959,43.4128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 24.8959,43.4128 L 7.27273,53.5808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 113.062,43.4128 L 135.102,56.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 135.102,56.1291 L 152.727,45.9612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 87.7146 76.4956\\nQ 87.7146 74.7662, 88.5691 73.7998\\nQ 89.4237 72.8333, 91.0208 72.8333\\nQ 92.618 72.8333, 93.4725 73.7998\\nQ 94.3271 74.7662, 94.3271 76.4956\\nQ 94.3271 78.2454, 93.4624 79.2424\\nQ 92.5977 80.2291, 91.0208 80.2291\\nQ 89.4338 80.2291, 88.5691 79.2424\\nQ 87.7146 78.2556, 87.7146 76.4956\\nM 91.0208 79.4153\\nQ 92.1195 79.4153, 92.7096 78.6828\\nQ 93.3098 77.9402, 93.3098 76.4956\\nQ 93.3098 75.0816, 92.7096 74.3695\\nQ 92.1195 73.6472, 91.0208 73.6472\\nQ 89.9221 73.6472, 89.3219 74.3593\\nQ 88.7319 75.0714, 88.7319 76.4956\\nQ 88.7319 77.9504, 89.3219 78.6828\\nQ 89.9221 79.4153, 91.0208 79.4153\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 65.6729 43.4332\\nQ 65.6729 41.7037, 66.5275 40.7373\\nQ 67.382 39.7709, 68.9792 39.7709\\nQ 70.5763 39.7709, 71.4309 40.7373\\nQ 72.2854 41.7037, 72.2854 43.4332\\nQ 72.2854 45.1829, 71.4207 46.1799\\nQ 70.556 47.1667, 68.9792 47.1667\\nQ 67.3922 47.1667, 66.5275 46.1799\\nQ 65.6729 45.1931, 65.6729 43.4332\\nM 68.9792 46.3528\\nQ 70.0779 46.3528, 70.6679 45.6204\\nQ 71.2681 44.8777, 71.2681 43.4332\\nQ 71.2681 42.0191, 70.6679 41.307\\nQ 70.0779 40.5847, 68.9792 40.5847\\nQ 67.8805 40.5847, 67.2803 41.2968\\nQ 66.6902 42.0089, 66.6902 43.4332\\nQ 66.6902 44.8879, 67.2803 45.6204\\nQ 67.8805 46.3528, 68.9792 46.3528\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.92, "data-ID": 451, "mols2grid-id": 89, "mols2grid-tooltip": "<strong>Name</strong>: propyl_butyrate<br><strong>SMILES</strong>: O=C(OCCC)CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)CCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 58.6503,49.2972 L 58.6503,56.2807' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 58.6503,56.2807 L 58.6503,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 63.0675,49.2972 L 63.0675,56.2807' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 63.0675,56.2807 L 63.0675,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.8589,63.2643 L 53.0002,67.7982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.0002,67.7982 L 45.1415,72.3321' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 60.8589,63.2643 L 80,74.3072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.2942,72.3321 L 30.4355,67.7982' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 30.4355,67.7982 L 22.5768,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 22.5768,63.2643 L 7.27273,72.0942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80,74.3072 L 99.1411,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 99.1411,63.2643 L 118.281,74.3072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 118.281,74.3072 L 137.422,63.2643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 137.422,63.2643 L 152.727,72.0942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 57.9878 45.6133\\nQ 57.9878 44.1114, 58.7298 43.2722\\nQ 59.4719 42.4329, 60.8589 42.4329\\nQ 62.2459 42.4329, 62.988 43.2722\\nQ 63.7301 44.1114, 63.7301 45.6133\\nQ 63.7301 47.1328, 62.9792 47.9985\\nQ 62.2282 48.8555, 60.8589 48.8555\\nQ 59.4808 48.8555, 58.7298 47.9985\\nQ 57.9878 47.1416, 57.9878 45.6133\\nM 60.8589 48.1487\\nQ 61.813 48.1487, 62.3254 47.5127\\nQ 62.8466 46.8677, 62.8466 45.6133\\nQ 62.8466 44.3853, 62.3254 43.7669\\nQ 61.813 43.1397, 60.8589 43.1397\\nQ 59.9048 43.1397, 59.3836 43.7581\\nQ 58.8712 44.3765, 58.8712 45.6133\\nQ 58.8712 46.8766, 59.3836 47.5127\\nQ 59.9048 48.1487, 60.8589 48.1487\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 38.8467 74.3249\\nQ 38.8467 72.8231, 39.5888 71.9838\\nQ 40.3308 71.1445, 41.7178 71.1445\\nQ 43.1048 71.1445, 43.8469 71.9838\\nQ 44.589 72.8231, 44.589 74.3249\\nQ 44.589 75.8444, 43.8381 76.7102\\nQ 43.0872 77.5671, 41.7178 77.5671\\nQ 40.3397 77.5671, 39.5888 76.7102\\nQ 38.8467 75.8532, 38.8467 74.3249\\nM 41.7178 76.8603\\nQ 42.6719 76.8603, 43.1843 76.2243\\nQ 43.7056 75.5794, 43.7056 74.3249\\nQ 43.7056 73.0969, 43.1843 72.4785\\nQ 42.6719 71.8513, 41.7178 71.8513\\nQ 40.7637 71.8513, 40.2425 72.4697\\nQ 39.7301 73.0881, 39.7301 74.3249\\nQ 39.7301 75.5882, 40.2425 76.2243\\nQ 40.7637 76.8603, 41.7178 76.8603\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.31, "data-ID": 456, "mols2grid-id": 90, "mols2grid-tooltip": "<strong>Name</strong>: ethyl_capronate<br><strong>SMILES</strong>: O=C(OCC)CCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.31</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)CCCCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 44.1085,52.3265 L 44.1085,57.3334' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 44.1085,57.3334 L 44.1085,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.2754,52.3265 L 47.2754,57.3334' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.2754,57.3334 L 47.2754,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 45.692,62.3404 L 40.0576,65.591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.0576,65.591 L 34.4232,68.8416' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 45.692,62.3404 L 59.4154,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 29.514,68.8416 L 23.8795,65.591' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 23.8795,65.591 L 18.2451,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 18.2451,62.3404 L 7.27273,68.6711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.4154,70.2577 L 73.1388,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 73.1388,62.3404 L 86.8612,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 86.8612,70.2577 L 100.585,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 100.585,62.3404 L 114.308,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 114.308,70.2577 L 128.031,62.3404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 128.031,62.3404 L 141.755,70.2577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 141.755,70.2577 L 152.727,63.927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 43.6335 49.6853\\nQ 43.6335 48.6085, 44.1655 48.0068\\nQ 44.6976 47.4051, 45.692 47.4051\\nQ 46.6864 47.4051, 47.2184 48.0068\\nQ 47.7505 48.6085, 47.7505 49.6853\\nQ 47.7505 50.7747, 47.2121 51.3954\\nQ 46.6737 52.0098, 45.692 52.0098\\nQ 44.7039 52.0098, 44.1655 51.3954\\nQ 43.6335 50.781, 43.6335 49.6853\\nM 45.692 51.5031\\nQ 46.376 51.5031, 46.7434 51.0471\\nQ 47.1171 50.5847, 47.1171 49.6853\\nQ 47.1171 48.8049, 46.7434 48.3615\\nQ 46.376 47.9118, 45.692 47.9118\\nQ 45.0079 47.9118, 44.6342 48.3551\\nQ 44.2668 48.7985, 44.2668 49.6853\\nQ 44.2668 50.591, 44.6342 51.0471\\nQ 45.0079 51.5031, 45.692 51.5031\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 29.91 70.2704\\nQ 29.91 69.1936, 30.4421 68.5919\\nQ 30.9741 67.9902, 31.9686 67.9902\\nQ 32.963 67.9902, 33.495 68.5919\\nQ 34.0271 69.1936, 34.0271 70.2704\\nQ 34.0271 71.3598, 33.4887 71.9805\\nQ 32.9503 72.5949, 31.9686 72.5949\\nQ 30.9805 72.5949, 30.4421 71.9805\\nQ 29.91 71.3662, 29.91 70.2704\\nM 31.9686 72.0882\\nQ 32.6526 72.0882, 33.02 71.6322\\nQ 33.3937 71.1698, 33.3937 70.2704\\nQ 33.3937 69.39, 33.02 68.9466\\nQ 32.6526 68.4969, 31.9686 68.4969\\nQ 31.2845 68.4969, 30.9108 68.9403\\nQ 30.5434 69.3837, 30.5434 70.2704\\nQ 30.5434 71.1761, 30.9108 71.6322\\nQ 31.2845 72.0882, 31.9686 72.0882\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.8, "data-ID": 461, "mols2grid-id": 91, "mols2grid-tooltip": "<strong>Name</strong>: ethyl_nonanoate<br><strong>SMILES</strong>: O=C(OCC)CCCCCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(OC)c(cccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.247,56.8222 L 115.538,61.8303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.538,61.8303 L 106.83,66.8383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.442,62.3785 L 118.734,67.3866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.734,67.3866 L 110.025,72.3946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.428,69.6165 L 108.408,82.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.408,82.9535 L 108.388,96.2906' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 108.428,69.6165 L 80.689,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 113.188,104.47 L 121.873,109.508' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.873,109.508 L 130.558,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.689,53.5263 L 80.689,21.4785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.2795,48.7192 L 74.2795,26.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 80.689,53.5263 L 52.9356,69.5503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.689,21.4785 L 52.9356,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.9356,5.45455 L 25.1821,21.4785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.9774,13.4089 L 32.55,24.6257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.1821,21.4785 L 25.1821,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 52.9356,69.5503 L 25.1821,53.5263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 51.9774,61.5959 L 32.55,50.3791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.485 56.8614\\nQ 126.485 54.6822, 127.562 53.4644\\nQ 128.639 52.2466, 130.652 52.2466\\nQ 132.664 52.2466, 133.741 53.4644\\nQ 134.818 54.6822, 134.818 56.8614\\nQ 134.818 59.0663, 133.728 60.3226\\nQ 132.639 61.5661, 130.652 61.5661\\nQ 128.652 61.5661, 127.562 60.3226\\nQ 126.485 59.0792, 126.485 56.8614\\nM 130.652 60.5405\\nQ 132.036 60.5405, 132.78 59.6176\\nQ 133.536 58.6818, 133.536 56.8614\\nQ 133.536 55.0796, 132.78 54.1822\\nQ 132.036 53.2721, 130.652 53.2721\\nQ 129.267 53.2721, 128.511 54.1694\\nQ 127.767 55.0668, 127.767 56.8614\\nQ 127.767 58.6946, 128.511 59.6176\\nQ 129.267 60.5405, 130.652 60.5405\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 104.214 101.707\\nQ 104.214 99.5278, 105.291 98.31\\nQ 106.368 97.0922, 108.381 97.0922\\nQ 110.393 97.0922, 111.47 98.31\\nQ 112.547 99.5278, 112.547 101.707\\nQ 112.547 103.912, 111.457 105.168\\nQ 110.367 106.412, 108.381 106.412\\nQ 106.381 106.412, 105.291 105.168\\nQ 104.214 103.925, 104.214 101.707\\nM 108.381 105.386\\nQ 109.765 105.386, 110.508 104.463\\nQ 111.265 103.527, 111.265 101.707\\nQ 111.265 99.9252, 110.508 99.0279\\nQ 109.765 98.1177, 108.381 98.1177\\nQ 106.996 98.1177, 106.24 99.0151\\nQ 105.496 99.9124, 105.496 101.707\\nQ 105.496 103.54, 106.24 104.463\\nQ 106.996 105.386, 108.381 105.386\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.85, "data-ID": 466, "mols2grid-id": 92, "mols2grid-tooltip": "<strong>Name</strong>: methyl_benzoate<br><strong>SMILES</strong>: O=C(OC)c(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCCCC)c(c(ccc1)C(=O)OCCCC)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.0585,67.1132 L 87.2128,68.7498' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 87.2128,68.7498 L 84.367,70.3863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 91.1898,69.0804 L 88.3441,70.717' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.3441,70.717 L 85.4983,72.3535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9327,71.3699 L 84.9261,75.8303' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.9261,75.8303 L 84.9196,80.2906' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 84.9327,71.3699 L 75.1119,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.1499,84.0183 L 90.9429,86.2187' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.9429,86.2187 L 94.736,88.4191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 94.736,88.4191 L 94.7201,99.7716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 94.7201,99.7716 L 104.54,105.468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.54,105.468 L 104.527,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.1119,65.6732 L 75.1119,54.3268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.8427,63.9713 L 72.8427,56.0287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-7 atom-19' d='M 75.1119,65.6732 L 65.2859,71.3465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 75.1119,54.3268 L 65.2859,48.6535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 75.1119,54.3268 L 84.9319,48.6301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.2859,48.6535 L 55.4599,54.3268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 64.9467,51.4698 L 58.0685,55.441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 55.4599,54.3268 L 55.4599,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-11' d='M 65.2859,71.3465 L 55.4599,65.6732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-11' d='M 64.9467,68.5302 L 58.0685,64.559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 84.3663,49.6137 L 87.2124,51.2503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 87.2124,51.2503 L 90.0585,52.8869' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 85.4975,47.6465 L 88.3436,49.2831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 88.3436,49.2831 L 91.1897,50.9196' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 84.9319,48.6301 L 84.9257,44.2027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 84.9257,44.2027 L 84.9195,39.7754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 87.1499,35.9817 L 90.9429,33.7813' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 90.9429,33.7813 L 94.736,31.5809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 94.736,31.5809 L 94.7201,20.2284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 94.7201,20.2284 L 104.54,14.5317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 104.54,14.5317 L 104.527,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 90.8511 66.8569\\nQ 90.8511 65.8369, 91.3551 65.2669\\nQ 91.8591 64.6969, 92.8011 64.6969\\nQ 93.7431 64.6969, 94.2471 65.2669\\nQ 94.7511 65.8369, 94.7511 66.8569\\nQ 94.7511 67.8889, 94.2411 68.4769\\nQ 93.7311 69.0589, 92.8011 69.0589\\nQ 91.8651 69.0589, 91.3551 68.4769\\nQ 90.8511 67.8949, 90.8511 66.8569\\nM 92.8011 68.5789\\nQ 93.4491 68.5789, 93.7971 68.1469\\nQ 94.1511 67.7089, 94.1511 66.8569\\nQ 94.1511 66.0229, 93.7971 65.6029\\nQ 93.4491 65.1769, 92.8011 65.1769\\nQ 92.1531 65.1769, 91.7991 65.5969\\nQ 91.4511 66.0169, 91.4511 66.8569\\nQ 91.4511 67.7149, 91.7991 68.1469\\nQ 92.1531 68.5789, 92.8011 68.5789\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 82.966 82.7344\\nQ 82.966 81.7144, 83.47 81.1444\\nQ 83.974 80.5744, 84.916 80.5744\\nQ 85.858 80.5744, 86.362 81.1444\\nQ 86.866 81.7144, 86.866 82.7344\\nQ 86.866 83.7664, 86.356 84.3544\\nQ 85.846 84.9364, 84.916 84.9364\\nQ 83.98 84.9364, 83.47 84.3544\\nQ 82.966 83.7724, 82.966 82.7344\\nM 84.916 84.4564\\nQ 85.564 84.4564, 85.912 84.0244\\nQ 86.266 83.5864, 86.266 82.7344\\nQ 86.266 81.9004, 85.912 81.4804\\nQ 85.564 81.0544, 84.916 81.0544\\nQ 84.268 81.0544, 83.914 81.4744\\nQ 83.566 81.8944, 83.566 82.7344\\nQ 83.566 83.5924, 83.914 84.0244\\nQ 84.268 84.4564, 84.916 84.4564\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 90.8511 53.1671\\nQ 90.8511 52.1471, 91.3551 51.5771\\nQ 91.8591 51.0071, 92.8011 51.0071\\nQ 93.7431 51.0071, 94.2471 51.5771\\nQ 94.7511 52.1471, 94.7511 53.1671\\nQ 94.7511 54.1991, 94.2411 54.7871\\nQ 93.7311 55.3691, 92.8011 55.3691\\nQ 91.8651 55.3691, 91.3551 54.7871\\nQ 90.8511 54.2051, 90.8511 53.1671\\nM 92.8011 54.8891\\nQ 93.4491 54.8891, 93.7971 54.4571\\nQ 94.1511 54.0191, 94.1511 53.1671\\nQ 94.1511 52.3331, 93.7971 51.9131\\nQ 93.4491 51.4871, 92.8011 51.4871\\nQ 92.1531 51.4871, 91.7991 51.9071\\nQ 91.4511 52.3271, 91.4511 53.1671\\nQ 91.4511 54.0251, 91.7991 54.4571\\nQ 92.1531 54.8891, 92.8011 54.8891\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 82.966 37.2896\\nQ 82.966 36.2696, 83.47 35.6996\\nQ 83.974 35.1296, 84.916 35.1296\\nQ 85.858 35.1296, 86.362 35.6996\\nQ 86.866 36.2696, 86.866 37.2896\\nQ 86.866 38.3216, 86.356 38.9096\\nQ 85.846 39.4916, 84.916 39.4916\\nQ 83.98 39.4916, 83.47 38.9096\\nQ 82.966 38.3276, 82.966 37.2896\\nM 84.916 39.0116\\nQ 85.564 39.0116, 85.912 38.5796\\nQ 86.266 38.1416, 86.266 37.2896\\nQ 86.266 36.4556, 85.912 36.0356\\nQ 85.564 35.6096, 84.916 35.6096\\nQ 84.268 35.6096, 83.914 36.0296\\nQ 83.566 36.4496, 83.566 37.2896\\nQ 83.566 38.1476, 83.914 38.5796\\nQ 84.268 39.0116, 84.916 39.0116\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.4, "data-ID": 471, "mols2grid-id": 93, "mols2grid-tooltip": "<strong>Name</strong>: dibutyl_phthalate<br><strong>SMILES</strong>: O=C(OCCCC)c(c(ccc1)C(=O)OCCCC)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCOCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,62.85 L 47.5,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,47.8575 L 60.8435,55.5557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.8435,55.5557 L 74.187,63.2538' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 85.813,63.2538 L 99.1565,55.5557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 99.1565,55.5557 L 112.5,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.5,47.8575 L 138.485,62.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 75.125 66.6375\\nQ 75.125 64.0875, 76.385 62.6625\\nQ 77.645 61.2375, 80 61.2375\\nQ 82.355 61.2375, 83.615 62.6625\\nQ 84.875 64.0875, 84.875 66.6375\\nQ 84.875 69.2175, 83.6 70.6875\\nQ 82.325 72.1425, 80 72.1425\\nQ 77.66 72.1425, 76.385 70.6875\\nQ 75.125 69.2325, 75.125 66.6375\\nM 80 70.9425\\nQ 81.62 70.9425, 82.49 69.8625\\nQ 83.375 68.7675, 83.375 66.6375\\nQ 83.375 64.5525, 82.49 63.5025\\nQ 81.62 62.4375, 80 62.4375\\nQ 78.38 62.4375, 77.495 63.4875\\nQ 76.625 64.5375, 76.625 66.6375\\nQ 76.625 68.7825, 77.495 69.8625\\nQ 78.38 70.9425, 80 70.9425\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.09, "data-ID": 476, "mols2grid-id": 94, "mols2grid-tooltip": "<strong>Name</strong>: diethyl_ether<br><strong>SMILES</strong>: CCOCC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.09</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COC(C)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 37.765,53.3025 L 47.945,47.429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.945,47.429 L 58.125,41.5554' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 69.563,41.6637 L 82.9065,49.3618' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.9065,49.3618 L 96.25,57.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.25,57.06 L 122.235,42.0675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 96.25,57.06 L 96.25,87.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 96.25,57.06 L 122.228,72.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 58.875 38.34\\nQ 58.875 35.79, 60.135 34.365\\nQ 61.395 32.94, 63.75 32.94\\nQ 66.105 32.94, 67.365 34.365\\nQ 68.625 35.79, 68.625 38.34\\nQ 68.625 40.92, 67.35 42.39\\nQ 66.075 43.845, 63.75 43.845\\nQ 61.41 43.845, 60.135 42.39\\nQ 58.875 40.935, 58.875 38.34\\nM 63.75 42.645\\nQ 65.37 42.645, 66.24 41.565\\nQ 67.125 40.47, 67.125 38.34\\nQ 67.125 36.255, 66.24 35.205\\nQ 65.37 34.14, 63.75 34.14\\nQ 62.13 34.14, 61.245 35.19\\nQ 60.375 36.24, 60.375 38.34\\nQ 60.375 40.485, 61.245 41.565\\nQ 62.13 42.645, 63.75 42.645\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.24, "data-ID": 481, "mols2grid-id": 95, "mols2grid-tooltip": "<strong>Name</strong>: methyl_t-butyl_ether<br><strong>SMILES</strong>: COC(C)(C)C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.24</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCOC(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,53.4824 L 32.5597,38.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.5597,38.8927 L 64.1866,57.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.1866,57.139 L 77.1716,49.6476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.1716,49.6476 L 90.1566,42.1563' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.47,42.1563 L 114.455,49.6476' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.455,49.6476 L 127.44,57.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 127.44,57.139 L 152.727,42.5492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 127.44,57.139 L 127.44,86.333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 91.0694 38.9219\\nQ 91.0694 36.4404, 92.2956 35.0537\\nQ 93.5217 33.667, 95.8134 33.667\\nQ 98.1052 33.667, 99.3313 35.0537\\nQ 100.557 36.4404, 100.557 38.9219\\nQ 100.557 41.4326, 99.3167 42.8631\\nQ 98.076 44.279, 95.8134 44.279\\nQ 93.5363 44.279, 92.2956 42.8631\\nQ 91.0694 41.4472, 91.0694 38.9219\\nM 95.8134 43.1112\\nQ 97.3899 43.1112, 98.2366 42.0602\\nQ 99.0978 40.9947, 99.0978 38.9219\\nQ 99.0978 36.8929, 98.2366 35.8711\\nQ 97.3899 34.8347, 95.8134 34.8347\\nQ 94.237 34.8347, 93.3757 35.8565\\nQ 92.5291 36.8783, 92.5291 38.9219\\nQ 92.5291 41.0093, 93.3757 42.0602\\nQ 94.237 43.1112, 95.8134 43.1112\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.34, "data-ID": 486, "mols2grid-id": 96, "mols2grid-tooltip": "<strong>Name</strong>: propyl_isopropyl_ether<br><strong>SMILES</strong>: CCCOC(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.34</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1OC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0276,82.989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,82.989 L 80.0552,96.3436' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.8798,104.511 L 93.5987,109.528' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.5987,109.528 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 75.8946 101.767\\nQ 75.8946 99.5851, 76.9728 98.3657\\nQ 78.0511 97.1463, 80.0663 97.1463\\nQ 82.0816 97.1463, 83.1598 98.3657\\nQ 84.238 99.5851, 84.238 101.767\\nQ 84.238 103.975, 83.147 105.233\\nQ 82.0559 106.478, 80.0663 106.478\\nQ 78.0639 106.478, 76.9728 105.233\\nQ 75.8946 103.988, 75.8946 101.767\\nM 80.0663 105.451\\nQ 81.4526 105.451, 82.1971 104.527\\nQ 82.9544 103.59, 82.9544 101.767\\nQ 82.9544 99.983, 82.1971 99.0845\\nQ 81.4526 98.1732, 80.0663 98.1732\\nQ 78.68 98.1732, 77.9227 99.0717\\nQ 77.1782 99.9702, 77.1782 101.767\\nQ 77.1782 103.603, 77.9227 104.527\\nQ 78.68 105.451, 80.0663 105.451\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.85, "data-ID": 491, "mols2grid-id": 97, "mols2grid-tooltip": "<strong>Name</strong>: anisole<br><strong>SMILES</strong>: c1ccccc1OC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O(C1c(cccc2)c2)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 138.283,80.9139 L 123.402,81.3695' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 123.402,81.3695 L 108.521,81.825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 140.296,87.21 L 132.77,100.198' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 132.77,100.198 L 125.244,113.185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.521,81.825 L 76.0288,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-1' d='M 125.244,113.185 L 108.521,81.825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.0288,63.065 L 76.0288,25.565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 68.5288,57.44 L 68.5288,31.19' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 76.0288,63.065 L 43.5538,81.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.0288,25.565 L 43.5538,6.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.5538,6.815 L 11.0788,25.565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 42.4326,16.1226 L 19.7001,29.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 11.0788,25.565 L 11.0788,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 43.5538,81.815 L 11.0788,63.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 42.4326,72.5074 L 19.7001,59.3824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 139.171 80.7675\\nQ 139.171 78.2175, 140.431 76.7925\\nQ 141.691 75.3675, 144.046 75.3675\\nQ 146.401 75.3675, 147.661 76.7925\\nQ 148.921 78.2175, 148.921 80.7675\\nQ 148.921 83.3475, 147.646 84.8175\\nQ 146.371 86.2725, 144.046 86.2725\\nQ 141.706 86.2725, 140.431 84.8175\\nQ 139.171 83.3625, 139.171 80.7675\\nM 144.046 85.0725\\nQ 145.666 85.0725, 146.536 83.9925\\nQ 147.421 82.8975, 147.421 80.7675\\nQ 147.421 78.6825, 146.536 77.6325\\nQ 145.666 76.5675, 144.046 76.5675\\nQ 142.426 76.5675, 141.541 77.6175\\nQ 140.671 78.6675, 140.671 80.7675\\nQ 140.671 82.9125, 141.541 83.9925\\nQ 142.426 85.0725, 144.046 85.0725\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.6, "data-ID": 496, "mols2grid-id": 98, "mols2grid-tooltip": "<strong>Name</strong>: styrene_oxide<br><strong>SMILES</strong>: O(C1c(cccc2)c2)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCOCCO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,62.3231 L 23.7827,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.7827,52.7973 L 44.4322,64.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.4322,64.7105 L 65.0816,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.0816,52.7973 L 73.5596,57.6885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.5596,57.6885 L 82.0376,62.5796' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 89.4244,62.5796 L 97.9024,57.6885' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.9024,57.6885 L 106.38,52.7973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 106.38,52.7973 L 127.028,64.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 127.028,64.7105 L 133.497,60.9785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 133.497,60.9785 L 139.966,57.2466' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 82.6336 64.7295\\nQ 82.6336 63.1093, 83.4342 62.2039\\nQ 84.2347 61.2985, 85.731 61.2985\\nQ 87.2273 61.2985, 88.0279 62.2039\\nQ 88.8284 63.1093, 88.8284 64.7295\\nQ 88.8284 66.3688, 88.0183 67.3027\\nQ 87.2082 68.2272, 85.731 68.2272\\nQ 84.2443 68.2272, 83.4342 67.3027\\nQ 82.6336 66.3783, 82.6336 64.7295\\nM 85.731 67.4648\\nQ 86.7603 67.4648, 87.3131 66.7786\\nQ 87.8754 66.0828, 87.8754 64.7295\\nQ 87.8754 63.4048, 87.3131 62.7376\\nQ 86.7603 62.061, 85.731 62.061\\nQ 84.7017 62.061, 84.1394 62.7281\\nQ 83.5866 63.3952, 83.5866 64.7295\\nQ 83.5866 66.0924, 84.1394 66.7786\\nQ 84.7017 67.4648, 85.731 67.4648\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 140.442 55.2038\\nQ 140.442 53.5836, 141.243 52.6782\\nQ 142.044 51.7728, 143.54 51.7728\\nQ 145.036 51.7728, 145.837 52.6782\\nQ 146.637 53.5836, 146.637 55.2038\\nQ 146.637 56.843, 145.827 57.777\\nQ 145.017 58.7015, 143.54 58.7015\\nQ 142.053 58.7015, 141.243 57.777\\nQ 140.442 56.8526, 140.442 55.2038\\nM 143.54 57.939\\nQ 144.569 57.939, 145.122 57.2528\\nQ 145.684 56.5571, 145.684 55.2038\\nQ 145.684 53.879, 145.122 53.2119\\nQ 144.569 52.5352, 143.54 52.5352\\nQ 142.511 52.5352, 141.948 53.2024\\nQ 141.396 53.8695, 141.396 55.2038\\nQ 141.396 56.5666, 141.948 57.2528\\nQ 142.511 57.939, 143.54 57.939\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 147.447 51.849\\nL 148.362 51.849\\nL 148.362 54.7177\\nL 151.812 54.7177\\nL 151.812 51.849\\nL 152.727 51.849\\nL 152.727 58.5966\\nL 151.812 58.5966\\nL 151.812 55.4802\\nL 148.362 55.4802\\nL 148.362 58.5966\\nL 147.447 58.5966\\nL 147.447 51.849\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.42, "data-ID": 501, "mols2grid-id": 99, "mols2grid-tooltip": "<strong>Name</strong>: 2-butoxyethanol<br><strong>SMILES</strong>: CCCCOCCO<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.42</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(C(O)(C(C(C(C(C(C(=CC(=O)C1)C2)(C1)C)C3O)C2)C4)(C3)C)C4)CO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.159,24.0443 L 118.188,29.3783' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.188,29.3783 L 118.218,34.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.533,24.0258 L 121.562,29.3598' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.562,29.3598 L 121.591,34.6938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.904,34.7031 L 105.328,42.7609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-1 atom-24' d='M 119.904,34.7031 L 134.57,43.0578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.328,42.7609 L 100.654,40.2416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.654,40.2416 L 95.9795,37.7222' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 105.328,42.7609 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-2 atom-23' d='M 105.328,42.7609 L 119.491,50.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.1674,51.1752 L 91.1674,67.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-4 atom-21' d='M 91.1674,51.1752 L 77.211,42.9656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-4 atom-22' d='M 91.1674,51.1752 L 79.4951,57.9487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.1674,67.3898 L 77.211,75.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-5 atom-20' d='M 91.1674,67.3898 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.211,75.3936 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 77.211,75.3936 L 77.4157,91.6071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 63.2546,67.5945 L 49.2982,75.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-7 atom-17' d='M 63.2546,67.5945 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.2982,75.5983 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 49.2982,75.5983 L 34.9313,67.8003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-8 atom-16' d='M 49.2982,75.5983 L 49.1408,62.1041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 48.4365,90.3627 L 35.9988,101.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 50.1599,93.2631 L 34.2754,98.777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-9 atom-14' d='M 49.2982,91.8129 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 35.1371,100.227 L 21.1808,92.0176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 20.3432,90.5533 L 15.7509,93.1798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 15.7509,93.1798 L 11.1586,95.8064' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 22.0183,93.4819 L 17.4259,96.1085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 17.4259,96.1085 L 12.8336,98.7351' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 21.1808,92.0176 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 34.9313,67.8003 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-14' d='M 77.4157,91.6071 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 63.0499,51.1752 L 58.4475,48.5615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 58.4475,48.5615 L 53.845,45.9478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-17' d='M 77.211,42.9656 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-20' d='M 119.491,50.9705 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-24 atom-25' d='M 134.57,43.0578 L 139.131,40.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-24 atom-25' d='M 139.131,40.3928 L 143.692,37.7279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.637 21.2213\\nQ 117.637 20.0742, 118.204 19.4331\\nQ 118.771 18.7921, 119.83 18.7921\\nQ 120.89 18.7921, 121.456 19.4331\\nQ 122.023 20.0742, 122.023 21.2213\\nQ 122.023 22.3819, 121.45 23.0431\\nQ 120.876 23.6977, 119.83 23.6977\\nQ 118.778 23.6977, 118.204 23.0431\\nQ 117.637 22.3886, 117.637 21.2213\\nM 119.83 23.1578\\nQ 120.559 23.1578, 120.95 22.672\\nQ 121.348 22.1794, 121.348 21.2213\\nQ 121.348 20.2833, 120.95 19.811\\nQ 120.559 19.3319, 119.83 19.3319\\nQ 119.101 19.3319, 118.703 19.8043\\nQ 118.312 20.2766, 118.312 21.2213\\nQ 118.312 22.1862, 118.703 22.672\\nQ 119.101 23.1578, 119.83 23.1578\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 87.1806 33.9968\\nL 87.8284 33.9968\\nL 87.8284 36.0279\\nL 90.271 36.0279\\nL 90.271 33.9968\\nL 90.9188 33.9968\\nL 90.9188 38.7741\\nL 90.271 38.7741\\nL 90.271 36.5677\\nL 87.8284 36.5677\\nL 87.8284 38.7741\\nL 87.1806 38.7741\\nL 87.1806 33.9968\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 91.2562 36.372\\nQ 91.2562 35.2249, 91.823 34.5839\\nQ 92.3898 33.9428, 93.4492 33.9428\\nQ 94.5086 33.9428, 95.0754 34.5839\\nQ 95.6422 35.2249, 95.6422 36.372\\nQ 95.6422 37.5326, 95.0686 38.1939\\nQ 94.4951 38.8484, 93.4492 38.8484\\nQ 92.3966 38.8484, 91.823 38.1939\\nQ 91.2562 37.5393, 91.2562 36.372\\nM 93.4492 38.3086\\nQ 94.1779 38.3086, 94.5693 37.8227\\nQ 94.9674 37.3302, 94.9674 36.372\\nQ 94.9674 35.4341, 94.5693 34.9617\\nQ 94.1779 34.4826, 93.4492 34.4826\\nQ 92.7204 34.4826, 92.3223 34.955\\nQ 91.931 35.4273, 91.931 36.372\\nQ 91.931 37.3369, 92.3223 37.8227\\nQ 92.7204 38.3086, 93.4492 38.3086\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 7.27273 98.7315\\nQ 7.27273 97.5844, 7.83953 96.9434\\nQ 8.40633 96.3023, 9.46571 96.3023\\nQ 10.5251 96.3023, 11.0919 96.9434\\nQ 11.6587 97.5844, 11.6587 98.7315\\nQ 11.6587 99.8921, 11.0851 100.553\\nQ 10.5116 101.208, 9.46571 101.208\\nQ 8.41308 101.208, 7.83953 100.553\\nQ 7.27273 99.8988, 7.27273 98.7315\\nM 9.46571 100.668\\nQ 10.1945 100.668, 10.5858 100.182\\nQ 10.9839 99.6897, 10.9839 98.7315\\nQ 10.9839 97.7936, 10.5858 97.3212\\nQ 10.1945 96.8422, 9.46571 96.8422\\nQ 8.73697 96.8422, 8.33886 97.3145\\nQ 7.94749 97.7868, 7.94749 98.7315\\nQ 7.94749 99.6964, 8.33886 100.182\\nQ 8.73697 100.668, 9.46571 100.668\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 45.0461 42.1491\\nL 45.6938 42.1491\\nL 45.6938 44.1801\\nL 48.1365 44.1801\\nL 48.1365 42.1491\\nL 48.7843 42.1491\\nL 48.7843 46.9264\\nL 48.1365 46.9264\\nL 48.1365 44.72\\nL 45.6938 44.72\\nL 45.6938 46.9264\\nL 45.0461 46.9264\\nL 45.0461 42.1491\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 49.1216 44.5243\\nQ 49.1216 43.3772, 49.6884 42.7361\\nQ 50.2552 42.0951, 51.3146 42.0951\\nQ 52.374 42.0951, 52.9408 42.7361\\nQ 53.5076 43.3772, 53.5076 44.5243\\nQ 53.5076 45.6849, 52.9341 46.3461\\nQ 52.3605 47.0007, 51.3146 47.0007\\nQ 50.262 47.0007, 49.6884 46.3461\\nQ 49.1216 45.6916, 49.1216 44.5243\\nM 51.3146 46.4608\\nQ 52.0434 46.4608, 52.4347 45.975\\nQ 52.8328 45.4824, 52.8328 44.5243\\nQ 52.8328 43.5863, 52.4347 43.114\\nQ 52.0434 42.6349, 51.3146 42.6349\\nQ 50.5859 42.6349, 50.1878 43.1073\\nQ 49.7964 43.5796, 49.7964 44.5243\\nQ 49.7964 45.4892, 50.1878 45.975\\nQ 50.5859 46.4608, 51.3146 46.4608\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 144.03 36.2629\\nQ 144.03 35.1158, 144.596 34.4748\\nQ 145.163 33.8337, 146.223 33.8337\\nQ 147.282 33.8337, 147.849 34.4748\\nQ 148.416 35.1158, 148.416 36.2629\\nQ 148.416 37.4235, 147.842 38.0848\\nQ 147.268 38.7393, 146.223 38.7393\\nQ 145.17 38.7393, 144.596 38.0848\\nQ 144.03 37.4302, 144.03 36.2629\\nM 146.223 38.1995\\nQ 146.951 38.1995, 147.343 37.7136\\nQ 147.741 37.2211, 147.741 36.2629\\nQ 147.741 35.325, 147.343 34.8526\\nQ 146.951 34.3736, 146.223 34.3736\\nQ 145.494 34.3736, 145.096 34.8459\\nQ 144.704 35.3182, 144.704 36.2629\\nQ 144.704 37.2278, 145.096 37.7136\\nQ 145.494 38.1995, 146.223 38.1995\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 148.989 33.8877\\nL 149.637 33.8877\\nL 149.637 35.9188\\nL 152.079 35.9188\\nL 152.079 33.8877\\nL 152.727 33.8877\\nL 152.727 38.6651\\nL 152.079 38.6651\\nL 152.079 36.4586\\nL 149.637 36.4586\\nL 149.637 38.6651\\nL 148.989 38.6651\\nL 148.989 33.8877\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.97, "data-ID": 506, "mols2grid-id": 100, "mols2grid-tooltip": "<strong>Name</strong>: hydrocortisone<br><strong>SMILES</strong>: O=C(C(O)(C(C(C(C(C(C(=CC(=O)C1)C2)(C1)C)C3O)C2)C4)(C3)C)C4)CO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.97</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C1C=C2CCC3C4CCC(O)(C(=O)COC(=O)C)C4(C)CC(O)C3C2(C)C=C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 12.0979,93.0234 L 15.9794,90.8033' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.9794,90.8033 L 19.8609,88.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 10.6679,90.5232 L 14.5494,88.3032' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 14.5494,88.3032 L 18.4309,86.0831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.1459,87.3332 L 31.0604,94.3417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-1' d='M 19.1459,73.4919 L 19.1459,87.3332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 31.796,95.5798 L 42.414,85.9204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 30.3248,93.1037 L 43.8852,88.3965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1496,87.1585 L 55.2398,94.167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-3' d='M 43.1496,73.3162 L 43.1496,87.1585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.2398,94.167 L 67.1533,86.9828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 67.1533,86.9828 L 66.9786,73.1414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 66.9786,73.1414 L 78.893,66.3086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-6' d='M 55.0641,66.4834 L 66.9786,73.1414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.893,66.3086 L 103.072,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-7' d='M 78.893,52.4663 L 78.893,66.3086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 103.072,66.4834 L 103.072,52.2916' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 103.072,52.2916 L 90.9822,45.2831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 90.9822,45.2831 L 87.0306,43.1533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.0306,43.1533 L 83.079,41.0236' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 90.9822,45.2831 L 103.426,38.4042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-10 atom-19' d='M 90.9822,45.2831 L 78.893,52.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 104.866,38.3963 L 104.841,33.8868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 104.841,33.8868 L 104.816,29.3774' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 101.986,38.4121 L 101.961,33.9027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 101.961,33.9027 L 101.936,29.3933' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 103.426,38.4042 L 115.946,45.5365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 115.946,45.5365 L 121.012,42.5767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 121.012,42.5767 L 126.077,39.6168' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 130.698,39.583 L 135.802,42.4911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 135.802,42.4911 L 140.907,45.3992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 141.633,46.6427 L 145.488,44.3903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 145.488,44.3903 L 149.344,42.138' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 140.18,44.1558 L 144.036,41.9035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 144.036,41.9035 L 147.891,39.6511' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-18' d='M 140.907,45.3992 L 140.97,56.9201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 78.893,52.4663 L 68.9285,58.2488' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 78.893,52.4663 L 66.9786,45.4578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.9786,45.4578 L 54.8894,52.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 54.8894,52.4663 L 50.9992,50.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 50.9992,50.2571 L 47.109,48.0479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 54.8894,52.4663 L 55.0641,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 55.0641,66.4834 L 43.1496,73.3162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 43.1496,73.3162 L 43.0152,61.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-27' d='M 43.1496,73.3162 L 30.8847,66.6591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-28' d='M 30.1602,65.4144 L 19.8704,74.7365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-28' d='M 31.6092,67.9037 L 18.4215,72.2473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.19487 93.0653\\nQ 7.19487 92.0453, 7.69887 91.4753\\nQ 8.20287 90.9053, 9.14487 90.9053\\nQ 10.0869 90.9053, 10.5909 91.4753\\nQ 11.0949 92.0453, 11.0949 93.0653\\nQ 11.0949 94.0973, 10.5849 94.6853\\nQ 10.0749 95.2673, 9.14487 95.2673\\nQ 8.20887 95.2673, 7.69887 94.6853\\nQ 7.19487 94.1033, 7.19487 93.0653\\nM 9.14487 94.7873\\nQ 9.79287 94.7873, 10.1409 94.3553\\nQ 10.4949 93.9173, 10.4949 93.0653\\nQ 10.4949 92.2313, 10.1409 91.8113\\nQ 9.79287 91.3853, 9.14487 91.3853\\nQ 8.49687 91.3853, 8.14287 91.8053\\nQ 7.79487 92.2253, 7.79487 93.0653\\nQ 7.79487 93.9233, 8.14287 94.3553\\nQ 8.49687 94.7873, 9.14487 94.7873\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 75.267 37.7174\\nL 75.843 37.7174\\nL 75.843 39.5234\\nL 78.015 39.5234\\nL 78.015 37.7174\\nL 78.591 37.7174\\nL 78.591 41.9654\\nL 78.015 41.9654\\nL 78.015 40.0034\\nL 75.843 40.0034\\nL 75.843 41.9654\\nL 75.267 41.9654\\nL 75.267 37.7174\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 78.891 39.8294\\nQ 78.891 38.8094, 79.395 38.2394\\nQ 79.899 37.6694, 80.841 37.6694\\nQ 81.783 37.6694, 82.287 38.2394\\nQ 82.791 38.8094, 82.791 39.8294\\nQ 82.791 40.8614, 82.281 41.4494\\nQ 81.771 42.0314, 80.841 42.0314\\nQ 79.905 42.0314, 79.395 41.4494\\nQ 78.891 40.8674, 78.891 39.8294\\nM 80.841 41.5514\\nQ 81.489 41.5514, 81.837 41.1194\\nQ 82.191 40.6814, 82.191 39.8294\\nQ 82.191 38.9954, 81.837 38.5754\\nQ 81.489 38.1494, 80.841 38.1494\\nQ 80.193 38.1494, 79.839 38.5694\\nQ 79.491 38.9894, 79.491 39.8294\\nQ 79.491 40.6874, 79.839 41.1194\\nQ 80.193 41.5514, 80.841 41.5514\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 101.412 26.8953\\nQ 101.412 25.8753, 101.916 25.3053\\nQ 102.42 24.7353, 103.362 24.7353\\nQ 104.304 24.7353, 104.808 25.3053\\nQ 105.312 25.8753, 105.312 26.8953\\nQ 105.312 27.9273, 104.802 28.5153\\nQ 104.292 29.0973, 103.362 29.0973\\nQ 102.426 29.0973, 101.916 28.5153\\nQ 101.412 27.9333, 101.412 26.8953\\nM 103.362 28.6173\\nQ 104.01 28.6173, 104.358 28.1853\\nQ 104.712 27.7473, 104.712 26.8953\\nQ 104.712 26.0613, 104.358 25.6413\\nQ 104.01 25.2153, 103.362 25.2153\\nQ 102.714 25.2153, 102.36 25.6353\\nQ 102.012 26.0553, 102.012 26.8953\\nQ 102.012 27.7533, 102.36 28.1853\\nQ 102.714 28.6173, 103.362 28.6173\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 126.438 38.2789\\nQ 126.438 37.2589, 126.942 36.6889\\nQ 127.446 36.1189, 128.388 36.1189\\nQ 129.33 36.1189, 129.834 36.6889\\nQ 130.338 37.2589, 130.338 38.2789\\nQ 130.338 39.3109, 129.828 39.8989\\nQ 129.318 40.4809, 128.388 40.4809\\nQ 127.452 40.4809, 126.942 39.8989\\nQ 126.438 39.3169, 126.438 38.2789\\nM 128.388 40.0009\\nQ 129.036 40.0009, 129.384 39.5689\\nQ 129.738 39.1309, 129.738 38.2789\\nQ 129.738 37.4449, 129.384 37.0249\\nQ 129.036 36.5989, 128.388 36.5989\\nQ 127.74 36.5989, 127.386 37.0189\\nQ 127.038 37.4389, 127.038 38.2789\\nQ 127.038 39.1369, 127.386 39.5689\\nQ 127.74 40.0009, 128.388 40.0009\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 148.905 39.599\\nQ 148.905 38.579, 149.409 38.009\\nQ 149.913 37.439, 150.855 37.439\\nQ 151.797 37.439, 152.301 38.009\\nQ 152.805 38.579, 152.805 39.599\\nQ 152.805 40.631, 152.295 41.219\\nQ 151.785 41.801, 150.855 41.801\\nQ 149.919 41.801, 149.409 41.219\\nQ 148.905 40.637, 148.905 39.599\\nM 150.855 41.321\\nQ 151.503 41.321, 151.851 40.889\\nQ 152.205 40.451, 152.205 39.599\\nQ 152.205 38.765, 151.851 38.345\\nQ 151.503 37.919, 150.855 37.919\\nQ 150.207 37.919, 149.853 38.339\\nQ 149.505 38.759, 149.505 39.599\\nQ 149.505 40.457, 149.853 40.889\\nQ 150.207 41.321, 150.855 41.321\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 39.297 44.6769\\nL 39.873 44.6769\\nL 39.873 46.4829\\nL 42.045 46.4829\\nL 42.045 44.6769\\nL 42.621 44.6769\\nL 42.621 48.9249\\nL 42.045 48.9249\\nL 42.045 46.9629\\nL 39.873 46.9629\\nL 39.873 48.9249\\nL 39.297 48.9249\\nL 39.297 44.6769\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 42.921 46.7889\\nQ 42.921 45.7689, 43.425 45.1989\\nQ 43.929 44.6289, 44.871 44.6289\\nQ 45.813 44.6289, 46.317 45.1989\\nQ 46.821 45.7689, 46.821 46.7889\\nQ 46.821 47.8209, 46.311 48.4089\\nQ 45.801 48.9909, 44.871 48.9909\\nQ 43.935 48.9909, 43.425 48.4089\\nQ 42.921 47.8269, 42.921 46.7889\\nM 44.871 48.5109\\nQ 45.519 48.5109, 45.867 48.0789\\nQ 46.221 47.6409, 46.221 46.7889\\nQ 46.221 45.9549, 45.867 45.5349\\nQ 45.519 45.1089, 44.871 45.1089\\nQ 44.223 45.1089, 43.869 45.5289\\nQ 43.521 45.9489, 43.521 46.7889\\nQ 43.521 47.6469, 43.869 48.0789\\nQ 44.223 48.5109, 44.871 48.5109\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.37, "data-ID": 511, "mols2grid-id": 101, "mols2grid-tooltip": "<strong>Name</strong>: prednisolone_acetate<br><strong>SMILES</strong>: O=C1C=C2CCC3C4CCC(O)(C(=O)COC(=O)C)C4(C)CC(O)C3C2(C)C=C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.37</span>", "style-Solubility": "color: red"}, {"data-SMILES": "C1C(=O)C=C2CCC3C4CCC(C(=O)CO)C4(C)CCC3C2(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 30.0593,86.752 L 30.0593,104.491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-0' d='M 45.1034,77.9952 L 30.0593,86.752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.143,102.889 L 24.1187,105.762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.1187,105.762 L 19.0944,108.636' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.9756,106.093 L 25.9513,108.966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.9513,108.966 L 20.927,111.84' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.0593,104.491 L 45.3286,113.473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.2713,115.059 L 59.879,102.68' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 44.3858,111.886 L 61.7645,105.853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.8218,104.267 L 76.3162,113.249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-4' d='M 60.8218,86.5268 L 60.8218,104.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.3162,113.249 L 91.5842,104.042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.5842,104.042 L 91.3603,86.3029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 91.3603,86.3029 L 106.63,77.5461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-7' d='M 76.091,77.77 L 91.3603,86.3029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 106.63,77.5461 L 137.617,77.77' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-8' d='M 106.63,59.8062 L 106.63,77.5461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 137.617,77.77 L 137.617,59.5823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 137.617,59.5823 L 122.123,50.6004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.123,50.6004 L 122.092,32.1308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-11 atom-16' d='M 122.123,50.6004 L 106.63,59.8062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.012,30.5308 L 117.996,27.6475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 117.996,27.6475 L 112.98,24.7643' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 121.172,33.7309 L 116.156,30.8477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 116.156,30.8477 L 111.141,27.9645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 122.092,32.1308 L 138.064,22.8622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.064,22.8622 L 138.055,17.0265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.055,17.0265 L 138.045,11.1907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 106.63,59.8062 L 106.596,45.0414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 106.63,59.8062 L 91.3603,50.8243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 91.3603,50.8243 L 75.8671,59.8062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 75.8671,59.8062 L 76.091,77.77' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 76.091,77.77 L 60.8218,86.5268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 60.8218,86.5268 L 60.6495,71.7632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-23' d='M 60.8218,86.5268 L 45.1034,77.9952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 14.843 111.836\\nQ 14.843 110.581, 15.4631 109.88\\nQ 16.0832 109.178, 17.2422 109.178\\nQ 18.4013 109.178, 19.0214 109.88\\nQ 19.6415 110.581, 19.6415 111.836\\nQ 19.6415 113.106, 19.014 113.829\\nQ 18.3865 114.545, 17.2422 114.545\\nQ 16.0906 114.545, 15.4631 113.829\\nQ 14.843 113.113, 14.843 111.836\\nM 17.2422 113.955\\nQ 18.0395 113.955, 18.4677 113.423\\nQ 18.9033 112.884, 18.9033 111.836\\nQ 18.9033 110.81, 18.4677 110.293\\nQ 18.0395 109.769, 17.2422 109.769\\nQ 16.4449 109.769, 16.0094 110.286\\nQ 15.5812 110.803, 15.5812 111.836\\nQ 15.5812 112.892, 16.0094 113.423\\nQ 16.4449 113.955, 17.2422 113.955\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 106.893 24.7878\\nQ 106.893 23.5328, 107.513 22.8315\\nQ 108.133 22.1301, 109.292 22.1301\\nQ 110.451 22.1301, 111.071 22.8315\\nQ 111.691 23.5328, 111.691 24.7878\\nQ 111.691 26.0576, 111.064 26.7811\\nQ 110.436 27.4972, 109.292 27.4972\\nQ 108.14 27.4972, 107.513 26.7811\\nQ 106.893 26.065, 106.893 24.7878\\nM 109.292 26.9066\\nQ 110.089 26.9066, 110.518 26.375\\nQ 110.953 25.8361, 110.953 24.7878\\nQ 110.953 23.7617, 110.518 23.2449\\nQ 110.089 22.7207, 109.292 22.7207\\nQ 108.495 22.7207, 108.059 23.2375\\nQ 107.631 23.7543, 107.631 24.7878\\nQ 107.631 25.8435, 108.059 26.375\\nQ 108.495 26.9066, 109.292 26.9066\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 135.641 8.11221\\nQ 135.641 6.8572, 136.261 6.15587\\nQ 136.881 5.45455, 138.04 5.45455\\nQ 139.199 5.45455, 139.82 6.15587\\nQ 140.44 6.8572, 140.44 8.11221\\nQ 140.44 9.38198, 139.812 10.1055\\nQ 139.185 10.8215, 138.04 10.8215\\nQ 136.889 10.8215, 136.261 10.1055\\nQ 135.641 9.38936, 135.641 8.11221\\nM 138.04 10.231\\nQ 138.838 10.231, 139.266 9.69942\\nQ 139.701 9.16051, 139.701 8.11221\\nQ 139.701 7.08606, 139.266 6.56929\\nQ 138.838 6.04514, 138.04 6.04514\\nQ 137.243 6.04514, 136.808 6.5619\\nQ 136.379 7.07867, 136.379 8.11221\\nQ 136.379 9.16789, 136.808 9.69942\\nQ 137.243 10.231, 138.04 10.231\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 141.067 5.5136\\nL 141.776 5.5136\\nL 141.776 7.73571\\nL 144.448 7.73571\\nL 144.448 5.5136\\nL 145.157 5.5136\\nL 145.157 10.7403\\nL 144.448 10.7403\\nL 144.448 8.3263\\nL 141.776 8.3263\\nL 141.776 10.7403\\nL 141.067 10.7403\\nL 141.067 5.5136\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.75, "data-ID": 516, "mols2grid-id": 102, "mols2grid-tooltip": "<strong>Name</strong>: deoxycorticosterone<br><strong>SMILES</strong>: C1C(=O)C=C2CCC3C4CCC(C(=O)CO)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.75</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CC12CC(O)C3(F)C(CCC4=CC(=O)CCC43C)C2CCC1(O)C(=O)CO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 91.137,37.6799 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 91.1674,51.1752 L 77.211,42.9656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-1' d='M 91.1674,67.3898 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-1' d='M 105.328,42.7609 L 91.1674,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 77.211,42.9656 L 63.0499,51.1752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.0499,51.1752 L 58.4475,48.5615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.4475,48.5615 L 53.845,45.9478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 63.0499,51.1752 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.2546,67.5945 L 58.2737,64.7506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.2737,64.7506 L 53.2928,61.9067' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 63.2546,67.5945 L 77.211,75.3936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 49.2982,75.5983 L 63.2546,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 77.211,75.3936 L 77.4157,91.6071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-7 atom-18' d='M 77.211,75.3936 L 91.1674,67.3898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 77.4157,91.6071 L 63.4604,100.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 63.4604,100.023 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 48.4365,90.3627 L 35.9988,101.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 50.1599,93.2631 L 34.2754,98.777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-10' d='M 49.2982,75.5983 L 49.2982,91.8129' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 35.1371,100.227 L 21.1808,92.0176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 20.3432,90.5533 L 15.7509,93.1798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 15.7509,93.1798 L 11.1586,95.8064' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 22.0183,93.4819 L 17.4259,96.1085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 17.4259,96.1085 L 12.8336,98.7351' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 21.1808,92.0176 L 21.1808,75.8041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 21.1808,75.8041 L 34.9313,67.8003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 34.9313,67.8003 L 49.2982,75.5983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 49.2982,75.5983 L 37.6911,82.4832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 91.1674,67.3898 L 119.491,67.5945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 119.491,67.5945 L 119.491,50.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 119.491,50.9705 L 105.328,42.7609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-22' d='M 105.328,42.7609 L 105.486,48.1292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-21 atom-22' d='M 105.486,48.1292 L 105.643,53.4975' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-21 atom-23' d='M 105.328,42.7609 L 119.904,34.7031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 121.591,34.6938 L 121.562,29.3598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 121.562,29.3598 L 121.533,24.0258' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 118.218,34.7123 L 118.188,29.3783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-24' d='M 118.188,29.3783 L 118.159,24.0443' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-25' d='M 119.904,34.7031 L 134.57,43.0578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-26' d='M 134.57,43.0578 L 139.131,40.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-25 atom-26' d='M 139.131,40.3928 L 143.692,37.7279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 45.0461 42.1491\\nL 45.6938 42.1491\\nL 45.6938 44.1801\\nL 48.1365 44.1801\\nL 48.1365 42.1491\\nL 48.7843 42.1491\\nL 48.7843 46.9264\\nL 48.1365 46.9264\\nL 48.1365 44.72\\nL 45.6938 44.72\\nL 45.6938 46.9264\\nL 45.0461 46.9264\\nL 45.0461 42.1491\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 49.1216 44.5243\\nQ 49.1216 43.3772, 49.6884 42.7361\\nQ 50.2552 42.0951, 51.3146 42.0951\\nQ 52.374 42.0951, 52.9408 42.7361\\nQ 53.5076 43.3772, 53.5076 44.5243\\nQ 53.5076 45.6849, 52.9341 46.3461\\nQ 52.3605 47.0007, 51.3146 47.0007\\nQ 50.262 47.0007, 49.6884 46.3461\\nQ 49.1216 45.6916, 49.1216 44.5243\\nM 51.3146 46.4608\\nQ 52.0434 46.4608, 52.4347 45.975\\nQ 52.8328 45.4824, 52.8328 44.5243\\nQ 52.8328 43.5863, 52.4347 43.114\\nQ 52.0434 42.6349, 51.3146 42.6349\\nQ 50.5859 42.6349, 50.1878 43.1073\\nQ 49.7964 43.5796, 49.7964 44.5243\\nQ 49.7964 45.4892, 50.1878 45.975\\nQ 50.5859 46.4608, 51.3146 46.4608\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 50.1147 58.5144\\nL 52.9554 58.5144\\nL 52.9554 59.061\\nL 50.7557 59.061\\nL 50.7557 60.5117\\nL 52.7125 60.5117\\nL 52.7125 61.065\\nL 50.7557 61.065\\nL 50.7557 63.2917\\nL 50.1147 63.2917\\nL 50.1147 58.5144\\n' fill='#33CCCC'/>\\n<path class='atom-13' d='M 7.27273 98.7315\\nQ 7.27273 97.5844, 7.83953 96.9434\\nQ 8.40633 96.3023, 9.46571 96.3023\\nQ 10.5251 96.3023, 11.0919 96.9434\\nQ 11.6587 97.5844, 11.6587 98.7315\\nQ 11.6587 99.8921, 11.0851 100.553\\nQ 10.5116 101.208, 9.46571 101.208\\nQ 8.41308 101.208, 7.83953 100.553\\nQ 7.27273 99.8988, 7.27273 98.7315\\nM 9.46571 100.668\\nQ 10.1945 100.668, 10.5858 100.182\\nQ 10.9839 99.6897, 10.9839 98.7315\\nQ 10.9839 97.7936, 10.5858 97.3212\\nQ 10.1945 96.8422, 9.46571 96.8422\\nQ 8.73697 96.8422, 8.33886 97.3145\\nQ 7.94749 97.7868, 7.94749 98.7315\\nQ 7.94749 99.6964, 8.33886 100.182\\nQ 8.73697 100.668, 9.46571 100.668\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 103.531 56.2641\\nQ 103.531 55.117, 104.098 54.4759\\nQ 104.665 53.8349, 105.724 53.8349\\nQ 106.784 53.8349, 107.35 54.4759\\nQ 107.917 55.117, 107.917 56.2641\\nQ 107.917 57.4246, 107.344 58.0859\\nQ 106.77 58.7404, 105.724 58.7404\\nQ 104.672 58.7404, 104.098 58.0859\\nQ 103.531 57.4314, 103.531 56.2641\\nM 105.724 58.2006\\nQ 106.453 58.2006, 106.844 57.7148\\nQ 107.243 57.2222, 107.243 56.2641\\nQ 107.243 55.3261, 106.844 54.8538\\nQ 106.453 54.3747, 105.724 54.3747\\nQ 104.996 54.3747, 104.597 54.847\\nQ 104.206 55.3194, 104.206 56.2641\\nQ 104.206 57.229, 104.597 57.7148\\nQ 104.996 58.2006, 105.724 58.2006\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 108.491 53.8889\\nL 109.139 53.8889\\nL 109.139 55.9199\\nL 111.581 55.9199\\nL 111.581 53.8889\\nL 112.229 53.8889\\nL 112.229 58.6662\\nL 111.581 58.6662\\nL 111.581 56.4597\\nL 109.139 56.4597\\nL 109.139 58.6662\\nL 108.491 58.6662\\nL 108.491 53.8889\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 117.637 21.2213\\nQ 117.637 20.0742, 118.204 19.4331\\nQ 118.771 18.7921, 119.83 18.7921\\nQ 120.89 18.7921, 121.456 19.4331\\nQ 122.023 20.0742, 122.023 21.2213\\nQ 122.023 22.3819, 121.45 23.0431\\nQ 120.876 23.6977, 119.83 23.6977\\nQ 118.778 23.6977, 118.204 23.0431\\nQ 117.637 22.3886, 117.637 21.2213\\nM 119.83 23.1578\\nQ 120.559 23.1578, 120.95 22.672\\nQ 121.348 22.1794, 121.348 21.2213\\nQ 121.348 20.2833, 120.95 19.811\\nQ 120.559 19.3319, 119.83 19.3319\\nQ 119.101 19.3319, 118.703 19.8043\\nQ 118.312 20.2766, 118.312 21.2213\\nQ 118.312 22.1862, 118.703 22.672\\nQ 119.101 23.1578, 119.83 23.1578\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 144.03 36.2629\\nQ 144.03 35.1158, 144.596 34.4748\\nQ 145.163 33.8337, 146.223 33.8337\\nQ 147.282 33.8337, 147.849 34.4748\\nQ 148.416 35.1158, 148.416 36.2629\\nQ 148.416 37.4235, 147.842 38.0848\\nQ 147.268 38.7393, 146.223 38.7393\\nQ 145.17 38.7393, 144.596 38.0848\\nQ 144.03 37.4302, 144.03 36.2629\\nM 146.223 38.1995\\nQ 146.951 38.1995, 147.343 37.7136\\nQ 147.741 37.2211, 147.741 36.2629\\nQ 147.741 35.325, 147.343 34.8526\\nQ 146.951 34.3736, 146.223 34.3736\\nQ 145.494 34.3736, 145.096 34.8459\\nQ 144.704 35.3182, 144.704 36.2629\\nQ 144.704 37.2278, 145.096 37.7136\\nQ 145.494 38.1995, 146.223 38.1995\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 148.989 33.8877\\nL 149.637 33.8877\\nL 149.637 35.9188\\nL 152.079 35.9188\\nL 152.079 33.8877\\nL 152.727 33.8877\\nL 152.727 38.6651\\nL 152.079 38.6651\\nL 152.079 36.4586\\nL 149.637 36.4586\\nL 149.637 38.6651\\nL 148.989 38.6651\\nL 148.989 33.8877\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.43, "data-ID": 521, "mols2grid-id": 103, "mols2grid-tooltip": "<strong>Name</strong>: fludrocortisone<br><strong>SMILES</strong>: CC12CC(O)C3(F)C(CCC4=CC(=O)CCC43C)C2CCC1(O)C(=O)CO<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.43</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)c(c(O)ccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.286,103.222 L 111.303,91.6161' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.303,91.6161 L 111.319,80.0103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.996,103.212 L 104.013,91.6058' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.013,91.6058 L 104.029,80' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.674,80.0051 L 117.579,74.3091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.579,74.3091 L 127.484,68.613' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.674,80.0051 L 76.1253,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.1253,61.7047 L 76.1253,25.2544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.8353,56.2371 L 68.8353,30.7219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 76.1253,61.7047 L 44.5594,79.9298' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.1253,25.2544 L 86.0191,19.5425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.0191,19.5425 L 95.913,13.8307' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 76.1253,25.2544 L 44.5594,7.0292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 44.5594,7.0292 L 12.9934,25.2544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 43.4696,16.0763 L 21.3734,28.8339' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.9934,25.2544 L 12.9934,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 44.5594,79.9298 L 12.9934,61.7047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 43.4696,70.8827 L 21.3734,58.1251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 102.894 109.195\\nQ 102.894 106.716, 104.119 105.331\\nQ 105.344 103.946, 107.633 103.946\\nQ 109.922 103.946, 111.147 105.331\\nQ 112.372 106.716, 112.372 109.195\\nQ 112.372 111.702, 111.132 113.131\\nQ 109.893 114.545, 107.633 114.545\\nQ 105.358 114.545, 104.119 113.131\\nQ 102.894 111.717, 102.894 109.195\\nM 107.633 113.379\\nQ 109.208 113.379, 110.053 112.329\\nQ 110.914 111.265, 110.914 109.195\\nQ 110.914 107.168, 110.053 106.147\\nQ 109.208 105.112, 107.633 105.112\\nQ 106.058 105.112, 105.198 106.133\\nQ 104.352 107.153, 104.352 109.195\\nQ 104.352 111.28, 105.198 112.329\\nQ 106.058 113.379, 107.633 113.379\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 128.213 65.4979\\nQ 128.213 63.0193, 129.438 61.6342\\nQ 130.662 60.2491, 132.951 60.2491\\nQ 135.24 60.2491, 136.465 61.6342\\nQ 137.69 63.0193, 137.69 65.4979\\nQ 137.69 68.0057, 136.451 69.4346\\nQ 135.211 70.8488, 132.951 70.8488\\nQ 130.677 70.8488, 129.438 69.4346\\nQ 128.213 68.0203, 128.213 65.4979\\nM 132.951 69.6824\\nQ 134.526 69.6824, 135.372 68.6326\\nQ 136.232 67.5683, 136.232 65.4979\\nQ 136.232 63.4713, 135.372 62.4507\\nQ 134.526 61.4155, 132.951 61.4155\\nQ 131.377 61.4155, 130.516 62.4361\\nQ 129.671 63.4567, 129.671 65.4979\\nQ 129.671 67.5829, 130.516 68.6326\\nQ 131.377 69.6824, 132.951 69.6824\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 138.929 60.3657\\nL 140.329 60.3657\\nL 140.329 64.7543\\nL 145.607 64.7543\\nL 145.607 60.3657\\nL 147.007 60.3657\\nL 147.007 70.6884\\nL 145.607 70.6884\\nL 145.607 65.9207\\nL 140.329 65.9207\\nL 140.329 70.6884\\nL 138.929 70.6884\\nL 138.929 60.3657\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 96.642 10.7034\\nQ 96.642 8.22477, 97.8667 6.83966\\nQ 99.0915 5.45455, 101.381 5.45455\\nQ 103.67 5.45455, 104.894 6.83966\\nQ 106.119 8.22477, 106.119 10.7034\\nQ 106.119 13.2112, 104.88 14.64\\nQ 103.64 16.0543, 101.381 16.0543\\nQ 99.106 16.0543, 97.8667 14.64\\nQ 96.642 13.2258, 96.642 10.7034\\nM 101.381 14.8879\\nQ 102.955 14.8879, 103.801 13.8381\\nQ 104.661 12.7738, 104.661 10.7034\\nQ 104.661 8.67675, 103.801 7.65614\\nQ 102.955 6.62096, 101.381 6.62096\\nQ 99.8059 6.62096, 98.9457 7.64156\\nQ 98.1 8.66217, 98.1 10.7034\\nQ 98.1 12.7883, 98.9457 13.8381\\nQ 99.8059 14.8879, 101.381 14.8879\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 107.358 5.57119\\nL 108.758 5.57119\\nL 108.758 9.9598\\nL 114.036 9.9598\\nL 114.036 5.57119\\nL 115.436 5.57119\\nL 115.436 15.8939\\nL 114.036 15.8939\\nL 114.036 11.1262\\nL 108.758 11.1262\\nL 108.758 15.8939\\nL 107.358 15.8939\\nL 107.358 5.57119\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.82, "data-ID": 526, "mols2grid-id": 104, "mols2grid-tooltip": "<strong>Name</strong>: salicylic_acid<br><strong>SMILES</strong>: O=C(O)c(c(O)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.82</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)c(ccc(O)c1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 127.487,46.7548 L 120.669,50.6757' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.669,50.6757 L 113.851,54.5966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.989,51.1049 L 123.171,55.0258' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 123.171,55.0258 L 116.353,58.9467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.102,56.7717 L 115.087,67.2134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.087,67.2134 L 115.071,77.6551' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 115.102,56.7717 L 93.385,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.954,84.132 L 127.867,89.3025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.867,89.3025 L 136.78,94.4729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 136.78,94.4729 L 136.752,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.385,44.1745 L 93.385,19.0838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 88.3669,40.4109 L 88.3669,22.8474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 93.385,44.1745 L 71.6565,56.7198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.385,19.0838 L 71.6565,6.53846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 71.6565,6.53846 L 49.928,19.0838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.9064,12.7661 L 55.6964,21.5478' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.928,19.0838 L 43.1176,15.1521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 43.1176,15.1521 L 36.3071,11.2203' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 49.928,19.0838 L 49.928,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 71.6565,56.7198 L 49.928,44.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 70.9064,50.4922 L 55.6964,41.7105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.24 46.7856\\nQ 129.24 45.0794, 130.083 44.126\\nQ 130.926 43.1725, 132.501 43.1725\\nQ 134.077 43.1725, 134.92 44.126\\nQ 135.763 45.0794, 135.763 46.7856\\nQ 135.763 48.5118, 134.91 49.4954\\nQ 134.057 50.4689, 132.501 50.4689\\nQ 130.936 50.4689, 130.083 49.4954\\nQ 129.24 48.5219, 129.24 46.7856\\nM 132.501 49.666\\nQ 133.585 49.666, 134.167 48.9434\\nQ 134.76 48.2107, 134.76 46.7856\\nQ 134.76 45.3905, 134.167 44.688\\nQ 133.585 43.9754, 132.501 43.9754\\nQ 131.417 43.9754, 130.825 44.678\\nQ 130.243 45.3805, 130.243 46.7856\\nQ 130.243 48.2208, 130.825 48.9434\\nQ 131.417 49.666, 132.501 49.666\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 111.803 81.8958\\nQ 111.803 80.1896, 112.646 79.2362\\nQ 113.489 78.2827, 115.065 78.2827\\nQ 116.641 78.2827, 117.484 79.2362\\nQ 118.327 80.1896, 118.327 81.8958\\nQ 118.327 83.622, 117.474 84.6056\\nQ 116.621 85.5791, 115.065 85.5791\\nQ 113.499 85.5791, 112.646 84.6056\\nQ 111.803 83.6321, 111.803 81.8958\\nM 115.065 84.7762\\nQ 116.149 84.7762, 116.731 84.0536\\nQ 117.323 83.3209, 117.323 81.8958\\nQ 117.323 80.5008, 116.731 79.7982\\nQ 116.149 79.0856, 115.065 79.0856\\nQ 113.981 79.0856, 113.389 79.7882\\nQ 112.807 80.4907, 112.807 81.8958\\nQ 112.807 83.331, 113.389 84.0536\\nQ 113.981 84.7762, 115.065 84.7762\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 23.2198 5.53484\\nL 24.1833 5.53484\\nL 24.1833 8.55575\\nL 27.8164 8.55575\\nL 27.8164 5.53484\\nL 28.7799 5.53484\\nL 28.7799 12.6405\\nL 27.8164 12.6405\\nL 27.8164 9.35865\\nL 24.1833 9.35865\\nL 24.1833 12.6405\\nL 23.2198 12.6405\\nL 23.2198 5.53484\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 29.2817 9.0676\\nQ 29.2817 7.36144, 30.1248 6.40799\\nQ 30.9678 5.45455, 32.5435 5.45455\\nQ 34.1192 5.45455, 34.9622 6.40799\\nQ 35.8053 7.36144, 35.8053 9.0676\\nQ 35.8053 10.7938, 34.9522 11.7774\\nQ 34.0991 12.7509, 32.5435 12.7509\\nQ 30.9778 12.7509, 30.1248 11.7774\\nQ 29.2817 10.8039, 29.2817 9.0676\\nM 32.5435 11.948\\nQ 33.6274 11.948, 34.2095 11.2254\\nQ 34.8017 10.4928, 34.8017 9.0676\\nQ 34.8017 7.67256, 34.2095 6.97002\\nQ 33.6274 6.25745, 32.5435 6.25745\\nQ 31.4596 6.25745, 30.8674 6.95999\\nQ 30.2853 7.66252, 30.2853 9.0676\\nQ 30.2853 10.5028, 30.8674 11.2254\\nQ 31.4596 11.948, 32.5435 11.948\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.35, "data-ID": 531, "mols2grid-id": 105, "mols2grid-tooltip": "<strong>Name</strong>: ethyl-p-hydroxybenzoate<br><strong>SMILES</strong>: O=C(OCC)c(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.35</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(c(ccc1)Cl)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.611,90.5814 L 102.432,84.7051' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.432,84.7051 L 92.2537,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.2537,78.8288 L 92.2537,41.3288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.7537,73.2038 L 84.7537,46.9538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 92.2537,78.8288 L 59.7788,97.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.2537,41.3288 L 59.7788,22.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.2537,41.3288 L 102.822,35.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 102.822,35.2273 L 113.391,29.1258' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.7788,22.5788 L 27.3038,41.3288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.6576,31.8864 L 35.9251,45.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 27.3038,41.3288 L 27.3038,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 59.7788,97.5788 L 27.3038,78.8288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 58.6576,88.2711 L 35.9251,75.1461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 113.361 93.8588\\nQ 113.361 91.3088, 114.621 89.8838\\nQ 115.881 88.4588, 118.236 88.4588\\nQ 120.591 88.4588, 121.851 89.8838\\nQ 123.111 91.3088, 123.111 93.8588\\nQ 123.111 96.4388, 121.836 97.9088\\nQ 120.561 99.3638, 118.236 99.3638\\nQ 115.896 99.3638, 114.621 97.9088\\nQ 113.361 96.4538, 113.361 93.8588\\nM 118.236 98.1638\\nQ 119.856 98.1638, 120.726 97.0838\\nQ 121.611 95.9888, 121.611 93.8588\\nQ 121.611 91.7738, 120.726 90.7238\\nQ 119.856 89.6588, 118.236 89.6588\\nQ 116.616 89.6588, 115.731 90.7088\\nQ 114.861 91.7588, 114.861 93.8588\\nQ 114.861 96.0038, 115.731 97.0838\\nQ 116.616 98.1638, 118.236 98.1638\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 124.386 88.5788\\nL 125.826 88.5788\\nL 125.826 93.0938\\nL 131.256 93.0938\\nL 131.256 88.5788\\nL 132.696 88.5788\\nL 132.696 99.1988\\nL 131.256 99.1988\\nL 131.256 94.2938\\nL 125.826 94.2938\\nL 125.826 99.1988\\nL 124.386 99.1988\\nL 124.386 88.5788\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 114.141 26.6963\\nQ 114.141 24.0563, 115.371 22.6763\\nQ 116.616 21.2813, 118.971 21.2813\\nQ 121.161 21.2813, 122.331 22.8263\\nL 121.341 23.6363\\nQ 120.486 22.5113, 118.971 22.5113\\nQ 117.366 22.5113, 116.511 23.5913\\nQ 115.671 24.6563, 115.671 26.6963\\nQ 115.671 28.7963, 116.541 29.8763\\nQ 117.426 30.9563, 119.136 30.9563\\nQ 120.306 30.9563, 121.671 30.2513\\nL 122.091 31.3763\\nQ 121.536 31.7363, 120.696 31.9463\\nQ 119.856 32.1563, 118.926 32.1563\\nQ 116.616 32.1563, 115.371 30.7463\\nQ 114.141 29.3363, 114.141 26.6963\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 123.621 20.6363\\nL 125.001 20.6363\\nL 125.001 32.0213\\nL 123.621 32.0213\\nL 123.621 20.6363\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -1.06, "data-ID": 536, "mols2grid-id": 106, "mols2grid-tooltip": "<strong>Name</strong>: 2-chlorophenol<br><strong>SMILES</strong>: Oc(c(ccc1)Cl)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.06</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Clc1cc(Cl)cc(Cl)c1O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.267,83.1507 L 113.382,78.5988' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.382,78.5988 L 105.498,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.498,74.0469 L 105.498,46.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.9024,69.8505 L 99.9024,50.267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-1' d='M 81.2701,88.0351 L 105.498,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.498,46.0706 L 81.2701,32.0824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2701,32.0824 L 81.2701,23.3454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.2701,23.3454 L 81.2701,14.6084' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 81.2701,32.0824 L 57.0426,46.0706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 80.4337,39.0263 L 63.4744,48.818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 57.0426,46.0706 L 57.0426,74.0469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.0426,74.0469 L 47.8878,79.3321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 47.8878,79.3321 L 38.7331,84.6172' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 57.0426,74.0469 L 81.2701,88.0351' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 63.4744,71.2995 L 80.4337,81.0913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.2701,88.0351 L 81.2701,96.9427' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 81.2701,96.9427 L 81.2701,105.85' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.826 85.5116\\nQ 121.826 83.5421, 122.744 82.5126\\nQ 123.673 81.4718, 125.43 81.4718\\nQ 127.064 81.4718, 127.937 82.6245\\nL 127.198 83.2287\\nQ 126.56 82.3895, 125.43 82.3895\\nQ 124.232 82.3895, 123.595 83.1952\\nQ 122.968 83.9897, 122.968 85.5116\\nQ 122.968 87.0783, 123.617 87.884\\nQ 124.277 88.6897, 125.553 88.6897\\nQ 126.426 88.6897, 127.444 88.1638\\nL 127.757 89.0031\\nQ 127.343 89.2716, 126.717 89.4283\\nQ 126.09 89.585, 125.396 89.585\\nQ 123.673 89.585, 122.744 88.5331\\nQ 121.826 87.4812, 121.826 85.5116\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 128.899 80.9906\\nL 129.928 80.9906\\nL 129.928 89.4843\\nL 128.899 89.4843\\nL 128.899 80.9906\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 78.2151 9.97552\\nQ 78.2151 8.00599, 79.1327 6.97646\\nQ 80.0615 5.93574, 81.8185 5.93574\\nQ 83.4523 5.93574, 84.3251 7.08836\\nL 83.5866 7.69265\\nQ 82.9487 6.85336, 81.8185 6.85336\\nQ 80.6211 6.85336, 79.9832 7.65908\\nQ 79.3565 8.45361, 79.3565 9.97552\\nQ 79.3565 11.5422, 80.0056 12.3479\\nQ 80.6658 13.1536, 81.9416 13.1536\\nQ 82.8144 13.1536, 83.8328 12.6277\\nL 84.1461 13.467\\nQ 83.732 13.7355, 83.1054 13.8922\\nQ 82.4787 14.0489, 81.7849 14.0489\\nQ 80.0615 14.0489, 79.1327 12.997\\nQ 78.2151 11.9451, 78.2151 9.97552\\n' fill='#00CC00'/>\\n<path class='atom-4' d='M 85.2875 5.45455\\nL 86.3171 5.45455\\nL 86.3171 13.9482\\nL 85.2875 13.9482\\nL 85.2875 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 30.0716 85.5116\\nQ 30.0716 83.5421, 30.9892 82.5126\\nQ 31.918 81.4718, 33.6749 81.4718\\nQ 35.3087 81.4718, 36.1816 82.6245\\nL 35.443 83.2287\\nQ 34.8052 82.3895, 33.6749 82.3895\\nQ 32.4775 82.3895, 31.8397 83.1952\\nQ 31.213 83.9897, 31.213 85.5116\\nQ 31.213 87.0783, 31.8621 87.884\\nQ 32.5223 88.6897, 33.798 88.6897\\nQ 34.6709 88.6897, 35.6892 88.1638\\nL 36.0026 89.0031\\nQ 35.5885 89.2716, 34.9618 89.4283\\nQ 34.3352 89.585, 33.6414 89.585\\nQ 31.918 89.585, 30.9892 88.5331\\nQ 30.0716 87.4812, 30.0716 85.5116\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 37.144 80.9906\\nL 38.1735 80.9906\\nL 38.1735 89.4843\\nL 37.144 89.4843\\nL 37.144 80.9906\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 77.6332 110.439\\nQ 77.6332 108.536, 78.5732 107.473\\nQ 79.5132 106.41, 81.2701 106.41\\nQ 83.027 106.41, 83.967 107.473\\nQ 84.907 108.536, 84.907 110.439\\nQ 84.907 112.363, 83.9559 113.46\\nQ 83.0047 114.545, 81.2701 114.545\\nQ 79.5244 114.545, 78.5732 113.46\\nQ 77.6332 112.374, 77.6332 110.439\\nM 81.2701 113.65\\nQ 82.4787 113.65, 83.1278 112.844\\nQ 83.788 112.028, 83.788 110.439\\nQ 83.788 108.883, 83.1278 108.1\\nQ 82.4787 107.305, 81.2701 107.305\\nQ 80.0615 107.305, 79.4013 108.089\\nQ 78.7523 108.872, 78.7523 110.439\\nQ 78.7523 112.039, 79.4013 112.844\\nQ 80.0615 113.65, 81.2701 113.65\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 85.8582 106.499\\nL 86.9325 106.499\\nL 86.9325 109.868\\nL 90.9835 109.868\\nL 90.9835 106.499\\nL 92.0578 106.499\\nL 92.0578 114.422\\nL 90.9835 114.422\\nL 90.9835 110.763\\nL 86.9325 110.763\\nL 86.9325 114.422\\nL 85.8582 114.422\\nL 85.8582 106.499\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.34, "data-ID": 541, "mols2grid-id": 107, "mols2grid-tooltip": "<strong>Name</strong>: 2,4,6-trichlorophenol<br><strong>SMILES</strong>: Clc1cc(Cl)cc(Cl)c1O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.34</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)c(ccc(c1)Cl)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.012,97.3011 L 122.026,87.3213' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.026,87.3213 L 122.04,77.3416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.743,97.2922 L 115.757,87.3124' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.757,87.3124 L 115.771,77.3327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.906,77.3371 L 127.423,72.4391' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.423,72.4391 L 135.94,67.5411' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 118.906,77.3371 L 91.7768,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.7768,61.6006 L 91.7768,30.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 85.5081,56.8991 L 85.5081,34.9587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 91.7768,61.6006 L 64.6333,77.2723' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.7768,30.2571 L 64.6333,14.5854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.6333,14.5854 L 37.4899,30.2571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.6962,22.365 L 44.6958,33.3352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 37.4899,30.2571 L 37.4899,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 37.4899,30.2571 L 27.2333,24.3359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 27.2333,24.3359 L 16.9767,18.4146' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 64.6333,77.2723 L 37.4899,61.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 63.6962,69.4928 L 44.6958,58.5226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 114.795 102.437\\nQ 114.795 100.306, 115.849 99.1145\\nQ 116.902 97.9235, 118.87 97.9235\\nQ 120.838 97.9235, 121.892 99.1145\\nQ 122.945 100.306, 122.945 102.437\\nQ 122.945 104.593, 121.879 105.822\\nQ 120.813 107.038, 118.87 107.038\\nQ 116.914 107.038, 115.849 105.822\\nQ 114.795 104.606, 114.795 102.437\\nM 118.87 106.035\\nQ 120.224 106.035, 120.951 105.132\\nQ 121.691 104.217, 121.691 102.437\\nQ 121.691 100.694, 120.951 99.8166\\nQ 120.224 98.9265, 118.87 98.9265\\nQ 117.516 98.9265, 116.776 99.8041\\nQ 116.049 100.682, 116.049 102.437\\nQ 116.049 104.23, 116.776 105.132\\nQ 117.516 106.035, 118.87 106.035\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 136.567 64.8624\\nQ 136.567 62.7311, 137.62 61.54\\nQ 138.673 60.349, 140.641 60.349\\nQ 142.61 60.349, 143.663 61.54\\nQ 144.716 62.7311, 144.716 64.8624\\nQ 144.716 67.0188, 143.65 68.2475\\nQ 142.585 69.4636, 140.641 69.4636\\nQ 138.685 69.4636, 137.62 68.2475\\nQ 136.567 67.0314, 136.567 64.8624\\nM 140.641 68.4606\\nQ 141.995 68.4606, 142.722 67.558\\nQ 143.462 66.6427, 143.462 64.8624\\nQ 143.462 63.1197, 142.722 62.2421\\nQ 141.995 61.3519, 140.641 61.3519\\nQ 139.287 61.3519, 138.547 62.2296\\nQ 137.82 63.1072, 137.82 64.8624\\nQ 137.82 66.6553, 138.547 67.558\\nQ 139.287 68.4606, 140.641 68.4606\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.782 60.4493\\nL 146.985 60.4493\\nL 146.985 64.223\\nL 151.524 64.223\\nL 151.524 60.4493\\nL 152.727 60.4493\\nL 152.727 69.3257\\nL 151.524 69.3257\\nL 151.524 65.226\\nL 146.985 65.226\\nL 146.985 69.3257\\nL 145.782 69.3257\\nL 145.782 60.4493\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 7.27273 18.0269\\nQ 7.27273 15.8203, 8.30079 14.6669\\nQ 9.3414 13.5009, 11.3098 13.5009\\nQ 13.1402 13.5009, 14.1181 14.7923\\nL 13.2907 15.4693\\nQ 12.576 14.529, 11.3098 14.529\\nQ 9.96826 14.529, 9.25363 15.4317\\nQ 8.55154 16.3218, 8.55154 18.0269\\nQ 8.55154 19.7822, 9.27871 20.6849\\nQ 10.0184 21.5875, 11.4477 21.5875\\nQ 12.4256 21.5875, 13.5665 20.9983\\nL 13.9175 21.9386\\nQ 13.4537 22.2395, 12.7516 22.415\\nQ 12.0495 22.5905, 11.2722 22.5905\\nQ 9.3414 22.5905, 8.30079 21.412\\nQ 7.27273 20.2335, 7.27273 18.0269\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 15.1964 12.9618\\nL 16.3498 12.9618\\nL 16.3498 22.4777\\nL 15.1964 22.4777\\nL 15.1964 12.9618\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -3.31, "data-ID": 546, "mols2grid-id": 108, "mols2grid-tooltip": "<strong>Name</strong>: p-chlorobenzoic_acid<br><strong>SMILES</strong>: O=C(O)c(ccc(c1)Cl)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.31</span>", "style-Solubility": "color: red"}, {"data-SMILES": "ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.4061,87.2135 L 21.8566,82.7215' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.8566,82.7215 L 29.3071,78.2296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 30.4952,78.9365 L 35.3384,65.3881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.119,77.5228 L 37.7145,66.8018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-1' d='M 57.1093,66.095 L 29.3071,78.2296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.5265,66.095 L 27.7534,66.1893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 27.7534,66.1893 L 18.9804,66.2836' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 36.5265,66.095 L 63.2534,56.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.2534,56.7252 L 66.879,50.9343' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.879,50.9343 L 70.5046,45.1435' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 63.2534,56.7252 L 85.3723,69.0134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-16 atom-4' d='M 59.1061,34.4527 L 63.2534,56.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 85.3723,69.0134 L 112.714,57.954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-6' d='M 78.9209,78.6904 L 85.3723,69.0134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.714,57.954 L 108.259,34.9135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 136.215,69.9351 L 112.714,57.954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 108.259,34.9135 L 106.723,68.7062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.723,68.7062 L 130.071,79.4585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-9 atom-13' d='M 106.723,68.7062 L 78.9209,78.6904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 130.071,79.4585 L 138.064,87.0772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 138.064,87.0772 L 146.058,94.696' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 136.215,69.9351 L 130.071,79.4585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 147.779,94.1154 L 141.997,82.0252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 141.997,82.0252 L 136.215,69.9351' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-14' d='M 78.9209,78.6904 L 57.1093,66.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-14 atom-15' d='M 57.1093,66.095 L 52.8176,73.2635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-14 atom-15' d='M 52.8176,73.2635 L 48.5259,80.4321' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-14 atom-16' d='M 57.1093,66.095 L 59.1061,34.4527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-16 atom-17' d='M 59.1061,34.4527 L 66.2233,31.7252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-16 atom-17' d='M 66.2233,31.7252 L 73.3405,28.9978' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-16 atom-18' d='M 59.1061,34.4527 L 52.8007,28.5872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-16 atom-18' d='M 52.8007,28.5872 L 46.4953,22.7217' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 87.9727\\nQ 7.27273 86.3506, 8.02845 85.5027\\nQ 8.7934 84.6456, 10.2403 84.6456\\nQ 11.5859 84.6456, 12.3048 85.5949\\nL 11.6965 86.0926\\nQ 11.1712 85.4014, 10.2403 85.4014\\nQ 9.25421 85.4014, 8.72889 86.0649\\nQ 8.21278 86.7193, 8.21278 87.9727\\nQ 8.21278 89.2629, 8.74732 89.9265\\nQ 9.29107 90.5901, 10.3417 90.5901\\nQ 11.0606 90.5901, 11.8993 90.1569\\nL 12.1573 90.8481\\nQ 11.8163 91.0693, 11.3002 91.1983\\nQ 10.7841 91.3274, 10.2127 91.3274\\nQ 8.7934 91.3274, 8.02845 90.461\\nQ 7.27273 89.5947, 7.27273 87.9727\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 13.0974 84.2493\\nL 13.9453 84.2493\\nL 13.9453 91.2444\\nL 13.0974 91.2444\\nL 13.0974 84.2493\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 11.847 66.5189\\nQ 11.847 64.8969, 12.6028 64.049\\nQ 13.3677 63.1919, 14.8146 63.1919\\nQ 16.1602 63.1919, 16.8791 64.1411\\nL 16.2708 64.6388\\nQ 15.7455 63.9476, 14.8146 63.9476\\nQ 13.8285 63.9476, 13.3032 64.6112\\nQ 12.7871 65.2655, 12.7871 66.5189\\nQ 12.7871 67.8092, 13.3216 68.4728\\nQ 13.8654 69.1363, 14.916 69.1363\\nQ 15.6349 69.1363, 16.4736 68.7032\\nL 16.7316 69.3944\\nQ 16.3906 69.6156, 15.8745 69.7446\\nQ 15.3584 69.8736, 14.787 69.8736\\nQ 13.3677 69.8736, 12.6028 69.0073\\nQ 11.847 68.141, 11.847 66.5189\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 17.6717 62.7956\\nL 18.5196 62.7956\\nL 18.5196 69.7907\\nL 17.6717 69.7907\\nL 17.6717 62.7956\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 70.5188 41.328\\nQ 70.5188 39.7059, 71.2746 38.8581\\nQ 72.0395 38.001, 73.4865 38.001\\nQ 74.832 38.001, 75.5509 38.9502\\nL 74.9426 39.4479\\nQ 74.4173 38.7567, 73.4865 38.7567\\nQ 72.5003 38.7567, 71.975 39.4202\\nQ 71.4589 40.0746, 71.4589 41.328\\nQ 71.4589 42.6183, 71.9934 43.2818\\nQ 72.5372 43.9454, 73.5878 43.9454\\nQ 74.3067 43.9454, 75.1454 43.5122\\nL 75.4034 44.2034\\nQ 75.0624 44.4246, 74.5463 44.5537\\nQ 74.0302 44.6827, 73.4588 44.6827\\nQ 72.0395 44.6827, 71.2746 43.8164\\nQ 70.5188 42.95, 70.5188 41.328\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 76.3435 37.6047\\nL 77.1914 37.6047\\nL 77.1914 44.5997\\nL 76.3435 44.5997\\nL 76.3435 37.6047\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 146.737 98.2165\\nQ 146.737 96.6497, 147.511 95.7742\\nQ 148.285 94.8986, 149.732 94.8986\\nQ 151.179 94.8986, 151.953 95.7742\\nQ 152.727 96.6497, 152.727 98.2165\\nQ 152.727 99.8017, 151.944 100.705\\nQ 151.161 101.599, 149.732 101.599\\nQ 148.294 101.599, 147.511 100.705\\nQ 146.737 99.8109, 146.737 98.2165\\nM 149.732 100.862\\nQ 150.727 100.862, 151.262 100.198\\nQ 151.806 99.5252, 151.806 98.2165\\nQ 151.806 96.9354, 151.262 96.2903\\nQ 150.727 95.6359, 149.732 95.6359\\nQ 148.737 95.6359, 148.193 96.2811\\nQ 147.658 96.9262, 147.658 98.2165\\nQ 147.658 99.5344, 148.193 100.198\\nQ 148.737 100.862, 149.732 100.862\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 41.3926 82.1358\\nQ 41.3926 80.5137, 42.1483 79.6658\\nQ 42.9133 78.8087, 44.3602 78.8087\\nQ 45.7058 78.8087, 46.4246 79.758\\nL 45.8164 80.2557\\nQ 45.2911 79.5644, 44.3602 79.5644\\nQ 43.3741 79.5644, 42.8488 80.228\\nQ 42.3327 80.8824, 42.3327 82.1358\\nQ 42.3327 83.426, 42.8672 84.0896\\nQ 43.411 84.7532, 44.4616 84.7532\\nQ 45.1805 84.7532, 46.0191 84.32\\nL 46.2772 85.0112\\nQ 45.9362 85.2324, 45.4201 85.3614\\nQ 44.904 85.4905, 44.3326 85.4905\\nQ 42.9133 85.4905, 42.1483 84.6241\\nQ 41.3926 83.7578, 41.3926 82.1358\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 47.2172 78.4124\\nL 48.0651 78.4124\\nL 48.0651 85.4075\\nL 47.2172 85.4075\\nL 47.2172 78.4124\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 73.8013 28.0828\\nQ 73.8013 26.4607, 74.5571 25.6129\\nQ 75.322 24.7557, 76.769 24.7557\\nQ 78.1145 24.7557, 78.8334 25.705\\nL 78.2251 26.2027\\nQ 77.6998 25.5115, 76.769 25.5115\\nQ 75.7828 25.5115, 75.2575 26.175\\nQ 74.7414 26.8294, 74.7414 28.0828\\nQ 74.7414 29.3731, 75.2759 30.0366\\nQ 75.8197 30.7002, 76.8703 30.7002\\nQ 77.5892 30.7002, 78.4279 30.267\\nL 78.6859 30.9582\\nQ 78.3449 31.1794, 77.8288 31.3085\\nQ 77.3127 31.4375, 76.7413 31.4375\\nQ 75.322 31.4375, 74.5571 30.5712\\nQ 73.8013 29.7048, 73.8013 28.0828\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 79.626 24.3595\\nL 80.4739 24.3595\\nL 80.4739 31.3545\\nL 79.626 31.3545\\nL 79.626 24.3595\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 39.362 22.1245\\nQ 39.362 20.5025, 40.1177 19.6546\\nQ 40.8826 18.7975, 42.3296 18.7975\\nQ 43.6751 18.7975, 44.394 19.7467\\nL 43.7857 20.2444\\nQ 43.2604 19.5532, 42.3296 19.5532\\nQ 41.3435 19.5532, 40.8181 20.2168\\nQ 40.302 20.8711, 40.302 22.1245\\nQ 40.302 23.4148, 40.8366 24.0784\\nQ 41.3803 24.7419, 42.431 24.7419\\nQ 43.1498 24.7419, 43.9885 24.3088\\nL 44.2466 25\\nQ 43.9056 25.2212, 43.3894 25.3502\\nQ 42.8733 25.4792, 42.3019 25.4792\\nQ 40.8826 25.4792, 40.1177 24.6129\\nQ 39.362 23.7466, 39.362 22.1245\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 45.1866 18.4012\\nL 46.0345 18.4012\\nL 46.0345 25.3963\\nL 45.1866 25.3963\\nL 45.1866 18.4012\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.29, "data-ID": 551, "mols2grid-id": 109, "mols2grid-tooltip": "<strong>Name</strong>: dieldrin<br><strong>SMILES</strong>: ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.29</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCCCCN", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,61.5837 L 26.0956,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 26.0956,50.7235 L 49.6379,64.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 49.6379,64.3055 L 73.1801,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.1801,50.7235 L 96.7223,64.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.7223,64.3055 L 120.265,50.7235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 120.265,50.7235 L 127.946,55.1552' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.946,55.1552 L 135.627,59.587' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 137.387 57.7372\\nL 139.908 61.8118\\nQ 140.158 62.2139, 140.56 62.9419\\nQ 140.962 63.6699, 140.983 63.7133\\nL 140.983 57.7372\\nL 142.005 57.7372\\nL 142.005 65.4301\\nL 140.951 65.4301\\nL 138.245 60.9752\\nQ 137.93 60.4536, 137.593 59.856\\nQ 137.267 59.2584, 137.17 59.0737\\nL 137.17 65.4301\\nL 136.17 65.4301\\nL 136.17 57.7372\\nL 137.387 57.7372\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 142.928 57.7372\\nL 143.972 57.7372\\nL 143.972 61.0078\\nL 147.905 61.0078\\nL 147.905 57.7372\\nL 148.948 57.7372\\nL 148.948 65.4301\\nL 147.905 65.4301\\nL 147.905 61.877\\nL 143.972 61.877\\nL 143.972 65.4301\\nL 142.928 65.4301\\nL 142.928 57.7372\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 149.321 65.1602\\nQ 149.507 64.6797, 149.952 64.4144\\nQ 150.397 64.1419, 151.013 64.1419\\nQ 151.781 64.1419, 152.211 64.5578\\nQ 152.641 64.9737, 152.641 65.7124\\nQ 152.641 66.4654, 152.082 67.1682\\nQ 151.53 67.871, 150.382 68.7028\\nL 152.727 68.7028\\nL 152.727 69.2765\\nL 149.307 69.2765\\nL 149.307 68.7961\\nQ 150.253 68.122, 150.813 67.62\\nQ 151.379 67.118, 151.652 66.6662\\nQ 151.924 66.2144, 151.924 65.7482\\nQ 151.924 65.2606, 151.68 64.9881\\nQ 151.436 64.7156, 151.013 64.7156\\nQ 150.605 64.7156, 150.332 64.8805\\nQ 150.06 65.0455, 149.866 65.4112\\nL 149.321 65.1602\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.1, "data-ID": 556, "mols2grid-id": 110, "mols2grid-tooltip": "<strong>Name</strong>: hexylamine<br><strong>SMILES</strong>: CCCCCCN<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.1</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCCCCCN", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,61.1964 L 21.4926,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 21.4926,52.992 L 39.2777,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 39.2777,63.2526 L 57.0628,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.0628,52.992 L 74.8479,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.8479,63.2526 L 92.6329,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.6329,52.992 L 110.417,63.2526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 110.417,63.2526 L 128.202,52.992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 128.202,52.992 L 134.005,56.34' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 134.005,56.34 L 139.809,59.6881' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-8' d='M 141.138 58.2906\\nL 143.043 61.3688\\nQ 143.232 61.6725, 143.535 62.2225\\nQ 143.839 62.7724, 143.855 62.8053\\nL 143.855 58.2906\\nL 144.627 58.2906\\nL 144.627 64.1022\\nL 143.831 64.1022\\nL 141.787 60.7367\\nQ 141.549 60.3427, 141.294 59.8912\\nQ 141.048 59.4398, 140.974 59.3002\\nL 140.974 64.1022\\nL 140.219 64.1022\\nL 140.219 58.2906\\nL 141.138 58.2906\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 145.325 58.2906\\nL 146.113 58.2906\\nL 146.113 60.7613\\nL 149.084 60.7613\\nL 149.084 58.2906\\nL 149.872 58.2906\\nL 149.872 64.1022\\nL 149.084 64.1022\\nL 149.084 61.418\\nL 146.113 61.418\\nL 146.113 64.1022\\nL 145.325 64.1022\\nL 145.325 58.2906\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 150.154 63.8983\\nQ 150.295 63.5353, 150.631 63.3349\\nQ 150.967 63.129, 151.432 63.129\\nQ 152.012 63.129, 152.337 63.4432\\nQ 152.662 63.7574, 152.662 64.3155\\nQ 152.662 64.8843, 152.24 65.4152\\nQ 151.823 65.9462, 150.956 66.5746\\nL 152.727 66.5746\\nL 152.727 67.008\\nL 150.143 67.008\\nL 150.143 66.645\\nQ 150.858 66.1358, 151.281 65.7565\\nQ 151.709 65.3773, 151.915 65.036\\nQ 152.121 64.6947, 152.121 64.3425\\nQ 152.121 63.9741, 151.936 63.7683\\nQ 151.752 63.5624, 151.432 63.5624\\nQ 151.124 63.5624, 150.918 63.687\\nQ 150.712 63.8116, 150.566 64.0879\\nL 150.154 63.8983\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.75, "data-ID": 561, "mols2grid-id": 111, "mols2grid-tooltip": "<strong>Name</strong>: n-octylamine<br><strong>SMILES</strong>: CCCCCCCCN<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1NC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.79,53.5895 L 107.79,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.372,48.776 L 101.372,26.313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.6345 L 107.79,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.79,21.4995 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2101,21.4995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0406,13.4194 L 59.5876,24.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2101,21.4995 L 52.2101,53.5895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2101,53.5895 L 80,69.6345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5876,50.4381 L 79.0406,61.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.6345 L 80.0276,83.0147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,83.0147 L 80.0553,96.3949' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.1546,104.094 L 93.236,109.32' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.236,109.32 L 102.318,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 68.4433 97.1976\\nL 69.6756 97.1976\\nL 69.6756 101.061\\nL 74.3222 101.061\\nL 74.3222 97.1976\\nL 75.5545 97.1976\\nL 75.5545 106.285\\nL 74.3222 106.285\\nL 74.3222 102.088\\nL 69.6756 102.088\\nL 69.6756 106.285\\nL 68.4433 106.285\\nL 68.4433 97.1976\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 78.0575 97.1976\\nL 81.0354 102.011\\nQ 81.3307 102.486, 81.8056 103.346\\nQ 82.2805 104.206, 82.3062 104.257\\nL 82.3062 97.1976\\nL 83.5128 97.1976\\nL 83.5128 106.285\\nL 82.2677 106.285\\nL 79.0715 101.023\\nQ 78.6993 100.407, 78.3014 99.7006\\nQ 77.9163 98.9947, 77.8008 98.7764\\nL 77.8008 106.285\\nL 76.6199 106.285\\nL 76.6199 97.1976\\nL 78.0575 97.1976\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.28, "data-ID": 566, "mols2grid-id": 112, "mols2grid-tooltip": "<strong>Name</strong>: N-methylaniline<br><strong>SMILES</strong>: c1ccccc1NC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1N(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.772,53.5584 L 107.772,21.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.358,48.748 L 101.358,26.2995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 80,69.593 L 107.772,53.5584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.772,21.4892 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80,5.45455 L 52.2281,21.4892' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0412,13.4142 L 59.6008,24.6385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.2281,21.4892 L 52.2281,53.5584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.2281,53.5584 L 80,69.593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.6008,50.409 L 79.0412,61.6333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80,69.593 L 80.0276,82.9645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 80.0276,82.9645 L 80.0552,96.3361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 84.1519,104.03 L 93.2275,109.253' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 93.2275,109.253 L 102.303,114.475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 75.9807,104.048 L 66.9254,109.297' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 66.9254,109.297 L 57.8701,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 78.0587 97.1383\\nL 81.0348 101.949\\nQ 81.3298 102.423, 81.8044 103.283\\nQ 82.2791 104.142, 82.3047 104.194\\nL 82.3047 97.1383\\nL 83.5105 97.1383\\nL 83.5105 106.22\\nL 82.2662 106.22\\nL 79.0721 100.961\\nQ 78.7001 100.345, 78.3025 99.6397\\nQ 77.9176 98.9342, 77.8022 98.7161\\nL 77.8022 106.22\\nL 76.622 106.22\\nL 76.622 97.1383\\nL 78.0587 97.1383\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.92, "data-ID": 571, "mols2grid-id": 113, "mols2grid-tooltip": "<strong>Name</strong>: N,N-dimethylaniline<br><strong>SMILES</strong>: c1ccccc1N(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c(c(c(N)cc1)ccc2)(c2)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.2253,96.0121 L 80.2253,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 80.2253,96.0121 L 112.316,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 80.2253,96.0121 L 48.1342,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 71.6977,92.3613 L 49.2339,105.335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.2253,58.9504 L 48.1342,40.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 71.6977,62.6012 L 49.2339,49.6279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 80.2253,58.9504 L 112.316,40.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 48.1342,40.4171 L 48.1697,28.5649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 48.1697,28.5649 L 48.2053,16.7127' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 48.1342,40.4171 L 15.5901,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 15.5901,58.9504 L 15.5901,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 23.0163,64.5097 L 23.0163,90.4529' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-5' d='M 48.1342,114.545 L 15.5901,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 112.316,40.4171 L 144.41,58.9504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 113.417,49.628 L 135.882,62.6014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 144.41,58.9504 L 144.41,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 112.316,114.545 L 144.41,96.0121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 113.417,105.335 L 135.882,92.3612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 45.8989 5.45455\\nL 49.3446 11.0242\\nQ 49.6862 11.5737, 50.2358 12.5688\\nQ 50.7853 13.564, 50.815 13.6234\\nL 50.815 5.45455\\nL 52.2112 5.45455\\nL 52.2112 15.97\\nL 50.7705 15.97\\nL 47.0722 9.88056\\nQ 46.6415 9.16765, 46.1811 8.35076\\nQ 45.7355 7.53388, 45.6018 7.28139\\nL 45.6018 15.97\\nL 44.2354 15.97\\nL 44.2354 5.45455\\nL 45.8989 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 53.4736 5.45455\\nL 54.8994 5.45455\\nL 54.8994 9.92512\\nL 60.276 9.92512\\nL 60.276 5.45455\\nL 61.7018 5.45455\\nL 61.7018 15.97\\nL 60.276 15.97\\nL 60.276 11.1133\\nL 54.8994 11.1133\\nL 54.8994 15.97\\nL 53.4736 15.97\\nL 53.4736 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 62.2116 15.6011\\nQ 62.4664 14.9443, 63.0742 14.5816\\nQ 63.682 14.2091, 64.525 14.2091\\nQ 65.5739 14.2091, 66.162 14.7777\\nQ 66.7502 15.3462, 66.7502 16.3559\\nQ 66.7502 17.3852, 65.9856 18.3458\\nQ 65.2308 19.3065, 63.6624 20.4436\\nL 66.8678 20.4436\\nL 66.8678 21.2278\\nL 62.192 21.2278\\nL 62.192 20.571\\nQ 63.4859 19.6496, 64.2505 18.9634\\nQ 65.0249 18.2772, 65.3974 17.6597\\nQ 65.7699 17.0421, 65.7699 16.4049\\nQ 65.7699 15.7384, 65.4366 15.3659\\nQ 65.1033 14.9934, 64.525 14.9934\\nQ 63.9662 14.9934, 63.5937 15.2188\\nQ 63.2212 15.4443, 62.9566 15.9442\\nL 62.2116 15.6011\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.92, "data-ID": 576, "mols2grid-id": 114, "mols2grid-tooltip": "<strong>Name</strong>: 1-naphthylamine<br><strong>SMILES</strong>: c(c(c(N)cc1)ccc2)(c2)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.92</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1c(C)ccc(C)n1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,76.095 L 112.475,38.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.975,70.47 L 104.975,44.22' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 84.965,91.9784 L 98.72,84.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 98.72,84.0367 L 112.475,76.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,38.595 L 138.457,23.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,38.595 L 80,19.845' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,19.845 L 47.525,38.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.8788,29.1526 L 56.1463,42.2776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,38.595 L 47.525,76.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.525,76.095 L 21.5425,91.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 47.525,76.095 L 61.28,84.0367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 61.28,84.0367 L 75.035,91.9784' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 55.4016,71.9824 L 65.0301,77.5415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 65.0301,77.5415 L 74.6586,83.1007' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 77.6525 89.535\\nL 81.1325 95.16\\nQ 81.4775 95.715, 82.0325 96.72\\nQ 82.5875 97.725, 82.6175 97.785\\nL 82.6175 89.535\\nL 84.0275 89.535\\nL 84.0275 100.155\\nL 82.5725 100.155\\nL 78.8375 94.005\\nQ 78.4025 93.285, 77.9375 92.46\\nQ 77.4875 91.635, 77.3525 91.38\\nL 77.3525 100.155\\nL 75.9725 100.155\\nL 75.9725 89.535\\nL 77.6525 89.535\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.4, "data-ID": 581, "mols2grid-id": 115, "mols2grid-tooltip": "<strong>Name</strong>: 2,5-dimethylpyridine<br><strong>SMILES</strong>: c1c(C)ccc(C)n1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.4</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccc2cnccc2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 12.9362,41.285 L 12.9362,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.4362,46.8995 L 20.4362,73.1005' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 45.8037,22.5675 L 12.9362,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 12.9362,78.715 L 45.8037,97.4325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.8037,97.4325 L 78.2137,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 46.9144,88.1302 L 69.6014,75.0279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.2137,78.715 L 110.624,97.4325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 78.2137,41.285 L 78.2137,78.715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.624,97.4325 L 124.348,89.5068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 124.348,89.5068 L 138.073,81.5811' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.991,88.56 L 120.598,83.012' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 120.598,83.012 L 130.205,77.464' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 143.036,72.4692 L 143.036,56.8771' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 143.036,56.8771 L 143.036,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 143.036,41.285 L 110.624,22.5675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 134.424,44.9722 L 111.735,31.87' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.624,22.5675 L 78.2137,41.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 78.2137,41.285 L 45.8037,22.5675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 69.6014,44.9721 L 46.9144,31.8698' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 140.689 73.405\\nL 144.169 79.03\\nQ 144.514 79.585, 145.069 80.59\\nQ 145.624 81.595, 145.654 81.655\\nL 145.654 73.405\\nL 147.064 73.405\\nL 147.064 84.025\\nL 145.609 84.025\\nL 141.874 77.875\\nQ 141.439 77.155, 140.974 76.33\\nQ 140.524 75.505, 140.389 75.25\\nL 140.389 84.025\\nL 139.009 84.025\\nL 139.009 73.405\\nL 140.689 73.405\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.45, "data-ID": 586, "mols2grid-id": 116, "mols2grid-tooltip": "<strong>Name</strong>: isoquinoline<br><strong>SMILES</strong>: c1ccc2cnccc2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.45</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)c(cccn1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 113.731,103.056 L 113.747,91.2803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.747,91.2803 L 113.764,79.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.334,103.046 L 106.351,91.2698' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.351,91.2698 L 106.367,79.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.066,79.4993 L 120.115,73.7198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.115,73.7198 L 130.165,67.9403' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 110.066,79.4993 L 78.0546,60.9308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.0546,60.9308 L 78.0546,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.6578,55.3831 L 70.6578,29.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-3 atom-8' d='M 78.0546,60.9308 L 46.0264,79.4228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.0546,23.9466 L 46.0264,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.0264,5.45455 L 13.9981,23.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 44.9206,14.6342 L 22.5008,27.5786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 13.9981,23.9466 L 13.9981,39.3579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 13.9981,39.3579 L 13.9981,54.7692' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 46.0264,79.4228 L 32.4606,71.5904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 32.4606,71.5904 L 18.8948,63.758' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 45.6551,70.6673 L 36.1591,65.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-7' d='M 36.1591,65.1846 L 26.663,59.7019' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 105.216 109.116\\nQ 105.216 106.601, 106.458 105.196\\nQ 107.701 103.79, 110.024 103.79\\nQ 112.346 103.79, 113.589 105.196\\nQ 114.832 106.601, 114.832 109.116\\nQ 114.832 111.661, 113.574 113.11\\nQ 112.317 114.545, 110.024 114.545\\nQ 107.716 114.545, 106.458 113.11\\nQ 105.216 111.675, 105.216 109.116\\nM 110.024 113.362\\nQ 111.621 113.362, 112.479 112.297\\nQ 113.352 111.217, 113.352 109.116\\nQ 113.352 107.06, 112.479 106.024\\nQ 111.621 104.974, 110.024 104.974\\nQ 108.426 104.974, 107.553 106.01\\nQ 106.695 107.045, 106.695 109.116\\nQ 106.695 111.232, 107.553 112.297\\nQ 108.426 113.362, 110.024 113.362\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 130.905 64.7796\\nQ 130.905 62.2647, 132.148 60.8593\\nQ 133.39 59.4539, 135.713 59.4539\\nQ 138.036 59.4539, 139.278 60.8593\\nQ 140.521 62.2647, 140.521 64.7796\\nQ 140.521 67.3241, 139.263 68.7739\\nQ 138.006 70.2089, 135.713 70.2089\\nQ 133.405 70.2089, 132.148 68.7739\\nQ 130.905 67.3389, 130.905 64.7796\\nM 135.713 69.0254\\nQ 137.311 69.0254, 138.169 67.9602\\nQ 139.041 66.8803, 139.041 64.7796\\nQ 139.041 62.7233, 138.169 61.6877\\nQ 137.311 60.6374, 135.713 60.6374\\nQ 134.115 60.6374, 133.242 61.6729\\nQ 132.384 62.7085, 132.384 64.7796\\nQ 132.384 66.8951, 133.242 67.9602\\nQ 134.115 69.0254, 135.713 69.0254\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 141.778 59.5722\\nL 143.199 59.5722\\nL 143.199 64.0251\\nL 148.554 64.0251\\nL 148.554 59.5722\\nL 149.974 59.5722\\nL 149.974 70.0461\\nL 148.554 70.0461\\nL 148.554 65.2086\\nL 143.199 65.2086\\nL 143.199 70.0461\\nL 141.778 70.0461\\nL 141.778 59.5722\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 11.6829 55.6938\\nL 15.115 61.2414\\nQ 15.4553 61.7888, 16.0026 62.78\\nQ 16.55 63.7712, 16.5796 63.8303\\nL 16.5796 55.6938\\nL 17.9702 55.6938\\nL 17.9702 66.1677\\nL 16.5352 66.1677\\nL 12.8516 60.1023\\nQ 12.4226 59.3922, 11.964 58.5786\\nQ 11.5202 57.7649, 11.387 57.5134\\nL 11.387 66.1677\\nL 10.026 66.1677\\nL 10.026 55.6938\\nL 11.6829 55.6938\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -0.84, "data-ID": 591, "mols2grid-id": 117, "mols2grid-tooltip": "<strong>Name</strong>: nicotinic_acid<br><strong>SMILES</strong>: O=C(O)c(cccn1)c1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.84</span>", "style-Solubility": "color: black"}, {"data-SMILES": "n1c(C)nc(N)cc1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.412,60.1558 L 121.412,44.7022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.412,44.7022 L 121.412,29.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.995,55.5197 L 113.995,44.7022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.995,44.7022 L 113.995,33.8847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 89.296,84.877 L 102.899,77.0231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 102.899,77.0231 L 116.502,69.1692' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.412,29.2486 L 147.107,14.4144' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 121.412,29.2486 L 107.809,21.3947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.809,21.3947 L 94.2061,13.5408' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.3859,13.5408 L 70.7829,21.3947' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.7829,21.3947 L 57.1799,29.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.0136,22.3203 L 74.4915,27.8181' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 74.4915,27.8181 L 64.9695,33.3158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.1799,29.2486 L 46.6946,23.1954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 46.6946,23.1954 L 36.2093,17.1421' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 57.1799,29.2486 L 57.1799,66.3342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.1799,66.3342 L 89.296,84.877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.706,62.6923 L 88.1872,75.6722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 89.296,84.877 L 89.296,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.091 61.0829\\nL 122.532 66.6457\\nQ 122.873 67.1946, 123.422 68.1885\\nQ 123.971 69.1824, 124.001 69.2417\\nL 124.001 61.0829\\nL 125.395 61.0829\\nL 125.395 71.5855\\nL 123.956 71.5855\\nL 120.262 65.5035\\nQ 119.832 64.7915, 119.372 63.9756\\nQ 118.927 63.1597, 118.794 62.9075\\nL 118.794 71.5855\\nL 117.429 71.5855\\nL 117.429 61.0829\\nL 119.091 61.0829\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 86.9745 5.45455\\nL 90.416 11.0174\\nQ 90.7572 11.5662, 91.3061 12.5601\\nQ 91.8549 13.554, 91.8846 13.6134\\nL 91.8846 5.45455\\nL 93.279 5.45455\\nL 93.279 15.9572\\nL 91.8401 15.9572\\nL 88.1464 9.87515\\nQ 87.7162 9.1631, 87.2563 8.34722\\nQ 86.8113 7.53134, 86.6778 7.27916\\nL 86.6778 15.9572\\nL 85.313 15.9572\\nL 85.313 5.45455\\nL 86.9745 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 12.8925 9.1631\\nL 14.3166 9.1631\\nL 14.3166 13.6282\\nL 19.6866 13.6282\\nL 19.6866 9.1631\\nL 21.1107 9.1631\\nL 21.1107 19.6657\\nL 19.6866 19.6657\\nL 19.6866 14.8149\\nL 14.3166 14.8149\\nL 14.3166 19.6657\\nL 12.8925 19.6657\\nL 12.8925 9.1631\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 21.6198 19.2973\\nQ 21.8744 18.6413, 22.4814 18.279\\nQ 23.0884 17.907, 23.9304 17.907\\nQ 24.978 17.907, 25.5654 18.4748\\nQ 26.1528 19.0427, 26.1528 20.0511\\nQ 26.1528 21.0791, 25.3892 22.0386\\nQ 24.6353 22.9981, 23.0688 24.1338\\nL 26.2703 24.1338\\nL 26.2703 24.9171\\nL 21.6002 24.9171\\nL 21.6002 24.2611\\nQ 22.8926 23.3408, 23.6562 22.6554\\nQ 24.4297 21.9701, 24.8017 21.3533\\nQ 25.1738 20.7365, 25.1738 20.1001\\nQ 25.1738 19.4343, 24.8409 19.0623\\nQ 24.508 18.6902, 23.9304 18.6902\\nQ 23.3723 18.6902, 23.0003 18.9154\\nQ 22.6282 19.1406, 22.3639 19.6399\\nL 21.6198 19.2973\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 29.163 9.1631\\nL 32.6045 14.7259\\nQ 32.9457 15.2748, 33.4946 16.2687\\nQ 34.0435 17.2626, 34.0731 17.3219\\nL 34.0731 9.1631\\nL 35.4676 9.1631\\nL 35.4676 19.6657\\nL 34.0286 19.6657\\nL 30.3349 13.5837\\nQ 29.9047 12.8717, 29.4449 12.0558\\nQ 28.9998 11.2399, 28.8663 10.9877\\nL 28.8663 19.6657\\nL 27.5016 19.6657\\nL 27.5016 9.1631\\nL 29.163 9.1631\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.28, "data-ID": 596, "mols2grid-id": 118, "mols2grid-tooltip": "<strong>Name</strong>: 2,6-dimethyl-4-pyrimidinamine<br><strong>SMILES</strong>: n1c(C)nc(N)cc1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.28</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cccn1(H)", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.7475,86.1988 L 111.335,50.5338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 94.3527,78.5315 L 102.464,53.566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 67.2125,86.1988 L 83.48,86.1988' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 83.48,86.1988 L 99.7475,86.1988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.335,50.5338 L 80.9975,28.4913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.9975,28.4913 L 50.66,50.5338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 80.8554,37.8652 L 59.6191,53.2949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 50.66,50.5338 L 55.4388,65.2425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 55.4388,65.2425 L 60.2177,79.9512' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 48.665 80.8888\\nL 50.105 80.8888\\nL 50.105 85.4038\\nL 55.535 85.4038\\nL 55.535 80.8888\\nL 56.975 80.8888\\nL 56.975 91.5088\\nL 55.535 91.5088\\nL 55.535 86.6038\\nL 50.105 86.6038\\nL 50.105 91.5088\\nL 48.665 91.5088\\nL 48.665 80.8888\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 59.9 80.8888\\nL 63.38 86.5138\\nQ 63.725 87.0688, 64.28 88.0738\\nQ 64.835 89.0788, 64.865 89.1388\\nL 64.865 80.8888\\nL 66.275 80.8888\\nL 66.275 91.5088\\nL 64.82 91.5088\\nL 61.085 85.3588\\nQ 60.65 84.6388, 60.185 83.8138\\nQ 59.735 82.9888, 59.6 82.7338\\nL 59.6 91.5088\\nL 58.22 91.5088\\nL 58.22 80.8888\\nL 59.9 80.8888\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -0.17, "data-ID": 601, "mols2grid-id": 119, "mols2grid-tooltip": "<strong>Name</strong>: pyrrole<br><strong>SMILES</strong>: c1cccn1(H)<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.17</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N(c(c(S1)ccc2)c2)=C1S", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 91.3936,85.0263 L 77.9586,80.7202' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.9586,80.7202 L 64.5235,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 102.361,82.8523 L 107.325,70.2672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 107.325,70.2672 L 112.289,57.6821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 97.0057,79.0157 L 107.325,70.2672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-8' d='M 107.325,70.2672 L 117.645,61.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.5235,76.4141 L 64.5235,43.5859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 71.1111,71.4899 L 71.1111,48.5101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 64.5235,76.4141 L 36.0979,93.2279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.5235,43.5859 L 78.232,39.1921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.232,39.1921 L 91.9404,34.7984' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 64.5235,43.5859 L 36.0979,26.7721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-3' d='M 114.967,59.6004 L 107.259,49.1614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-3' d='M 107.259,49.1614 L 99.5505,38.7225' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 36.0979,26.7721 L 7.27273,43.5859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 35.0933,34.9845 L 14.9157,46.7541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 7.27273,43.5859 L 7.27273,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 36.0979,93.2279 L 7.27273,76.4141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-6' d='M 35.0933,85.0155 L 14.9157,73.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 114.967,59.6004 L 126.318,59.5181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 126.318,59.5181 L 137.668,59.4358' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 93.6891 81.7589\\nL 96.7457 86.6996\\nQ 97.0487 87.1871, 97.5362 88.0698\\nQ 98.0237 88.9526, 98.0501 89.0053\\nL 98.0501 81.7589\\nL 99.2885 81.7589\\nL 99.2885 91.087\\nL 98.0105 91.087\\nL 94.7299 85.6851\\nQ 94.3478 85.0527, 93.9394 84.3281\\nQ 93.5441 83.6034, 93.4256 83.3794\\nL 93.4256 91.087\\nL 92.2134 91.087\\nL 92.2134 81.7589\\nL 93.6891 81.7589\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 93.1159 36.7787\\nQ 93.2213 36.8182, 93.6561 37.0026\\nQ 94.0909 37.1871, 94.5652 37.3057\\nQ 95.0527 37.4111, 95.527 37.4111\\nQ 96.4097 37.4111, 96.9236 36.9895\\nQ 97.4374 36.5547, 97.4374 35.8037\\nQ 97.4374 35.2899, 97.1739 34.9736\\nQ 96.9236 34.6574, 96.5283 34.4862\\nQ 96.1331 34.3149, 95.4743 34.1173\\nQ 94.6443 33.8669, 94.1436 33.6298\\nQ 93.6561 33.3926, 93.3004 32.892\\nQ 92.9578 32.3913, 92.9578 31.5481\\nQ 92.9578 30.3755, 93.7484 29.6509\\nQ 94.552 28.9262, 96.1331 28.9262\\nQ 97.2134 28.9262, 98.4387 29.4401\\nL 98.1357 30.4545\\nQ 97.0158 29.9934, 96.1726 29.9934\\nQ 95.2635 29.9934, 94.7628 30.3755\\nQ 94.2622 30.7444, 94.2754 31.39\\nQ 94.2754 31.8906, 94.5257 32.1937\\nQ 94.7892 32.4967, 95.1581 32.668\\nQ 95.5402 32.8393, 96.1726 33.0369\\nQ 97.0158 33.3004, 97.5165 33.5639\\nQ 98.0171 33.8274, 98.3729 34.3676\\nQ 98.7418 34.8946, 98.7418 35.8037\\nQ 98.7418 37.0949, 97.8722 37.7931\\nQ 97.0158 38.4783, 95.5797 38.4783\\nQ 94.7497 38.4783, 94.1173 38.2938\\nQ 93.498 38.1225, 92.7602 37.8195\\nL 93.1159 36.7787\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 138.682 62.6241\\nQ 138.788 62.6636, 139.223 62.848\\nQ 139.657 63.0325, 140.132 63.1511\\nQ 140.619 63.2565, 141.094 63.2565\\nQ 141.976 63.2565, 142.49 62.8349\\nQ 143.004 62.4001, 143.004 61.6491\\nQ 143.004 61.1353, 142.74 60.8191\\nQ 142.49 60.5029, 142.095 60.3316\\nQ 141.7 60.1603, 141.041 59.9627\\nQ 140.211 59.7123, 139.71 59.4752\\nQ 139.223 59.238, 138.867 58.7374\\nQ 138.524 58.2367, 138.524 57.3935\\nQ 138.524 56.2209, 139.315 55.4963\\nQ 140.119 54.7716, 141.7 54.7716\\nQ 142.78 54.7716, 144.005 55.2855\\nL 143.702 56.3\\nQ 142.582 55.8388, 141.739 55.8388\\nQ 140.83 55.8388, 140.329 56.2209\\nQ 139.829 56.5898, 139.842 57.2354\\nQ 139.842 57.7361, 140.092 58.0391\\nQ 140.356 58.3421, 140.725 58.5134\\nQ 141.107 58.6847, 141.739 58.8823\\nQ 142.582 59.1458, 143.083 59.4093\\nQ 143.584 59.6728, 143.939 60.213\\nQ 144.308 60.74, 144.308 61.6491\\nQ 144.308 62.9403, 143.439 63.6386\\nQ 142.582 64.3237, 141.146 64.3237\\nQ 140.316 64.3237, 139.684 64.1392\\nQ 139.065 63.9679, 138.327 63.6649\\nL 138.682 62.6241\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 145.428 54.7453\\nL 146.693 54.7453\\nL 146.693 58.711\\nL 151.462 58.711\\nL 151.462 54.7453\\nL 152.727 54.7453\\nL 152.727 64.0733\\nL 151.462 64.0733\\nL 151.462 59.765\\nL 146.693 59.765\\nL 146.693 64.0733\\nL 145.428 64.0733\\nL 145.428 54.7453\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -3.18, "data-ID": 606, "mols2grid-id": 120, "mols2grid-tooltip": "<strong>Name</strong>: 2-mercaptobenzothiazole<br><strong>SMILES</strong>: N(c(c(S1)ccc2)c2)=C1S<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.18</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1c(O)cc2cccnc2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 41.3938,45.4458 L 41.3938,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 47.8119,50.2504 L 47.8119,72.672' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 69.5202,29.4282 L 41.3938,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,77.4766 L 32.7025,82.5288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.7025,82.5288 L 24.0113,87.5811' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 41.3938,77.4766 L 69.5202,93.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.5202,93.4942 L 97.2552,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.4707,85.5337 L 89.8852,74.3214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.2552,77.4766 L 124.99,93.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 97.2552,45.4458 L 97.2552,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 124.99,93.4942 L 152.727,77.4766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 125.941,85.5336 L 145.357,74.3213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,77.4766 L 152.727,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,45.4458 L 140.982,38.6634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 140.982,38.6634 L 129.237,31.8809' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 145.994,48.969 L 137.773,44.2213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 137.773,44.2213 L 129.551,39.4736' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 120.743,31.8811 L 108.999,38.6634' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 108.999,38.6634 L 97.2552,45.4458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 97.2552,45.4458 L 69.5202,29.4282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 89.8852,48.601 L 70.4707,37.3887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.27273 85.8865\\nL 8.50501 85.8865\\nL 8.50501 89.7503\\nL 13.1518 89.7503\\nL 13.1518 85.8865\\nL 14.384 85.8865\\nL 14.384 94.9746\\nL 13.1518 94.9746\\nL 13.1518 90.7772\\nL 8.50501 90.7772\\nL 8.50501 94.9746\\nL 7.27273 94.9746\\nL 7.27273 85.8865\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 15.0259 90.4049\\nQ 15.0259 88.2227, 16.1041 87.0033\\nQ 17.1824 85.7839, 19.1977 85.7839\\nQ 21.213 85.7839, 22.2912 87.0033\\nQ 23.3694 88.2227, 23.3694 90.4049\\nQ 23.3694 92.6128, 22.2784 93.8707\\nQ 21.1873 95.1158, 19.1977 95.1158\\nQ 17.1952 95.1158, 16.1041 93.8707\\nQ 15.0259 92.6256, 15.0259 90.4049\\nM 19.1977 94.0889\\nQ 20.584 94.0889, 21.3285 93.1647\\nQ 22.0858 92.2277, 22.0858 90.4049\\nQ 22.0858 88.6207, 21.3285 87.7221\\nQ 20.584 86.8108, 19.1977 86.8108\\nQ 17.8113 86.8108, 17.054 87.7093\\nQ 16.3095 88.6078, 16.3095 90.4049\\nQ 16.3095 92.2405, 17.054 93.1647\\nQ 17.8113 94.0889, 19.1977 94.0889\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 122.981 24.8842\\nL 125.959 29.6978\\nQ 126.255 30.1727, 126.729 31.0327\\nQ 127.204 31.8928, 127.23 31.9441\\nL 127.23 24.8842\\nL 128.437 24.8842\\nL 128.437 33.9723\\nL 127.192 33.9723\\nL 123.995 28.7094\\nQ 123.623 28.0932, 123.225 27.3872\\nQ 122.84 26.6812, 122.725 26.463\\nL 122.725 33.9723\\nL 121.544 33.9723\\nL 121.544 24.8842\\nL 122.981 24.8842\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.16, "data-ID": 611, "mols2grid-id": 121, "mols2grid-tooltip": "<strong>Name</strong>: 6-hydroxyquinoline<br><strong>SMILES</strong>: c1c(O)cc2cccnc2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.16</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCC1(CC)C(=O)NC(=O)N(C)C1=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.494,25.9439 L 134.484,51.6069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.484,51.6069 L 107.463,68.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.463,68.1082 L 106.688,99.7657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 107.463,68.1082 L 107.463,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-2' d='M 79.6824,84.1476 L 107.463,68.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 106.688,99.7657 L 128.902,112.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.066,38.8076 L 117.774,33.7808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 117.774,33.7808 L 126.481,28.754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 105.859,33.2513 L 114.566,28.2245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 114.566,28.2245 L 123.273,23.1977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 107.463,36.0295 L 95.6961,29.2359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.6961,29.2359 L 83.9296,22.4423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.4352,22.4423 L 63.6687,29.2359' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 63.6687,29.2359 L 51.9022,36.0295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.5061,33.2513 L 44.7988,28.2245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 44.7988,28.2245 L 36.0916,23.1977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 50.2983,38.8076 L 41.5911,33.7808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 41.5911,33.7808 L 32.8839,28.754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 51.9022,36.0295 L 51.9022,49.3967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 51.9022,49.3967 L 51.9022,62.7639' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 47.8153,70.4676 L 38.7456,75.7037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.7456,75.7037 L 29.6759,80.9397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 56.1494,70.5604 L 67.9159,77.354' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 67.9159,77.354 L 79.6824,84.1476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.4745,84.1476 L 76.4745,94.3615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 76.4745,94.3615 L 76.4745,104.575' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 82.8903,84.1476 L 82.8903,94.3615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 82.8903,94.3615 L 82.8903,104.575' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 125.519 23.2236\\nQ 125.519 21.0423, 126.597 19.8233\\nQ 127.674 18.6043, 129.689 18.6043\\nQ 131.703 18.6043, 132.781 19.8233\\nQ 133.859 21.0423, 133.859 23.2236\\nQ 133.859 25.4306, 132.769 26.6881\\nQ 131.678 27.9328, 129.689 27.9328\\nQ 127.687 27.9328, 126.597 26.6881\\nQ 125.519 25.4435, 125.519 23.2236\\nM 129.689 26.9063\\nQ 131.075 26.9063, 131.819 25.9824\\nQ 132.576 25.0457, 132.576 23.2236\\nQ 132.576 21.44, 131.819 20.5418\\nQ 131.075 19.6308, 129.689 19.6308\\nQ 128.303 19.6308, 127.546 20.529\\nQ 126.802 21.4272, 126.802 23.2236\\nQ 126.802 25.0585, 127.546 25.9824\\nQ 128.303 26.9063, 129.689 26.9063\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 77.6743 15.4477\\nL 80.6512 20.2595\\nQ 80.9463 20.7343, 81.4211 21.594\\nQ 81.8959 22.4537, 81.9215 22.5051\\nL 81.9215 15.4477\\nL 83.1277 15.4477\\nL 83.1277 24.5324\\nL 81.883 24.5324\\nL 78.688 19.2715\\nQ 78.3159 18.6556, 77.9181 17.9499\\nQ 77.5331 17.2441, 77.4177 17.026\\nL 77.4177 24.5324\\nL 76.2372 24.5324\\nL 76.2372 15.4477\\nL 77.6743 15.4477\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 76.1281 5.45455\\nL 77.3599 5.45455\\nL 77.3599 9.31683\\nL 82.0049 9.31683\\nL 82.0049 5.45455\\nL 83.2367 5.45455\\nL 83.2367 14.5393\\nL 82.0049 14.5393\\nL 82.0049 10.3433\\nL 77.3599 10.3433\\nL 77.3599 14.5393\\nL 76.1281 14.5393\\nL 76.1281 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 25.5057 23.2236\\nQ 25.5057 21.0423, 26.5835 19.8233\\nQ 27.6614 18.6043, 29.6759 18.6043\\nQ 31.6904 18.6043, 32.7683 19.8233\\nQ 33.8461 21.0423, 33.8461 23.2236\\nQ 33.8461 25.4306, 32.7555 26.6881\\nQ 31.6648 27.9328, 29.6759 27.9328\\nQ 27.6742 27.9328, 26.5835 26.6881\\nQ 25.5057 25.4435, 25.5057 23.2236\\nM 29.6759 26.9063\\nQ 31.0617 26.9063, 31.8059 25.9824\\nQ 32.563 25.0457, 32.563 23.2236\\nQ 32.563 21.44, 31.8059 20.5418\\nQ 31.0617 19.6308, 29.6759 19.6308\\nQ 28.2901 19.6308, 27.533 20.529\\nQ 26.7888 21.4272, 26.7888 23.2236\\nQ 26.7888 25.0585, 27.533 25.9824\\nQ 28.2901 26.9063, 29.6759 26.9063\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 49.8941 63.5659\\nL 52.871 68.3777\\nQ 53.1661 68.8525, 53.6409 69.7122\\nQ 54.1156 70.5719, 54.1413 70.6232\\nL 54.1413 63.5659\\nL 55.3475 63.5659\\nL 55.3475 72.6506\\nL 54.1028 72.6506\\nL 50.9078 67.3897\\nQ 50.5357 66.7738, 50.1379 66.068\\nQ 49.7529 65.3623, 49.6374 65.1442\\nL 49.6374 72.6506\\nL 48.4569 72.6506\\nL 48.4569 63.5659\\nL 49.8941 63.5659\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 75.5122 109.836\\nQ 75.5122 107.655, 76.59 106.436\\nQ 77.6679 105.217, 79.6824 105.217\\nQ 81.697 105.217, 82.7748 106.436\\nQ 83.8527 107.655, 83.8527 109.836\\nQ 83.8527 112.043, 82.762 113.301\\nQ 81.6713 114.545, 79.6824 114.545\\nQ 77.6807 114.545, 76.59 113.301\\nQ 75.5122 112.056, 75.5122 109.836\\nM 79.6824 113.519\\nQ 81.0682 113.519, 81.8125 112.595\\nQ 82.5695 111.658, 82.5695 109.836\\nQ 82.5695 108.053, 81.8125 107.155\\nQ 81.0682 106.243, 79.6824 106.243\\nQ 78.2966 106.243, 77.5396 107.142\\nQ 76.7953 108.04, 76.7953 109.836\\nQ 76.7953 111.671, 77.5396 112.595\\nQ 78.2966 113.519, 79.6824 113.519\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.23, "data-ID": 616, "mols2grid-id": 122, "mols2grid-tooltip": "<strong>Name</strong>: metharbital<br><strong>SMILES</strong>: CCC1(CC)C(=O)NC(=O)N(C)C1=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.23</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OC(CC(N(C1C2)C)C2)C1)C(c(cccc3)c3)CO", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 73.9191,61.178 L 70.914,55.9755' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 70.914,55.9755 L 67.909,50.773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 70.5161,63.1436 L 67.5111,57.9411' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 67.5111,57.9411 L 64.506,52.7386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.2075,51.7558 L 70.1444,44.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.1444,44.939 L 74.0812,38.1221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-1 atom-12' d='M 66.2075,51.7558 L 46.5477,51.765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.0873,34.7285 L 87.421,34.7235' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.421,34.7235 L 95.7548,34.7186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.7548,34.7186 L 106.199,17.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-3 atom-11' d='M 95.7548,34.7186 L 105.851,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.199,17.139 L 127.086,17.139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 127.086,17.139 L 131.119,24.2853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 131.119,24.2853 L 135.153,31.4316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 127.086,17.139 L 114.031,22.7089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.085,38.0196 L 130.824,45.3338' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.824,45.3338 L 126.564,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 139.511,34.7186 L 146.119,34.7186' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 146.119,34.7186 L 152.727,34.7186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.564,52.6479 L 114.031,45.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-7' d='M 105.851,52.6479 L 126.564,52.6479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-8' d='M 114.031,22.7089 L 114.031,45.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 46.5477,51.765 L 36.7152,68.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-12 atom-19' d='M 46.5477,51.765 L 36.7493,34.7199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 36.7152,68.7891 L 17.0659,68.8284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 33.7757,72.7249 L 20.0212,72.7524' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-13 atom-18' d='M 36.7152,68.7891 L 46.5713,85.7897' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 17.0659,68.8284 L 7.27273,85.8631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 7.27273,85.8631 L 17.1301,102.861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 12.1509,86.4413 L 19.0511,98.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 17.1301,102.861 L 36.7794,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-17' d='M 46.5713,85.7897 L 36.7794,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-17' d='M 41.6954,86.3864 L 34.8411,98.3107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 36.7493,34.7199 L 39.7343,29.5646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 39.7343,29.5646 L 42.7192,24.4092' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 71.5154 65.3833\\nQ 71.5154 64.0471, 72.1757 63.3004\\nQ 72.8359 62.5538, 74.0698 62.5538\\nQ 75.3038 62.5538, 75.964 63.3004\\nQ 76.6243 64.0471, 76.6243 65.3833\\nQ 76.6243 66.7351, 75.9562 67.5054\\nQ 75.2881 68.2678, 74.0698 68.2678\\nQ 72.8437 68.2678, 72.1757 67.5054\\nQ 71.5154 66.743, 71.5154 65.3833\\nM 74.0698 67.639\\nQ 74.9187 67.639, 75.3746 67.0731\\nQ 75.8383 66.4993, 75.8383 65.3833\\nQ 75.8383 64.2908, 75.3746 63.7406\\nQ 74.9187 63.1825, 74.0698 63.1825\\nQ 73.221 63.1825, 72.7573 63.7327\\nQ 72.3014 64.2829, 72.3014 65.3833\\nQ 72.3014 66.5072, 72.7573 67.0731\\nQ 73.221 67.639, 74.0698 67.639\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 73.4856 34.7461\\nQ 73.4856 33.4099, 74.1458 32.6632\\nQ 74.806 31.9166, 76.04 31.9166\\nQ 77.274 31.9166, 77.9342 32.6632\\nQ 78.5944 33.4099, 78.5944 34.7461\\nQ 78.5944 36.0979, 77.9263 36.8682\\nQ 77.2583 37.6306, 76.04 37.6306\\nQ 74.8139 37.6306, 74.1458 36.8682\\nQ 73.4856 36.1058, 73.4856 34.7461\\nM 76.04 37.0018\\nQ 76.8889 37.0018, 77.3447 36.4359\\nQ 77.8084 35.8622, 77.8084 34.7461\\nQ 77.8084 33.6536, 77.3447 33.1034\\nQ 76.8889 32.5454, 76.04 32.5454\\nQ 75.1912 32.5454, 74.7274 33.0955\\nQ 74.2716 33.6457, 74.2716 34.7461\\nQ 74.2716 35.87, 74.7274 36.4359\\nQ 75.1912 37.0018, 76.04 37.0018\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 135.778 31.9362\\nL 137.601 34.8836\\nQ 137.782 35.1744, 138.073 35.701\\nQ 138.364 36.2276, 138.379 36.2591\\nL 138.379 31.9362\\nL 139.118 31.9362\\nL 139.118 37.5009\\nL 138.356 37.5009\\nL 136.399 34.2784\\nQ 136.171 33.9012, 135.927 33.4689\\nQ 135.691 33.0366, 135.621 32.903\\nL 135.621 37.5009\\nL 134.898 37.5009\\nL 134.898 31.9362\\nL 135.778 31.9362\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 42.0716 21.1317\\nQ 42.0716 19.7956, 42.7318 19.0489\\nQ 43.3921 18.3022, 44.626 18.3022\\nQ 45.86 18.3022, 46.5202 19.0489\\nQ 47.1804 19.7956, 47.1804 21.1317\\nQ 47.1804 22.4836, 46.5124 23.2539\\nQ 45.8443 24.0162, 44.626 24.0162\\nQ 43.3999 24.0162, 42.7318 23.2539\\nQ 42.0716 22.4915, 42.0716 21.1317\\nM 44.626 23.3875\\nQ 45.4749 23.3875, 45.9307 22.8216\\nQ 46.3945 22.2478, 46.3945 21.1317\\nQ 46.3945 20.0392, 45.9307 19.4891\\nQ 45.4749 18.931, 44.626 18.931\\nQ 43.7772 18.931, 43.3135 19.4812\\nQ 42.8576 20.0314, 42.8576 21.1317\\nQ 42.8576 22.2557, 43.3135 22.8216\\nQ 43.7772 23.3875, 44.626 23.3875\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 47.8485 18.3651\\nL 48.603 18.3651\\nL 48.603 20.7309\\nL 51.4483 20.7309\\nL 51.4483 18.3651\\nL 52.2028 18.3651\\nL 52.2028 23.9298\\nL 51.4483 23.9298\\nL 51.4483 21.3597\\nL 48.603 21.3597\\nL 48.603 23.9298\\nL 47.8485 23.9298\\nL 47.8485 18.3651\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.12, "data-ID": 621, "mols2grid-id": 123, "mols2grid-tooltip": "<strong>Name</strong>: atropine<br><strong>SMILES</strong>: O=C(OC(CC(N(C1C2)C)C2)C1)C(c(cccc3)c3)CO<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.12</span>", "style-Solubility": "color: black"}, {"data-SMILES": "NS(=O)(=O)c2cc(C(O)=O)c(NCc1ccco1)cc2Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 136.955,95.8132 L 136.957,91.2763' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.957,91.2763 L 136.958,86.7394' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.039,84.0191 L 144.21,81.6145' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 144.21,81.6145 L 148.381,79.2099' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 138.125,80.6996 L 142.296,78.295' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 142.296,78.295 L 146.468,75.8904' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 138.123,86.4685 L 142.29,88.877' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 142.29,88.877 L 146.457,91.2854' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 140.041,83.1513 L 144.207,85.5597' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 144.207,85.5597 L 148.374,87.9682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 134.741,82.3021 L 127.55,78.1506' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 127.55,78.1506 L 120.359,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 120.359,73.9991 L 120.359,54.8415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 116.527,71.1254 L 116.527,57.7151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-4' d='M 103.768,83.5779 L 120.359,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 120.359,54.8415 L 103.768,45.2627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.768,45.2627 L 103.808,26.0949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 103.768,45.2627 L 87.1777,54.8415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 103.195,50.0177 L 91.5821,56.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 103.808,26.0949 L 98.6148,23.0848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 98.6148,23.0848 L 93.4218,20.0746' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 104.763,27.7553 L 109.968,24.7597' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 109.968,24.7597 L 115.174,21.764' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 102.852,24.4345 L 108.057,21.4389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 108.057,21.4389 L 113.262,18.4432' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.1777,54.8415 L 80.1361,50.7956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 80.1361,50.7956 L 73.0946,46.7496' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-10 atom-18' d='M 87.1777,54.8415 L 87.1777,73.9991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 68.0211,46.7613 L 60.9962,50.8302' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 60.9962,50.8302 L 53.9712,54.899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 53.9712,54.899 L 37.3514,45.3496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 37.3514,45.3496 L 20.0917,53.2808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 33.1626,43.0577 L 21.0808,48.6096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-13' d='M 35.8977,29.7385 L 36.6246,37.544' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-13' d='M 36.6246,37.544 L 37.3514,45.3496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 20.0917,53.2808 L 7.27273,39.0442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 7.27273,39.0442 L 16.8515,22.4537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 12.0277,38.4714 L 18.7329,26.8581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 16.8515,22.4537 L 24.7361,24.1293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 24.7361,24.1293 L 32.6208,25.8049' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 87.1777,73.9991 L 103.768,83.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 91.5821,72.1177 L 103.195,78.8229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 103.768,83.5779 L 103.768,89.76' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 103.768,89.76 L 103.768,95.9422' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.755 96.1963\\nL 137.533 99.07\\nQ 137.709 99.3535, 137.993 99.8669\\nQ 138.276 100.38, 138.291 100.411\\nL 138.291 96.1963\\nL 139.012 96.1963\\nL 139.012 101.622\\nL 138.268 101.622\\nL 136.36 98.4799\\nQ 136.138 98.1121, 135.901 97.6906\\nQ 135.671 97.2692, 135.602 97.1389\\nL 135.602 101.622\\nL 134.897 101.622\\nL 134.897 96.1963\\nL 135.755 96.1963\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 139.663 96.1963\\nL 140.399 96.1963\\nL 140.399 98.5029\\nL 143.173 98.5029\\nL 143.173 96.1963\\nL 143.908 96.1963\\nL 143.908 101.622\\nL 143.173 101.622\\nL 143.173 99.1159\\nL 140.399 99.1159\\nL 140.399 101.622\\nL 139.663 101.622\\nL 139.663 96.1963\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 144.171 101.431\\nQ 144.303 101.093, 144.616 100.905\\nQ 144.93 100.713, 145.365 100.713\\nQ 145.906 100.713, 146.21 101.007\\nQ 146.513 101.3, 146.513 101.821\\nQ 146.513 102.352, 146.119 102.848\\nQ 145.729 103.343, 144.92 103.93\\nL 146.574 103.93\\nL 146.574 104.334\\nL 144.161 104.334\\nL 144.161 103.996\\nQ 144.829 103.52, 145.223 103.166\\nQ 145.623 102.812, 145.815 102.493\\nQ 146.007 102.175, 146.007 101.846\\nQ 146.007 101.502, 145.835 101.31\\nQ 145.663 101.118, 145.365 101.118\\nQ 145.077 101.118, 144.885 101.234\\nQ 144.692 101.35, 144.556 101.608\\nL 144.171 101.431\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 135.427 85.4451\\nQ 135.488 85.4681, 135.741 85.5754\\nQ 135.994 85.6826, 136.27 85.7516\\nQ 136.553 85.8129, 136.829 85.8129\\nQ 137.342 85.8129, 137.641 85.5677\\nQ 137.94 85.3148, 137.94 84.878\\nQ 137.94 84.5792, 137.787 84.3953\\nQ 137.641 84.2113, 137.411 84.1117\\nQ 137.182 84.0121, 136.798 83.8972\\nQ 136.316 83.7516, 136.024 83.6136\\nQ 135.741 83.4757, 135.534 83.1845\\nQ 135.335 82.8933, 135.335 82.4029\\nQ 135.335 81.7209, 135.795 81.2994\\nQ 136.262 80.8779, 137.182 80.8779\\nQ 137.81 80.8779, 138.523 81.1768\\nL 138.346 81.7668\\nQ 137.695 81.4986, 137.205 81.4986\\nQ 136.676 81.4986, 136.385 81.7209\\nQ 136.093 81.9354, 136.101 82.3109\\nQ 136.101 82.6021, 136.247 82.7784\\nQ 136.4 82.9546, 136.614 83.0542\\nQ 136.837 83.1538, 137.205 83.2688\\nQ 137.695 83.4221, 137.986 83.5753\\nQ 138.277 83.7286, 138.484 84.0428\\nQ 138.699 84.3493, 138.699 84.878\\nQ 138.699 85.629, 138.193 86.0351\\nQ 137.695 86.4336, 136.86 86.4336\\nQ 136.377 86.4336, 136.009 86.3263\\nQ 135.649 86.2267, 135.22 86.0505\\nL 135.427 85.4451\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 147.746 75.9442\\nQ 147.746 74.6415, 148.39 73.9135\\nQ 149.034 73.1855, 150.237 73.1855\\nQ 151.44 73.1855, 152.084 73.9135\\nQ 152.727 74.6415, 152.727 75.9442\\nQ 152.727 77.2623, 152.076 78.0132\\nQ 151.425 78.7565, 150.237 78.7565\\nQ 149.041 78.7565, 148.39 78.0132\\nQ 147.746 77.2699, 147.746 75.9442\\nM 150.237 78.1435\\nQ 151.064 78.1435, 151.509 77.5918\\nQ 151.961 77.0324, 151.961 75.9442\\nQ 151.961 74.8791, 151.509 74.3426\\nQ 151.064 73.7986, 150.237 73.7986\\nQ 149.409 73.7986, 148.957 74.335\\nQ 148.513 74.8714, 148.513 75.9442\\nQ 148.513 77.04, 148.957 77.5918\\nQ 149.409 78.1435, 150.237 78.1435\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 147.737 91.2677\\nQ 147.737 89.965, 148.381 89.237\\nQ 149.025 88.509, 150.228 88.509\\nQ 151.431 88.509, 152.075 89.237\\nQ 152.718 89.965, 152.718 91.2677\\nQ 152.718 92.5858, 152.067 93.3367\\nQ 151.416 94.0801, 150.228 94.0801\\nQ 149.032 94.0801, 148.381 93.3367\\nQ 147.737 92.5934, 147.737 91.2677\\nM 150.228 93.467\\nQ 151.055 93.467, 151.5 92.9153\\nQ 151.952 92.3559, 151.952 91.2677\\nQ 151.952 90.2026, 151.5 89.6661\\nQ 151.055 89.1221, 150.228 89.1221\\nQ 149.4 89.1221, 148.948 89.6585\\nQ 148.504 90.1949, 148.504 91.2677\\nQ 148.504 92.3635, 148.948 92.9153\\nQ 149.4 93.467, 150.228 93.467\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 83.4292 15.7268\\nL 84.1649 15.7268\\nL 84.1649 18.0334\\nL 86.9389 18.0334\\nL 86.9389 15.7268\\nL 87.6745 15.7268\\nL 87.6745 21.1523\\nL 86.9389 21.1523\\nL 86.9389 18.6465\\nL 84.1649 18.6465\\nL 84.1649 21.1523\\nL 83.4292 21.1523\\nL 83.4292 15.7268\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 88.0577 18.4242\\nQ 88.0577 17.1215, 88.7014 16.3935\\nQ 89.3451 15.6655, 90.5482 15.6655\\nQ 91.7513 15.6655, 92.395 16.3935\\nQ 93.0386 17.1215, 93.0386 18.4242\\nQ 93.0386 19.7423, 92.3873 20.4932\\nQ 91.7359 21.2366, 90.5482 21.2366\\nQ 89.3527 21.2366, 88.7014 20.4932\\nQ 88.0577 19.7499, 88.0577 18.4242\\nM 90.5482 20.6235\\nQ 91.3758 20.6235, 91.8202 20.0718\\nQ 92.2723 19.5124, 92.2723 18.4242\\nQ 92.2723 17.3591, 91.8202 16.8227\\nQ 91.3758 16.2786, 90.5482 16.2786\\nQ 89.7206 16.2786, 89.2684 16.815\\nQ 88.824 17.3514, 88.824 18.4242\\nQ 88.824 19.52, 89.2684 20.0718\\nQ 89.7206 20.6235, 90.5482 20.6235\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 114.601 18.4651\\nQ 114.601 17.1624, 115.245 16.4344\\nQ 115.889 15.7064, 117.092 15.7064\\nQ 118.295 15.7064, 118.938 16.4344\\nQ 119.582 17.1624, 119.582 18.4651\\nQ 119.582 19.7831, 118.931 20.5341\\nQ 118.279 21.2774, 117.092 21.2774\\nQ 115.896 21.2774, 115.245 20.5341\\nQ 114.601 19.7908, 114.601 18.4651\\nM 117.092 20.6644\\nQ 117.919 20.6644, 118.364 20.1126\\nQ 118.816 19.5532, 118.816 18.4651\\nQ 118.816 17.3999, 118.364 16.8635\\nQ 117.919 16.3194, 117.092 16.3194\\nQ 116.264 16.3194, 115.812 16.8559\\nQ 115.367 17.3923, 115.367 18.4651\\nQ 115.367 19.5609, 115.812 20.1126\\nQ 116.264 20.6644, 117.092 20.6644\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 69.3586 42.5794\\nL 71.1364 45.453\\nQ 71.3127 45.7365, 71.5962 46.25\\nQ 71.8797 46.7634, 71.8951 46.794\\nL 71.8951 42.5794\\nL 72.6154 42.5794\\nL 72.6154 48.0048\\nL 71.8721 48.0048\\nL 69.964 44.863\\nQ 69.7418 44.4951, 69.5042 44.0737\\nQ 69.2743 43.6522, 69.2053 43.5219\\nL 69.2053 48.0048\\nL 68.5003 48.0048\\nL 68.5003 42.5794\\nL 69.3586 42.5794\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 68.4352 36.6114\\nL 69.1709 36.6114\\nL 69.1709 38.918\\nL 71.9449 38.918\\nL 71.9449 36.6114\\nL 72.6805 36.6114\\nL 72.6805 42.0368\\nL 71.9449 42.0368\\nL 71.9449 39.531\\nL 69.1709 39.531\\nL 69.1709 42.0368\\nL 68.4352 42.0368\\nL 68.4352 36.6114\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 33.0997 26.4513\\nQ 33.0997 25.1485, 33.7434 24.4205\\nQ 34.3871 23.6926, 35.5902 23.6926\\nQ 36.7933 23.6926, 37.437 24.4205\\nQ 38.0807 25.1485, 38.0807 26.4513\\nQ 38.0807 27.7693, 37.4293 28.5203\\nQ 36.778 29.2636, 35.5902 29.2636\\nQ 34.3947 29.2636, 33.7434 28.5203\\nQ 33.0997 27.777, 33.0997 26.4513\\nM 35.5902 28.6505\\nQ 36.4178 28.6505, 36.8622 28.0988\\nQ 37.3144 27.5394, 37.3144 26.4513\\nQ 37.3144 25.3861, 36.8622 24.8497\\nQ 36.4178 24.3056, 35.5902 24.3056\\nQ 34.7626 24.3056, 34.3105 24.842\\nQ 33.866 25.3784, 33.866 26.4513\\nQ 33.866 27.5471, 34.3105 28.0988\\nQ 34.7626 28.6505, 35.5902 28.6505\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 101.676 99.0917\\nQ 101.676 97.743, 102.305 97.038\\nQ 102.941 96.3253, 104.144 96.3253\\nQ 105.262 96.3253, 105.86 97.1146\\nL 105.354 97.5284\\nQ 104.918 96.9537, 104.144 96.9537\\nQ 103.324 96.9537, 102.887 97.5054\\nQ 102.458 98.0495, 102.458 99.0917\\nQ 102.458 100.164, 102.902 100.716\\nQ 103.354 101.268, 104.228 101.268\\nQ 104.826 101.268, 105.523 100.908\\nL 105.738 101.483\\nQ 105.454 101.666, 105.025 101.774\\nQ 104.596 101.881, 104.121 101.881\\nQ 102.941 101.881, 102.305 101.161\\nQ 101.676 100.44, 101.676 99.0917\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 106.519 95.9958\\nL 107.224 95.9958\\nL 107.224 101.812\\nL 106.519 101.812\\nL 106.519 95.9958\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -3.66, "data-ID": 626, "mols2grid-id": 124, "mols2grid-tooltip": "<strong>Name</strong>: furosemide<br><strong>SMILES</strong>: NS(=O)(=O)c2cc(C(O)=O)c(NCc1ccco1)cc2Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCC1(CCC(C)C)C(=O)NC(=O)NC1=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 125.39,46.2481 L 110.008,37.383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.008,37.383 L 91.3084,48.7987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.3084,48.7987 L 90.7699,70.695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-8' d='M 91.3084,48.7987 L 91.3084,26.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-2' d='M 72.0899,59.8948 L 91.3084,48.7987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7699,70.695 L 109.425,82.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.425,82.738 L 108.336,104.915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 108.336,104.915 L 123.252,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 108.336,104.915 L 92.5408,113.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 92.418,28.5284 L 98.4417,25.0508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 98.4417,25.0508 L 104.465,21.5733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 90.1989,24.6845 L 96.2226,21.2069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 96.2226,21.2069 L 102.246,17.7294' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 91.3084,26.6064 L 83.1683,21.9066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 83.1683,21.9066 L 75.0282,17.2067' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.1517,17.2067 L 61.0116,21.9066' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 61.0116,21.9066 L 52.8714,26.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 53.981,24.6845 L 47.9573,21.2069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 47.9573,21.2069 L 41.9336,17.7294' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 51.7619,28.5284 L 45.7382,25.0508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 45.7382,25.0508 L 39.7145,21.5733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 52.8714,26.6064 L 52.8714,35.8539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 52.8714,35.8539 L 52.8714,45.1015' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 55.8097,50.4951 L 63.9498,55.195' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 63.9498,55.195 L 72.0899,59.8948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 69.8707,59.8948 L 69.8707,66.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 69.8707,66.9608 L 69.8707,74.0268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 74.3092,59.8948 L 74.3092,66.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 74.3092,66.9608 L 74.3092,74.0268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 103.8 17.7473\\nQ 103.8 16.2382, 104.545 15.3949\\nQ 105.291 14.5516, 106.685 14.5516\\nQ 108.078 14.5516, 108.824 15.3949\\nQ 109.57 16.2382, 109.57 17.7473\\nQ 109.57 19.2741, 108.815 20.144\\nQ 108.061 21.0051, 106.685 21.0051\\nQ 105.3 21.0051, 104.545 20.144\\nQ 103.8 19.283, 103.8 17.7473\\nM 106.685 20.2949\\nQ 107.643 20.2949, 108.158 19.6558\\nQ 108.682 19.0078, 108.682 17.7473\\nQ 108.682 16.5134, 108.158 15.892\\nQ 107.643 15.2617, 106.685 15.2617\\nQ 105.726 15.2617, 105.202 15.8831\\nQ 104.687 16.5045, 104.687 17.7473\\nQ 104.687 19.0167, 105.202 19.6558\\nQ 105.726 20.2949, 106.685 20.2949\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 70.7007 12.3679\\nL 72.7601 15.6967\\nQ 72.9643 16.0252, 73.2928 16.6199\\nQ 73.6212 17.2147, 73.639 17.2502\\nL 73.639 12.3679\\nL 74.4734 12.3679\\nL 74.4734 18.6527\\nL 73.6123 18.6527\\nL 71.402 15.0132\\nQ 71.1446 14.5871, 70.8694 14.0989\\nQ 70.6031 13.6106, 70.5232 13.4597\\nL 70.5232 18.6527\\nL 69.7065 18.6527\\nL 69.7065 12.3679\\nL 70.7007 12.3679\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 69.631 5.45455\\nL 70.4832 5.45455\\nL 70.4832 8.12649\\nL 73.6967 8.12649\\nL 73.6967 5.45455\\nL 74.5488 5.45455\\nL 74.5488 11.7394\\nL 73.6967 11.7394\\nL 73.6967 8.83665\\nL 70.4832 8.83665\\nL 70.4832 11.7394\\nL 69.631 11.7394\\nL 69.631 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 34.6102 17.7473\\nQ 34.6102 16.2382, 35.3558 15.3949\\nQ 36.1015 14.5516, 37.4952 14.5516\\nQ 38.8888 14.5516, 39.6345 15.3949\\nQ 40.3802 16.2382, 40.3802 17.7473\\nQ 40.3802 19.2741, 39.6256 20.144\\nQ 38.8711 21.0051, 37.4952 21.0051\\nQ 36.1104 21.0051, 35.3558 20.144\\nQ 34.6102 19.283, 34.6102 17.7473\\nM 37.4952 20.2949\\nQ 38.4539 20.2949, 38.9687 19.6558\\nQ 39.4925 19.0078, 39.4925 17.7473\\nQ 39.4925 16.5134, 38.9687 15.892\\nQ 38.4539 15.2617, 37.4952 15.2617\\nQ 36.5365 15.2617, 36.0127 15.8831\\nQ 35.4979 16.5045, 35.4979 17.7473\\nQ 35.4979 19.0167, 36.0127 19.6558\\nQ 36.5365 20.2949, 37.4952 20.2949\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 44.8334 45.6563\\nL 45.6856 45.6563\\nL 45.6856 48.3282\\nL 48.899 48.3282\\nL 48.899 45.6563\\nL 49.7512 45.6563\\nL 49.7512 51.9411\\nL 48.899 51.9411\\nL 48.899 49.0384\\nL 45.6856 49.0384\\nL 45.6856 51.9411\\nL 44.8334 51.9411\\nL 44.8334 45.6563\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 51.4822 45.6563\\nL 53.5417 48.9851\\nQ 53.7458 49.3135, 54.0743 49.9083\\nQ 54.4027 50.503, 54.4205 50.5386\\nL 54.4205 45.6563\\nL 55.2549 45.6563\\nL 55.2549 51.9411\\nL 54.3938 51.9411\\nL 52.1835 48.3016\\nQ 51.9261 47.8755, 51.6509 47.3873\\nQ 51.3846 46.899, 51.3047 46.7481\\nL 51.3047 51.9411\\nL 50.488 51.9411\\nL 50.488 45.6563\\nL 51.4822 45.6563\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 69.2049 77.6664\\nQ 69.2049 76.1573, 69.9506 75.314\\nQ 70.6963 74.4707, 72.0899 74.4707\\nQ 73.4836 74.4707, 74.2293 75.314\\nQ 74.9749 76.1573, 74.9749 77.6664\\nQ 74.9749 79.1932, 74.2204 80.0631\\nQ 73.4659 80.9242, 72.0899 80.9242\\nQ 70.7051 80.9242, 69.9506 80.0631\\nQ 69.2049 79.2021, 69.2049 77.6664\\nM 72.0899 80.214\\nQ 73.0486 80.214, 73.5635 79.5749\\nQ 74.0872 78.9269, 74.0872 77.6664\\nQ 74.0872 76.4325, 73.5635 75.8111\\nQ 73.0486 75.1808, 72.0899 75.1808\\nQ 71.1312 75.1808, 70.6075 75.8022\\nQ 70.0926 76.4236, 70.0926 77.6664\\nQ 70.0926 78.9358, 70.6075 79.5749\\nQ 71.1312 80.214, 72.0899 80.214\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.57, "data-ID": 631, "mols2grid-id": 125, "mols2grid-tooltip": "<strong>Name</strong>: amobarbital<br><strong>SMILES</strong>: CCC1(CCC(C)C)C(=O)NC(=O)NC1=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OCCN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 143.986,9.54949 L 139.519,12.0604' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 139.519,12.0604 L 135.052,14.5712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.052,14.5712 L 120.999,6.25279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 120.999,6.25279 L 114.961,9.64629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.961,9.64629 L 108.924,13.0398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.602,12.9797 L 98.6542,9.47043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.6542,9.47043 L 92.7062,5.96119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-3' d='M 106.61,30.5759 L 106.674,23.7748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-3' d='M 106.674,23.7748 L 106.738,16.9737' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.7062,5.96119 L 78.4957,13.988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.4957,13.988 L 78.4309,20.7891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.4309,20.7891 L 78.366,27.5902' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 76.179,31.5357 L 70.1581,34.9523' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.1581,34.9523 L 64.1373,38.3688' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-6 atom-25' d='M 80.5011,31.5842 L 86.4497,35.0935' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-6 atom-25' d='M 86.4497,35.0935 L 92.3982,38.6027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 64.1373,38.3688 L 64.0067,54.6988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.0067,54.6988 L 49.8039,62.7594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.8039,62.7594 L 49.7495,69.5642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.7495,69.5642 L 49.6951,76.369' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 47.5124,80.3362 L 41.5263,83.7932' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 41.5263,83.7932 L 35.5402,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-10' d='M 63.6074,87.2501 L 57.7187,83.8008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-10' d='M 57.7187,83.8008 L 51.83,80.3516' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 35.5402,87.2501 L 21.407,79.0883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 31.7878,88.8526 L 21.8945,83.1394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 35.5402,103.574 L 35.5402,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 21.407,79.0883 L 7.27273,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 7.27273,87.2501 L 7.27273,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 10.537,89.6986 L 10.537,101.125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 7.27273,103.574 L 21.407,111.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 21.407,111.735 L 35.5402,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 21.8945,107.684 L 31.7878,101.971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 35.5402,103.574 L 41.6618,107.109' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 41.6618,107.109 L 47.7834,110.644' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 51.559,110.631 L 57.5832,107.102' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 57.5832,107.102 L 63.6074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 63.6074,103.574 L 77.9397,111.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 67.3726,101.961 L 77.4052,107.674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-18' d='M 63.6074,87.2501 L 63.6074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 77.9397,111.735 L 92.074,103.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 92.074,103.574 L 92.074,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 88.8097,101.125 L 88.8097,89.6986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.074,87.2501 L 96.6733,84.595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 96.6733,84.595 L 101.273,81.9399' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-23' d='M 92.074,87.2501 L 77.9397,79.0883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 77.9397,79.0883 L 63.6074,87.2501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 77.4052,83.1492 L 67.3726,88.8624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 92.3982,38.6027 L 106.61,30.5759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 144.312 8.18633\\nQ 144.312 7.07648, 144.86 6.45627\\nQ 145.409 5.83606, 146.434 5.83606\\nQ 147.459 5.83606, 148.007 6.45627\\nQ 148.556 7.07648, 148.556 8.18633\\nQ 148.556 9.30923, 148.001 9.94903\\nQ 147.446 10.5823, 146.434 10.5823\\nQ 145.415 10.5823, 144.86 9.94903\\nQ 144.312 9.31576, 144.312 8.18633\\nM 146.434 10.06\\nQ 147.139 10.06, 147.518 9.58996\\nQ 147.903 9.11338, 147.903 8.18633\\nQ 147.903 7.27886, 147.518 6.82186\\nQ 147.139 6.35834, 146.434 6.35834\\nQ 145.729 6.35834, 145.344 6.81534\\nQ 144.965 7.27233, 144.965 8.18633\\nQ 144.965 9.11991, 145.344 9.58996\\nQ 145.729 10.06, 146.434 10.06\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 149.11 5.88828\\nL 149.737 5.88828\\nL 149.737 7.85337\\nL 152.101 7.85337\\nL 152.101 5.88828\\nL 152.727 5.88828\\nL 152.727 10.5105\\nL 152.101 10.5105\\nL 152.101 8.37565\\nL 149.737 8.37565\\nL 149.737 10.5105\\nL 149.11 10.5105\\nL 149.11 5.88828\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 105.741 11.9435\\nL 107.256 14.3917\\nQ 107.406 14.6332, 107.648 15.0707\\nQ 107.889 15.5081, 107.902 15.5342\\nL 107.902 11.9435\\nL 108.516 11.9435\\nL 108.516 16.5657\\nL 107.883 16.5657\\nL 106.257 13.889\\nQ 106.068 13.5756, 105.865 13.2166\\nQ 105.67 12.8575, 105.611 12.7465\\nL 105.611 16.5657\\nL 105.01 16.5657\\nL 105.01 11.9435\\nL 105.741 11.9435\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 77.3184 27.9982\\nL 78.833 30.4464\\nQ 78.9832 30.688, 79.2247 31.1254\\nQ 79.4663 31.5628, 79.4793 31.5889\\nL 79.4793 27.9982\\nL 80.093 27.9982\\nL 80.093 32.6204\\nL 79.4598 32.6204\\nL 77.8342 29.9437\\nQ 77.6448 29.6304, 77.4424 29.2713\\nQ 77.2466 28.9122, 77.1878 28.8012\\nL 77.1878 32.6204\\nL 76.5872 32.6204\\nL 76.5872 27.9982\\nL 77.3184 27.9982\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 48.6516 76.7772\\nL 50.1663 79.2254\\nQ 50.3164 79.467, 50.558 79.9044\\nQ 50.7995 80.3418, 50.8126 80.3679\\nL 50.8126 76.7772\\nL 51.4263 76.7772\\nL 51.4263 81.3994\\nL 50.793 81.3994\\nL 49.1674 78.7227\\nQ 48.9781 78.4094, 48.7757 78.0503\\nQ 48.5798 77.6912, 48.5211 77.5802\\nL 48.5211 81.3994\\nL 47.9204 81.3994\\nL 47.9204 76.7772\\nL 48.6516 76.7772\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 48.3676 113.322\\nQ 48.4199 113.341, 48.6353 113.433\\nQ 48.8508 113.524, 49.0858 113.583\\nQ 49.3273 113.635, 49.5624 113.635\\nQ 49.9998 113.635, 50.2544 113.426\\nQ 50.509 113.211, 50.509 112.839\\nQ 50.509 112.584, 50.3784 112.427\\nQ 50.2544 112.271, 50.0585 112.186\\nQ 49.8627 112.101, 49.5362 112.003\\nQ 49.125 111.879, 48.8769 111.761\\nQ 48.6353 111.644, 48.459 111.396\\nQ 48.2893 111.148, 48.2893 110.73\\nQ 48.2893 110.149, 48.681 109.79\\nQ 49.0793 109.431, 49.8627 109.431\\nQ 50.398 109.431, 51.0052 109.685\\nL 50.855 110.188\\nQ 50.3001 109.96, 49.8823 109.96\\nQ 49.4318 109.96, 49.1837 110.149\\nQ 48.9356 110.332, 48.9422 110.652\\nQ 48.9422 110.9, 49.0662 111.05\\nQ 49.1968 111.2, 49.3796 111.285\\nQ 49.5689 111.37, 49.8823 111.468\\nQ 50.3001 111.598, 50.5482 111.729\\nQ 50.7963 111.859, 50.9725 112.127\\nQ 51.1553 112.388, 51.1553 112.839\\nQ 51.1553 113.478, 50.7244 113.824\\nQ 50.3001 114.164, 49.5885 114.164\\nQ 49.1772 114.164, 48.8638 114.073\\nQ 48.557 113.988, 48.1914 113.838\\nL 48.3676 113.322\\n' fill='#CCCC00'/>\\n<path class='atom-22' d='M 101.599 80.8826\\nQ 101.599 79.7336, 102.134 79.1329\\nQ 102.676 78.5258, 103.701 78.5258\\nQ 104.654 78.5258, 105.164 79.1982\\nL 104.733 79.5508\\nQ 104.361 79.0611, 103.701 79.0611\\nQ 103.003 79.0611, 102.631 79.5312\\nQ 102.265 79.9947, 102.265 80.8826\\nQ 102.265 81.7966, 102.644 82.2666\\nQ 103.029 82.7367, 103.773 82.7367\\nQ 104.282 82.7367, 104.876 82.4299\\nL 105.059 82.9195\\nQ 104.818 83.0762, 104.452 83.1676\\nQ 104.086 83.259, 103.682 83.259\\nQ 102.676 83.259, 102.134 82.6453\\nQ 101.599 82.0316, 101.599 80.8826\\n' fill='#00CC00'/>\\n<path class='atom-22' d='M 105.725 78.2451\\nL 106.326 78.2451\\nL 106.326 83.2002\\nL 105.725 83.2002\\nL 105.725 78.2451\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -4.16, "data-ID": 636, "mols2grid-id": 126, "mols2grid-tooltip": "<strong>Name</strong>: perphenazine<br><strong>SMILES</strong>: OCCN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.16</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CC(=O)Nc1nnc(S(=O)(=O)N)s1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 95.4882,97.9974 L 113.943,96.0895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.064,97.4488 L 116.132,103.073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.132,103.073 L 120.201,108.697' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.822,94.7301 L 119.89,100.354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.89,100.354 L 123.959,105.978' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 113.943,96.0895 L 117.813,87.429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 117.813,87.429 L 121.684,78.7686' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.617,71.0415 L 115.226,63.5889' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.226,63.5889 L 109.835,56.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.835,56.1363 L 112.79,47.0397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 112.79,47.0397 L 115.746,37.9431' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.31,51.974 L 108.379,45.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.379,45.6064 L 110.448,39.2388' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-4' d='M 89.3284,56.1363 L 99.5815,56.1363' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-4' d='M 99.5815,56.1363 L 109.835,56.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 113.93,31.8483 L 101.214,22.6093' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.1681,22.6783 L 87.3223,28.3788' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.3223,28.3788 L 79.4766,34.0794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.5408,28.1409 L 90.0488,32.1312' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.0488,32.1312 L 84.5567,36.1216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.4766,34.0794 L 69.8037,30.9363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.8037,30.9363 L 60.1309,27.7933' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 79.4766,34.0794 L 82.4335,43.1806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 82.4335,43.1806 L 85.3905,52.2818' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.9168,22.6986 L 57.7848,17.3909' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 57.7848,17.3909 L 56.6528,12.0832' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 54.3805,23.6661 L 53.2485,18.3584' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.2485,18.3584 L 52.1165,13.0507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 53.3239,27.513 L 49.4123,31.0372' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 49.4123,31.0372 L 45.5007,34.5614' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 56.4286,30.959 L 52.5171,34.4832' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 52.5171,34.4832 L 48.6055,38.0074' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 54.8763,26.0875 L 48.7802,24.1104' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 48.7802,24.1104 L 42.6841,22.1334' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 121.803 111.141\\nQ 121.803 109.564, 122.582 108.683\\nQ 123.362 107.801, 124.818 107.801\\nQ 126.274 107.801, 127.054 108.683\\nQ 127.833 109.564, 127.833 111.141\\nQ 127.833 112.736, 127.044 113.646\\nQ 126.256 114.545, 124.818 114.545\\nQ 123.371 114.545, 122.582 113.646\\nQ 121.803 112.746, 121.803 111.141\\nM 124.818 113.803\\nQ 125.82 113.803, 126.358 113.135\\nQ 126.905 112.458, 126.905 111.141\\nQ 126.905 109.851, 126.358 109.202\\nQ 125.82 108.543, 124.818 108.543\\nQ 123.816 108.543, 123.269 109.193\\nQ 122.731 109.842, 122.731 111.141\\nQ 122.731 112.467, 123.269 113.135\\nQ 123.816 113.803, 124.818 113.803\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 121.959 71.6206\\nL 124.111 75.0994\\nQ 124.325 75.4426, 124.668 76.0642\\nQ 125.011 76.6857, 125.03 76.7228\\nL 125.03 71.6206\\nL 125.902 71.6206\\nL 125.902 78.1885\\nL 125.002 78.1885\\nL 122.692 74.3851\\nQ 122.423 73.9398, 122.135 73.4296\\nQ 121.857 72.9194, 121.774 72.7616\\nL 121.774 78.1885\\nL 120.92 78.1885\\nL 120.92 71.6206\\nL 121.959 71.6206\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 126.69 71.6206\\nL 127.581 71.6206\\nL 127.581 74.4129\\nL 130.939 74.4129\\nL 130.939 71.6206\\nL 131.83 71.6206\\nL 131.83 78.1885\\nL 130.939 78.1885\\nL 130.939 75.155\\nL 127.581 75.155\\nL 127.581 78.1885\\nL 126.69 78.1885\\nL 126.69 71.6206\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 115.549 30.7954\\nL 117.701 34.2742\\nQ 117.915 34.6174, 118.258 35.2389\\nQ 118.601 35.8605, 118.62 35.8976\\nL 118.62 30.7954\\nL 119.492 30.7954\\nL 119.492 37.3633\\nL 118.592 37.3633\\nL 116.282 33.5599\\nQ 116.013 33.1146, 115.725 32.6044\\nQ 115.447 32.0941, 115.363 31.9364\\nL 115.363 37.3633\\nL 114.51 37.3633\\nL 114.51 30.7954\\nL 115.549 30.7954\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 96.7869 17.1633\\nL 98.9391 20.6421\\nQ 99.1525 20.9853, 99.4957 21.6068\\nQ 99.8389 22.2284, 99.8575 22.2655\\nL 99.8575 17.1633\\nL 100.729 17.1633\\nL 100.729 23.7312\\nL 99.8297 23.7312\\nL 97.5198 19.9277\\nQ 97.2507 19.4825, 96.9632 18.9722\\nQ 96.6849 18.462, 96.6014 18.3043\\nL 96.6014 23.7312\\nL 95.7479 23.7312\\nL 95.7479 17.1633\\nL 96.7869 17.1633\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 55.5906 29.1751\\nQ 55.6648 29.2029, 55.971 29.3328\\nQ 56.2771 29.4626, 56.6111 29.5461\\nQ 56.9543 29.6204, 57.2883 29.6204\\nQ 57.9098 29.6204, 58.2716 29.3235\\nQ 58.6334 29.0174, 58.6334 28.4886\\nQ 58.6334 28.1268, 58.4478 27.9042\\nQ 58.2716 27.6815, 57.9933 27.5609\\nQ 57.715 27.4403, 57.2511 27.3012\\nQ 56.6667 27.1249, 56.3142 26.9579\\nQ 55.971 26.791, 55.7205 26.4384\\nQ 55.4793 26.0859, 55.4793 25.4922\\nQ 55.4793 24.6666, 56.0359 24.1564\\nQ 56.6018 23.6462, 57.715 23.6462\\nQ 58.4757 23.6462, 59.3384 24.0079\\nL 59.125 24.7223\\nQ 58.3365 24.3976, 57.7428 24.3976\\nQ 57.1027 24.3976, 56.7502 24.6666\\nQ 56.3977 24.9263, 56.407 25.3809\\nQ 56.407 25.7334, 56.5832 25.9468\\nQ 56.7688 26.1601, 57.0285 26.2807\\nQ 57.2975 26.4013, 57.7428 26.5405\\nQ 58.3365 26.726, 58.689 26.9116\\nQ 59.0416 27.0971, 59.292 27.4774\\nQ 59.5518 27.8485, 59.5518 28.4886\\nQ 59.5518 29.3977, 58.9395 29.8894\\nQ 58.3365 30.3718, 57.3254 30.3718\\nQ 56.7409 30.3718, 56.2956 30.2419\\nQ 55.8596 30.1213, 55.3401 29.9079\\nL 55.5906 29.1751\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 50.5611 8.79416\\nQ 50.5611 7.21712, 51.3403 6.33583\\nQ 52.1196 5.45455, 53.576 5.45455\\nQ 55.0325 5.45455, 55.8117 6.33583\\nQ 56.591 7.21712, 56.591 8.79416\\nQ 56.591 10.3898, 55.8024 11.2989\\nQ 55.0139 12.1987, 53.576 12.1987\\nQ 52.1289 12.1987, 51.3403 11.2989\\nQ 50.5611 10.399, 50.5611 8.79416\\nM 53.576 11.4566\\nQ 54.5779 11.4566, 55.116 10.7886\\nQ 55.6633 10.1114, 55.6633 8.79416\\nQ 55.6633 7.5047, 55.116 6.85533\\nQ 54.5779 6.19668, 53.576 6.19668\\nQ 52.5741 6.19668, 52.0268 6.84605\\nQ 51.4888 7.49542, 51.4888 8.79416\\nQ 51.4888 10.1207, 52.0268 10.7886\\nQ 52.5741 11.4566, 53.576 11.4566\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 40.6459 39.3593\\nQ 40.6459 37.7823, 41.4251 36.901\\nQ 42.2043 36.0197, 43.6608 36.0197\\nQ 45.1172 36.0197, 45.8965 36.901\\nQ 46.6757 37.7823, 46.6757 39.3593\\nQ 46.6757 40.9549, 45.8872 41.864\\nQ 45.0987 42.7639, 43.6608 42.7639\\nQ 42.2136 42.7639, 41.4251 41.864\\nQ 40.6459 40.9642, 40.6459 39.3593\\nM 43.6608 42.0218\\nQ 44.6627 42.0218, 45.2007 41.3538\\nQ 45.748 40.6766, 45.748 39.3593\\nQ 45.748 38.0699, 45.2007 37.4205\\nQ 44.6627 36.7619, 43.6608 36.7619\\nQ 42.6589 36.7619, 42.1116 37.4112\\nQ 41.5735 38.0606, 41.5735 39.3593\\nQ 41.5735 40.6859, 42.1116 41.3538\\nQ 42.6589 42.0218, 43.6608 42.0218\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 28.1704 17.9132\\nL 29.0609 17.9132\\nL 29.0609 20.7054\\nL 32.4191 20.7054\\nL 32.4191 17.9132\\nL 33.3097 17.9132\\nL 33.3097 24.4811\\nL 32.4191 24.4811\\nL 32.4191 21.4476\\nL 29.0609 21.4476\\nL 29.0609 24.4811\\nL 28.1704 24.4811\\nL 28.1704 17.9132\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 33.628 24.2506\\nQ 33.7872 23.8404, 34.1668 23.6139\\nQ 34.5464 23.3812, 35.073 23.3812\\nQ 35.7281 23.3812, 36.0954 23.7363\\nQ 36.4628 24.0914, 36.4628 24.7221\\nQ 36.4628 25.3649, 35.9852 25.965\\nQ 35.5138 26.565, 34.5342 27.2752\\nL 36.5363 27.2752\\nL 36.5363 27.765\\nL 33.6158 27.765\\nL 33.6158 27.3548\\nQ 34.424 26.7793, 34.9015 26.3507\\nQ 35.3852 25.9221, 35.6179 25.5364\\nQ 35.8505 25.1507, 35.8505 24.7527\\nQ 35.8505 24.3363, 35.6424 24.1037\\nQ 35.4342 23.871, 35.073 23.871\\nQ 34.724 23.871, 34.4913 24.0118\\nQ 34.2587 24.1527, 34.0933 24.4649\\nL 33.628 24.2506\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 38.3452 17.9132\\nL 40.4974 21.3919\\nQ 40.7108 21.7352, 41.054 22.3567\\nQ 41.3973 22.9782, 41.4158 23.0153\\nL 41.4158 17.9132\\nL 42.2878 17.9132\\nL 42.2878 24.4811\\nL 41.388 24.4811\\nL 39.0781 20.6776\\nQ 38.8091 20.2323, 38.5215 19.7221\\nQ 38.2432 19.2119, 38.1597 19.0542\\nL 38.1597 24.4811\\nL 37.3062 24.4811\\nL 37.3062 17.9132\\nL 38.3452 17.9132\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 84.7875 58.3905\\nQ 84.8617 58.4183, 85.1678 58.5482\\nQ 85.474 58.6781, 85.8079 58.7616\\nQ 86.1512 58.8358, 86.4851 58.8358\\nQ 87.1067 58.8358, 87.4685 58.5389\\nQ 87.8302 58.2328, 87.8302 57.704\\nQ 87.8302 57.3422, 87.6447 57.1196\\nQ 87.4685 56.8969, 87.1902 56.7763\\nQ 86.9119 56.6557, 86.448 56.5166\\nQ 85.8636 56.3403, 85.5111 56.1734\\nQ 85.1678 56.0064, 84.9174 55.6539\\nQ 84.6762 55.3014, 84.6762 54.7076\\nQ 84.6762 53.882, 85.2328 53.3718\\nQ 85.7986 52.8616, 86.9119 52.8616\\nQ 87.6725 52.8616, 88.5353 53.2234\\nL 88.3219 53.9377\\nQ 87.5334 53.613, 86.9397 53.613\\nQ 86.2996 53.613, 85.9471 53.882\\nQ 85.5946 54.1418, 85.6038 54.5963\\nQ 85.6038 54.9488, 85.7801 55.1622\\nQ 85.9656 55.3756, 86.2254 55.4962\\nQ 86.4944 55.6168, 86.9397 55.7559\\nQ 87.5334 55.9414, 87.8859 56.127\\nQ 88.2384 56.3125, 88.4889 56.6929\\nQ 88.7486 57.0639, 88.7486 57.704\\nQ 88.7486 58.6131, 88.1364 59.1048\\nQ 87.5334 59.5872, 86.5222 59.5872\\nQ 85.9378 59.5872, 85.4925 59.4573\\nQ 85.0565 59.3367, 84.537 59.1234\\nL 84.7875 58.3905\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -2.36, "data-ID": 641, "mols2grid-id": 127, "mols2grid-tooltip": "<strong>Name</strong>: acetazoleamide<br><strong>SMILES</strong>: CC(=O)Nc1nnc(S(=O)(=O)N)s1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.36</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CN1CCC=C(C(=O)OC)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 145.919,66.3443 L 136.858,61.1134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.858,61.1134 L 127.797,55.8825' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.715,48.1863 L 123.715,34.8322' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.715,34.8322 L 123.715,21.4782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 95.9617,69.549 L 107.717,62.7621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 107.717,62.7621 L 119.472,55.9752' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.715,21.4782 L 95.9617,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9617,5.45455 L 68.2088,21.4782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.004,21.4782 L 71.4135,53.5254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.4135,21.4782 L 65.004,53.5254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.2088,53.5254 L 40.4729,69.6152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 68.2088,53.5254 L 95.9617,69.549' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 42.0705,66.8371 L 33.3611,61.829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 33.3611,61.829 L 24.6517,56.8208' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 38.8754,72.3934 L 30.1661,67.3853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.1661,67.3853 L 21.4567,62.3772' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.4729,69.6152 L 40.4916,82.952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.4916,82.952 L 40.5103,96.2888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 35.7107,104.468 L 27.0259,109.507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.0259,109.507 L 18.3411,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 121.708 48.9875\\nL 124.682 53.7946\\nQ 124.977 54.2689, 125.452 55.1278\\nQ 125.926 55.9866, 125.951 56.0379\\nL 125.951 48.9875\\nL 127.156 48.9875\\nL 127.156 58.0633\\nL 125.913 58.0633\\nL 122.721 52.8075\\nQ 122.349 52.1922, 121.952 51.4872\\nQ 121.567 50.7821, 121.452 50.5642\\nL 121.452 58.0633\\nL 120.273 58.0633\\nL 120.273 48.9875\\nL 121.708 48.9875\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 14.081 56.8604\\nQ 14.081 54.6812, 15.1578 53.4634\\nQ 16.2346 52.2456, 18.2471 52.2456\\nQ 20.2597 52.2456, 21.3365 53.4634\\nQ 22.4133 54.6812, 22.4133 56.8604\\nQ 22.4133 59.0653, 21.3237 60.3215\\nQ 20.2341 61.565, 18.2471 61.565\\nQ 16.2474 61.565, 15.1578 60.3215\\nQ 14.081 59.0781, 14.081 56.8604\\nM 18.2471 60.5395\\nQ 19.6316 60.5395, 20.3751 59.6165\\nQ 21.1314 58.6807, 21.1314 56.8604\\nQ 21.1314 55.0786, 20.3751 54.1813\\nQ 19.6316 53.2711, 18.2471 53.2711\\nQ 16.8627 53.2711, 16.1064 54.1685\\nQ 15.3629 55.0658, 15.3629 56.8604\\nQ 15.3629 58.6935, 16.1064 59.6165\\nQ 16.8627 60.5395, 18.2471 60.5395\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 36.3517 101.705\\nQ 36.3517 99.526, 37.4285 98.3082\\nQ 38.5052 97.0904, 40.5178 97.0904\\nQ 42.5304 97.0904, 43.6072 98.3082\\nQ 44.684 99.526, 44.684 101.705\\nQ 44.684 103.91, 43.5943 105.166\\nQ 42.5047 106.41, 40.5178 106.41\\nQ 38.5181 106.41, 37.4285 105.166\\nQ 36.3517 103.923, 36.3517 101.705\\nM 40.5178 105.384\\nQ 41.9023 105.384, 42.6457 104.461\\nQ 43.4021 103.525, 43.4021 101.705\\nQ 43.4021 99.9234, 42.6457 99.026\\nQ 41.9023 98.1159, 40.5178 98.1159\\nQ 39.1334 98.1159, 38.3771 99.0132\\nQ 37.6336 99.9106, 37.6336 101.705\\nQ 37.6336 103.538, 38.3771 104.461\\nQ 39.1334 105.384, 40.5178 105.384\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 0.81, "data-ID": 646, "mols2grid-id": 128, "mols2grid-tooltip": "<strong>Name</strong>: arecoline<br><strong>SMILES</strong>: CN1CCC=C(C(=O)OC)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.81</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C(C)(C)C1(CC)C(=O)NC(=O)NC1(=O)", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105.678,95.4459 L 89.665,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 105.678,95.4459 L 130.224,99.7701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-0 atom-3' d='M 105.678,95.4459 L 95.8751,66.3023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.8751,66.3023 L 122.126,50.2766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-3 atom-6' d='M 95.8751,66.3023 L 95.8751,35.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 68.8956,81.8793 L 95.8751,66.3023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 122.126,50.2766 L 143.72,62.7216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.4327,37.8462 L 105.889,32.9643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.889,32.9643 L 114.345,28.0824' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.3175,32.4501 L 102.774,27.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 102.774,27.5682 L 111.23,22.6863' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 95.8751,35.1482 L 84.4478,28.5504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 84.4478,28.5504 L 73.0204,21.9526' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.7708,21.9526 L 53.3435,28.5504' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.3435,28.5504 L 41.9162,35.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 43.4738,32.4501 L 35.0175,27.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 35.0175,27.5682 L 26.5613,22.6863' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 40.3585,37.8462 L 31.9023,32.9643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 31.9023,32.9643 L 23.446,28.0824' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 41.9162,35.1482 L 41.9162,48.1301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 41.9162,48.1301 L 41.9162,61.112' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 46.041,68.6838 L 57.4683,75.2816' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 57.4683,75.2816 L 68.8956,81.8793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 65.7802,81.8793 L 65.7802,91.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 65.7802,91.7988 L 65.7802,101.718' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.011,81.8793 L 72.011,91.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.011,91.7988 L 72.011,101.718' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 113.411 22.7114\\nQ 113.411 20.593, 114.457 19.4091\\nQ 115.504 18.2252, 117.461 18.2252\\nQ 119.417 18.2252, 120.464 19.4091\\nQ 121.511 20.593, 121.511 22.7114\\nQ 121.511 24.8548, 120.452 26.0761\\nQ 119.392 27.2849, 117.461 27.2849\\nQ 115.517 27.2849, 114.457 26.0761\\nQ 113.411 24.8673, 113.411 22.7114\\nM 117.461 26.2879\\nQ 118.807 26.2879, 119.529 25.3907\\nQ 120.265 24.481, 120.265 22.7114\\nQ 120.265 20.9793, 119.529 20.1069\\nQ 118.807 19.2222, 117.461 19.2222\\nQ 116.115 19.2222, 115.38 20.0945\\nQ 114.657 20.9668, 114.657 22.7114\\nQ 114.657 24.4934, 115.38 25.3907\\nQ 116.115 26.2879, 117.461 26.2879\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 66.9454 15.1597\\nL 69.8365 19.8328\\nQ 70.1231 20.2939, 70.5842 21.1288\\nQ 71.0453 21.9637, 71.0702 22.0136\\nL 71.0702 15.1597\\nL 72.2416 15.1597\\nL 72.2416 23.9825\\nL 71.0328 23.9825\\nL 67.9299 18.8732\\nQ 67.5685 18.2751, 67.1822 17.5897\\nQ 66.8083 16.9043, 66.6962 16.6925\\nL 66.6962 23.9825\\nL 65.5497 23.9825\\nL 65.5497 15.1597\\nL 66.9454 15.1597\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 65.4438 5.45455\\nL 66.6401 5.45455\\nL 66.6401 9.2055\\nL 71.1512 9.2055\\nL 71.1512 5.45455\\nL 72.3475 5.45455\\nL 72.3475 14.2774\\nL 71.1512 14.2774\\nL 71.1512 10.2024\\nL 66.6401 10.2024\\nL 66.6401 14.2774\\nL 65.4438 14.2774\\nL 65.4438 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 16.2805 22.7114\\nQ 16.2805 20.593, 17.3273 19.4091\\nQ 18.374 18.2252, 20.3305 18.2252\\nQ 22.287 18.2252, 23.3338 19.4091\\nQ 24.3806 20.593, 24.3806 22.7114\\nQ 24.3806 24.8548, 23.3213 26.0761\\nQ 22.2621 27.2849, 20.3305 27.2849\\nQ 18.3865 27.2849, 17.3273 26.0761\\nQ 16.2805 24.8673, 16.2805 22.7114\\nM 20.3305 26.2879\\nQ 21.6764 26.2879, 22.3992 25.3907\\nQ 23.1344 24.481, 23.1344 22.7114\\nQ 23.1344 20.9793, 22.3992 20.1069\\nQ 21.6764 19.2222, 20.3305 19.2222\\nQ 18.9847 19.2222, 18.2494 20.0945\\nQ 17.5267 20.9668, 17.5267 22.7114\\nQ 17.5267 24.4934, 18.2494 25.3907\\nQ 18.9847 26.2879, 20.3305 26.2879\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 30.6322 61.8908\\nL 31.8285 61.8908\\nL 31.8285 65.6418\\nL 36.3396 65.6418\\nL 36.3396 61.8908\\nL 37.5359 61.8908\\nL 37.5359 70.7137\\nL 36.3396 70.7137\\nL 36.3396 66.6387\\nL 31.8285 66.6387\\nL 31.8285 70.7137\\nL 30.6322 70.7137\\nL 30.6322 61.8908\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 39.9659 61.8908\\nL 42.857 66.564\\nQ 43.1436 67.025, 43.6047 67.86\\nQ 44.0658 68.6949, 44.0907 68.7448\\nL 44.0907 61.8908\\nL 45.2621 61.8908\\nL 45.2621 70.7137\\nL 44.0533 70.7137\\nL 40.9504 65.6044\\nQ 40.589 65.0063, 40.2027 64.3209\\nQ 39.8288 63.6355, 39.7167 63.4236\\nL 39.7167 70.7137\\nL 38.5702 70.7137\\nL 38.5702 61.8908\\nL 39.9659 61.8908\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 64.8456 106.828\\nQ 64.8456 104.709, 65.8924 103.525\\nQ 66.9392 102.341, 68.8956 102.341\\nQ 70.8521 102.341, 71.8989 103.525\\nQ 72.9457 104.709, 72.9457 106.828\\nQ 72.9457 108.971, 71.8864 110.192\\nQ 70.8272 111.401, 68.8956 111.401\\nQ 66.9516 111.401, 65.8924 110.192\\nQ 64.8456 108.983, 64.8456 106.828\\nM 68.8956 110.404\\nQ 70.2415 110.404, 70.9643 109.507\\nQ 71.6995 108.597, 71.6995 106.828\\nQ 71.6995 105.095, 70.9643 104.223\\nQ 70.2415 103.338, 68.8956 103.338\\nQ 67.5498 103.338, 66.8145 104.211\\nQ 66.0918 105.083, 66.0918 106.828\\nQ 66.0918 108.61, 66.8145 109.507\\nQ 67.5498 110.404, 68.8956 110.404\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.21, "data-ID": 651, "mols2grid-id": 129, "mols2grid-tooltip": "<strong>Name</strong>: probarbital<br><strong>SMILES</strong>: C(C)(C)C1(CC)C(=O)NC(=O)NC1(=O)<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.21</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COc2ccc(NS(=O)(=O)c1ccc(N)cc1)nn2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 150.417,98.1724 L 150.425,92.6026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 150.425,92.6026 L 150.433,87.0328' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 147.707,82.4967 L 141.449,78.8667' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 141.449,78.8667 L 135.191,75.2368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 135.191,75.2368 L 135.191,57.622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.668,72.5946 L 131.668,60.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-2' d='M 122.269,82.6976 L 128.73,78.9672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-2' d='M 128.73,78.9672 L 135.191,75.2368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 135.191,57.622 L 119.937,48.8146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 119.937,48.8146 L 104.682,57.622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 119.41,53.1867 L 108.732,59.3518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.682,57.622 L 98.2079,53.9019' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 98.2079,53.9019 L 91.7334,50.1818' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-5 atom-17' d='M 104.682,57.622 L 104.682,64.9621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-5 atom-17' d='M 104.682,64.9621 L 104.682,72.3022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.0685,50.1926 L 81.5956,53.3624' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.5956,53.3624 L 76.1227,56.5323' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.3938,60.6513 L 72.4011,64.8103' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.4011,64.8103 L 72.4084,68.9694' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.9168,60.6451 L 75.924,64.8042' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 75.924,64.8042 L 75.9313,68.9632' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 75.2235,60.3245 L 79.0623,62.5328' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 79.0623,62.5328 L 82.901,64.7412' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 76.9802,57.2708 L 80.819,59.4791' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 80.819,59.4791 L 84.6578,61.6875' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 72.1101,56.5027 L 65.4894,52.6986' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 65.4894,52.6986 L 58.8687,48.8945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 58.8687,48.8945 L 43.6319,57.7336' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 54.8154,47.173 L 44.1496,53.3604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-10' d='M 58.8323,31.2797 L 58.8687,48.8945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.6319,57.7336 L 28.3587,48.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 28.3587,48.9579 L 28.3223,31.3431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 31.8762,46.3084 L 31.8507,33.978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 28.3223,31.3431 L 23.335,28.4772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 23.335,28.4772 L 18.3476,25.6114' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 28.3223,31.3431 L 43.5591,22.504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 43.5591,22.504 L 58.8323,31.2797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 44.0949,26.875 L 54.7862,33.018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 107.015,76.5833 L 117.672,82.7365' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 110.375,74.4553 L 117.835,78.7626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 148.147 84.0947\\nQ 148.147 82.8969, 148.739 82.2275\\nQ 149.331 81.5581, 150.437 81.5581\\nQ 151.544 81.5581, 152.135 82.2275\\nQ 152.727 82.8969, 152.727 84.0947\\nQ 152.727 85.3066, 152.128 85.9971\\nQ 151.529 86.6805, 150.437 86.6805\\nQ 149.338 86.6805, 148.739 85.9971\\nQ 148.147 85.3136, 148.147 84.0947\\nM 150.437 86.1168\\nQ 151.198 86.1168, 151.607 85.6095\\nQ 152.023 85.0952, 152.023 84.0947\\nQ 152.023 83.1153, 151.607 82.6221\\nQ 151.198 82.1218, 150.437 82.1218\\nQ 149.676 82.1218, 149.261 82.615\\nQ 148.852 83.1082, 148.852 84.0947\\nQ 148.852 85.1022, 149.261 85.6095\\nQ 149.676 86.1168, 150.437 86.1168\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 88.2983 46.3474\\nL 89.9329 48.9896\\nQ 90.095 49.2503, 90.3557 49.7224\\nQ 90.6164 50.1944, 90.6305 50.2226\\nL 90.6305 46.3474\\nL 91.2928 46.3474\\nL 91.2928 51.3359\\nL 90.6093 51.3359\\nL 88.8549 48.4471\\nQ 88.6506 48.1088, 88.4321 47.7213\\nQ 88.2208 47.3338, 88.1574 47.214\\nL 88.1574 51.3359\\nL 87.5091 51.3359\\nL 87.5091 46.3474\\nL 88.2983 46.3474\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 87.4492 40.86\\nL 88.1257 40.86\\nL 88.1257 42.9808\\nL 90.6763 42.9808\\nL 90.6763 40.86\\nL 91.3527 40.86\\nL 91.3527 45.8485\\nL 90.6763 45.8485\\nL 90.6763 43.5445\\nL 88.1257 43.5445\\nL 88.1257 45.8485\\nL 87.4492 45.8485\\nL 87.4492 40.86\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 72.7409 59.387\\nQ 72.7973 59.4081, 73.0298 59.5068\\nQ 73.2623 59.6054, 73.516 59.6688\\nQ 73.7767 59.7252, 74.0303 59.7252\\nQ 74.5024 59.7252, 74.7772 59.4997\\nQ 75.052 59.2672, 75.052 58.8656\\nQ 75.052 58.5908, 74.911 58.4217\\nQ 74.7772 58.2526, 74.5658 58.161\\nQ 74.3544 58.0694, 74.0021 57.9637\\nQ 73.5582 57.8299, 73.2905 57.703\\nQ 73.0298 57.5762, 72.8395 57.3085\\nQ 72.6564 57.0407, 72.6564 56.5898\\nQ 72.6564 55.9627, 73.0791 55.5752\\nQ 73.5089 55.1876, 74.3544 55.1876\\nQ 74.9322 55.1876, 75.5875 55.4624\\nL 75.4254 56.005\\nQ 74.8265 55.7584, 74.3756 55.7584\\nQ 73.8894 55.7584, 73.6216 55.9627\\nQ 73.3539 56.16, 73.3609 56.5052\\nQ 73.3609 56.773, 73.4948 56.935\\nQ 73.6357 57.0971, 73.833 57.1887\\nQ 74.0373 57.2803, 74.3756 57.386\\nQ 74.8265 57.5269, 75.0942 57.6678\\nQ 75.362 57.8087, 75.5522 58.0976\\nQ 75.7495 58.3794, 75.7495 58.8656\\nQ 75.7495 59.5561, 75.2845 59.9295\\nQ 74.8265 60.2959, 74.0585 60.2959\\nQ 73.6146 60.2959, 73.2764 60.1973\\nQ 72.9452 60.1057, 72.5507 59.9436\\nL 72.7409 59.387\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 71.8848 71.7808\\nQ 71.8848 70.583, 72.4767 69.9136\\nQ 73.0685 69.2442, 74.1747 69.2442\\nQ 75.281 69.2442, 75.8728 69.9136\\nQ 76.4647 70.583, 76.4647 71.7808\\nQ 76.4647 72.9927, 75.8658 73.6832\\nQ 75.2669 74.3666, 74.1747 74.3666\\nQ 73.0756 74.3666, 72.4767 73.6832\\nQ 71.8848 72.9997, 71.8848 71.7808\\nM 74.1747 73.8029\\nQ 74.9357 73.8029, 75.3444 73.2956\\nQ 75.7601 72.7813, 75.7601 71.7808\\nQ 75.7601 70.8014, 75.3444 70.3082\\nQ 74.9357 69.8079, 74.1747 69.8079\\nQ 73.4138 69.8079, 72.9981 70.3011\\nQ 72.5894 70.7943, 72.5894 71.7808\\nQ 72.5894 72.7883, 72.9981 73.2956\\nQ 73.4138 73.8029, 74.1747 73.8029\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.0754 64.7161\\nQ 84.0754 63.5183, 84.6673 62.8489\\nQ 85.2591 62.1795, 86.3653 62.1795\\nQ 87.4716 62.1795, 88.0634 62.8489\\nQ 88.6553 63.5183, 88.6553 64.7161\\nQ 88.6553 65.928, 88.0564 66.6185\\nQ 87.4575 67.3019, 86.3653 67.3019\\nQ 85.2662 67.3019, 84.6673 66.6185\\nQ 84.0754 65.935, 84.0754 64.7161\\nM 86.3653 66.7382\\nQ 87.1263 66.7382, 87.535 66.2309\\nQ 87.9507 65.7166, 87.9507 64.7161\\nQ 87.9507 63.7367, 87.535 63.2435\\nQ 87.1263 62.7432, 86.3653 62.7432\\nQ 85.6044 62.7432, 85.1887 63.2364\\nQ 84.78 63.7296, 84.78 64.7161\\nQ 84.78 65.7236, 85.1887 66.2309\\nQ 85.6044 66.7382, 86.3653 66.7382\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 7.27273 21.8276\\nL 7.94913 21.8276\\nL 7.94913 23.9484\\nL 10.4998 23.9484\\nL 10.4998 21.8276\\nL 11.1762 21.8276\\nL 11.1762 26.8161\\nL 10.4998 26.8161\\nL 10.4998 24.5121\\nL 7.94913 24.5121\\nL 7.94913 26.8161\\nL 7.27273 26.8161\\nL 7.27273 21.8276\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 11.418 26.6411\\nQ 11.5389 26.3295, 11.8272 26.1574\\nQ 12.1155 25.9807, 12.5154 25.9807\\nQ 13.013 25.9807, 13.2921 26.2505\\nQ 13.5711 26.5202, 13.5711 26.9992\\nQ 13.5711 27.4874, 13.2083 27.9432\\nQ 12.8503 28.3989, 12.1062 28.9383\\nL 13.6269 28.9383\\nL 13.6269 29.3104\\nL 11.4087 29.3104\\nL 11.4087 28.9988\\nQ 12.0225 28.5617, 12.3852 28.2361\\nQ 12.7526 27.9106, 12.9293 27.6176\\nQ 13.106 27.3247, 13.106 27.0224\\nQ 13.106 26.7062, 12.9479 26.5295\\nQ 12.7898 26.3528, 12.5154 26.3528\\nQ 12.2504 26.3528, 12.0737 26.4597\\nQ 11.897 26.5667, 11.7714 26.8038\\nL 11.418 26.6411\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 15.0008 21.8276\\nL 16.6355 24.4698\\nQ 16.7975 24.7305, 17.0582 25.2026\\nQ 17.3189 25.6747, 17.333 25.7028\\nL 17.333 21.8276\\nL 17.9953 21.8276\\nL 17.9953 26.8161\\nL 17.3119 26.8161\\nL 15.5575 23.9273\\nQ 15.3531 23.5891, 15.1347 23.2015\\nQ 14.9233 22.814, 14.8599 22.6942\\nL 14.8599 26.8161\\nL 14.2117 26.8161\\nL 14.2117 21.8276\\nL 15.0008 21.8276\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 103.58 72.7425\\nL 105.214 75.3847\\nQ 105.376 75.6454, 105.637 76.1175\\nQ 105.898 76.5896, 105.912 76.6178\\nL 105.912 72.7425\\nL 106.574 72.7425\\nL 106.574 77.731\\nL 105.891 77.731\\nL 104.136 74.8422\\nQ 103.932 74.504, 103.714 74.1165\\nQ 103.502 73.729, 103.439 73.6092\\nL 103.439 77.731\\nL 102.791 77.731\\nL 102.791 72.7425\\nL 103.58 72.7425\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 118.834 81.5499\\nL 120.469 84.1921\\nQ 120.631 84.4528, 120.891 84.9249\\nQ 121.152 85.397, 121.166 85.4252\\nL 121.166 81.5499\\nL 121.829 81.5499\\nL 121.829 86.5384\\nL 121.145 86.5384\\nL 119.391 83.6496\\nQ 119.186 83.3114, 118.968 82.9239\\nQ 118.757 82.5364, 118.693 82.4166\\nL 118.693 86.5384\\nL 118.045 86.5384\\nL 118.045 81.5499\\nL 118.834 81.5499\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -3.28, "data-ID": 656, "mols2grid-id": 130, "mols2grid-tooltip": "<strong>Name</strong>: sulfamethoxypyridazine<br><strong>SMILES</strong>: COc2ccc(NS(=O)(=O)c1ccc(N)cc1)nn2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.28</span>", "style-Solubility": "color: red"}, {"data-SMILES": "N(C(=S)SSC(N(CC)CC)=S)(CC)CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.703,56.6116 L 112.538,60.7455' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.538,60.7455 L 105.372,64.8794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-0 atom-12' d='M 124.872,56.6116 L 132.037,60.7455' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-0 atom-12' d='M 132.037,60.7455 L 139.203,64.8794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-0 atom-14' d='M 122.294,51.8687 L 122.311,43.7306' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-0 atom-14' d='M 122.311,43.7306 L 122.328,35.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.421,64.8794 L 103.421,71.1133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.421,71.1133 L 103.421,77.3473' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.324,64.8794 L 107.324,71.1133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.324,71.1133 L 107.324,77.3473' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.372,64.8794 L 98.0455,60.6521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 98.0455,60.6521 L 90.7187,56.4248' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.1979,56.4247 L 73.7382,63.613' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.2826,63.5753 L 61.9552,59.348' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.9552,59.348 L 54.6277,55.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.6277,55.1206 L 47.4623,59.2545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.4623,59.2545 L 40.2968,63.3884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 56.5795,55.1206 L 56.5795,48.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 56.5795,48.9608 L 56.5795,42.8011' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 52.676,55.1206 L 52.676,48.9608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 52.676,48.9608 L 52.676,42.8011' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 35.128,63.3884 L 27.9626,59.2545' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 27.9626,59.2545 L 20.7971,55.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 37.7057,68.1313 L 37.6889,76.2694' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 37.6889,76.2694 L 37.6721,84.4075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 20.7971,55.1206 L 7.27273,62.9237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 37.6721,84.4075 L 24.1386,92.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 139.203,64.8794 L 152.727,57.0763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 122.328,35.5925 L 135.861,27.8037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.066 52.3569\\nL 122.877 55.2845\\nQ 123.057 55.5734, 123.345 56.0965\\nQ 123.634 56.6195, 123.65 56.6508\\nL 123.65 52.3569\\nL 124.384 52.3569\\nL 124.384 57.8843\\nL 123.626 57.8843\\nL 121.683 54.6834\\nQ 121.456 54.3087, 121.214 53.8793\\nQ 120.98 53.4499, 120.91 53.3172\\nL 120.91 57.8843\\nL 120.191 57.8843\\nL 120.191 52.3569\\nL 121.066 52.3569\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 103.811 82.3906\\nQ 103.873 82.4141, 104.131 82.5234\\nQ 104.389 82.6327, 104.67 82.7029\\nQ 104.959 82.7654, 105.24 82.7654\\nQ 105.763 82.7654, 106.067 82.5155\\nQ 106.372 82.2579, 106.372 81.8129\\nQ 106.372 81.5084, 106.215 81.3211\\nQ 106.067 81.1337, 105.833 81.0322\\nQ 105.599 80.9307, 105.208 80.8136\\nQ 104.716 80.6653, 104.42 80.5247\\nQ 104.131 80.3842, 103.92 80.0876\\nQ 103.717 79.7909, 103.717 79.2912\\nQ 103.717 78.5964, 104.186 78.167\\nQ 104.662 77.7376, 105.599 77.7376\\nQ 106.239 77.7376, 106.965 78.0421\\nL 106.785 78.6432\\nQ 106.122 78.37, 105.622 78.37\\nQ 105.083 78.37, 104.787 78.5964\\nQ 104.49 78.815, 104.498 79.1975\\nQ 104.498 79.4942, 104.646 79.6738\\nQ 104.802 79.8533, 105.021 79.9548\\nQ 105.247 80.0563, 105.622 80.1734\\nQ 106.122 80.3296, 106.418 80.4857\\nQ 106.715 80.6419, 106.926 80.9619\\nQ 107.144 81.2742, 107.144 81.8129\\nQ 107.144 82.578, 106.629 82.9918\\nQ 106.122 83.3977, 105.271 83.3977\\nQ 104.779 83.3977, 104.404 83.2884\\nQ 104.037 83.187, 103.6 83.0074\\nL 103.811 82.3906\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 86.8969 57.0177\\nQ 86.9593 57.0411, 87.217 57.1504\\nQ 87.4746 57.2597, 87.7557 57.33\\nQ 88.0445 57.3924, 88.3256 57.3924\\nQ 88.8486 57.3924, 89.1531 57.1426\\nQ 89.4576 56.885, 89.4576 56.44\\nQ 89.4576 56.1355, 89.3015 55.9481\\nQ 89.1531 55.7608, 88.9189 55.6593\\nQ 88.6847 55.5578, 88.2943 55.4407\\nQ 87.8025 55.2923, 87.5058 55.1518\\nQ 87.217 55.0113, 87.0062 54.7146\\nQ 86.8032 54.418, 86.8032 53.9183\\nQ 86.8032 53.2235, 87.2716 52.7941\\nQ 87.7479 52.3647, 88.6847 52.3647\\nQ 89.3249 52.3647, 90.0509 52.6692\\nL 89.8714 53.2703\\nQ 89.2078 52.9971, 88.7081 52.9971\\nQ 88.1694 52.9971, 87.8728 53.2235\\nQ 87.5761 53.4421, 87.5839 53.8246\\nQ 87.5839 54.1213, 87.7322 54.3008\\nQ 87.8884 54.4804, 88.107 54.5819\\nQ 88.3334 54.6834, 88.7081 54.8005\\nQ 89.2078 54.9566, 89.5044 55.1128\\nQ 89.8011 55.2689, 90.0119 55.589\\nQ 90.2305 55.9013, 90.2305 56.44\\nQ 90.2305 57.2051, 89.7152 57.6188\\nQ 89.2078 58.0248, 88.3568 58.0248\\nQ 87.865 58.0248, 87.4902 57.9155\\nQ 87.1233 57.814, 86.6861 57.6345\\nL 86.8969 57.0177\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 69.9816 66.7765\\nQ 70.0441 66.7999, 70.3017 66.9092\\nQ 70.5593 67.0185, 70.8404 67.0888\\nQ 71.1292 67.1513, 71.4103 67.1513\\nQ 71.9334 67.1513, 72.2378 66.9014\\nQ 72.5423 66.6438, 72.5423 66.1988\\nQ 72.5423 65.8943, 72.3862 65.707\\nQ 72.2378 65.5196, 72.0036 65.4181\\nQ 71.7694 65.3166, 71.3791 65.1995\\nQ 70.8872 65.0512, 70.5905 64.9106\\nQ 70.3017 64.7701, 70.0909 64.4734\\nQ 69.8879 64.1768, 69.8879 63.6771\\nQ 69.8879 62.9823, 70.3563 62.5529\\nQ 70.8326 62.1235, 71.7694 62.1235\\nQ 72.4096 62.1235, 73.1356 62.428\\nL 72.9561 63.0291\\nQ 72.2925 62.7559, 71.7928 62.7559\\nQ 71.2541 62.7559, 70.9575 62.9823\\nQ 70.6608 63.2009, 70.6686 63.5834\\nQ 70.6686 63.8801, 70.817 64.0597\\nQ 70.9731 64.2392, 71.1917 64.3407\\nQ 71.4181 64.4422, 71.7928 64.5593\\nQ 72.2925 64.7155, 72.5892 64.8716\\nQ 72.8858 65.0277, 73.0966 65.3478\\nQ 73.3152 65.6601, 73.3152 66.1988\\nQ 73.3152 66.9639, 72.7999 67.3777\\nQ 72.2925 67.7836, 71.4415 67.7836\\nQ 70.9497 67.7836, 70.5749 67.6743\\nQ 70.208 67.5728, 69.7708 67.3933\\nL 69.9816 66.7765\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 36.4906 62.1157\\nL 38.3019 65.0434\\nQ 38.4814 65.3322, 38.7703 65.8553\\nQ 39.0592 66.3784, 39.0748 66.4096\\nL 39.0748 62.1157\\nL 39.8086 62.1157\\nL 39.8086 67.6431\\nL 39.0513 67.6431\\nL 37.1074 64.4422\\nQ 36.881 64.0675, 36.639 63.6381\\nQ 36.4048 63.2087, 36.3345 63.076\\nL 36.3345 67.6431\\nL 35.6162 67.6431\\nL 35.6162 62.1157\\nL 36.4906 62.1157\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 53.0663 41.4036\\nQ 53.1288 41.427, 53.3864 41.5363\\nQ 53.644 41.6456, 53.9251 41.7159\\nQ 54.2139 41.7783, 54.495 41.7783\\nQ 55.0181 41.7783, 55.3225 41.5285\\nQ 55.627 41.2709, 55.627 40.8259\\nQ 55.627 40.5214, 55.4709 40.334\\nQ 55.3225 40.1467, 55.0883 40.0452\\nQ 54.8541 39.9437, 54.4638 39.8266\\nQ 53.9719 39.6782, 53.6753 39.5377\\nQ 53.3864 39.3972, 53.1756 39.1005\\nQ 52.9726 38.8038, 52.9726 38.3042\\nQ 52.9726 37.6094, 53.441 37.18\\nQ 53.9173 36.7506, 54.8541 36.7506\\nQ 55.4943 36.7506, 56.2204 37.0551\\nL 56.0408 37.6562\\nQ 55.3772 37.383, 54.8775 37.383\\nQ 54.3389 37.383, 54.0422 37.6094\\nQ 53.7455 37.828, 53.7533 38.2105\\nQ 53.7533 38.5072, 53.9017 38.6867\\nQ 54.0578 38.8663, 54.2764 38.9678\\nQ 54.5028 39.0693, 54.8775 39.1864\\nQ 55.3772 39.3425, 55.6739 39.4987\\nQ 55.9705 39.6548, 56.1813 39.9749\\nQ 56.3999 40.2872, 56.3999 40.8259\\nQ 56.3999 41.591, 55.8847 42.0047\\nQ 55.3772 42.4107, 54.5262 42.4107\\nQ 54.0344 42.4107, 53.6596 42.3014\\nQ 53.2927 42.1999, 52.8555 42.0204\\nL 53.0663 41.4036\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -4.86, "data-ID": 662, "mols2grid-id": 131, "mols2grid-tooltip": "<strong>Name</strong>: disulfiram<br><strong>SMILES</strong>: N(C(=S)SSC(N(CC)CC)=S)(CC)CC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.86</span>", "style-Solubility": "color: red"}, {"data-SMILES": "COC1=CC(=O)CC(C)C13Oc2c(Cl)c(OC)cc(OC)c2C3=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.4065,105.828 L 89.4288,99.8949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 89.4288,99.8949 L 88.4511,93.9616' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 90.8826,88.3337 L 96.7821,83.4902' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7821,83.4902 L 102.682,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.009,80.4328 L 121.041,83.5257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.355,76.8607 L 119.695,87.0977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-2' d='M 99.8619,59.423 L 102.682,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.368,85.3117 L 136.004,73.5201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.316,75.3004 L 141.005,77.4999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 141.005,77.4999 L 146.695,79.6994' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 136.692,71.7399 L 142.382,73.9394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 142.382,73.9394 L 148.071,76.1389' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 136.004,73.5201 L 132.414,54.5521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 132.414,54.5521 L 114.729,47.6314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 114.729,47.6314 L 112.465,32.5316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 114.729,47.6314 L 99.8619,59.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 99.8619,59.423 L 95.3995,65.5079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 95.3995,65.5079 L 90.9372,71.5928' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-9' d='M 88.5831,44.556 L 99.8619,59.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6358,73.8202 L 78.2661,71.3632' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.2661,71.3632 L 70.8964,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.8964,68.9063 L 53.7225,78.6467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 66.4372,67.047 L 54.4154,73.8653' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-11' d='M 70.8964,50.1953 L 70.8964,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.7225,78.6467 L 53.6825,84.8059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.6825,84.8059 L 53.6425,90.9651' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 53.7225,78.6467 L 37.0614,68.9063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 37.0614,68.9063 L 30.2089,72.7433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 30.2089,72.7433 L 23.3565,76.5803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-17' d='M 37.0614,68.9063 L 37.0614,50.1953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-14 atom-17' d='M 40.8787,66.0997 L 40.8787,53.002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 17.5348,76.5351 L 12.4038,73.4848' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 12.4038,73.4848 L 7.27273,70.4345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 37.0614,50.1953 L 53.7225,40.7107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 53.7225,40.7107 L 53.6046,32.8104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 53.6046,32.8104 L 53.4867,24.91' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 53.7225,40.7107 L 70.8964,50.1953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 54.4532,45.4749 L 66.4749,52.1142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 50.5746,20.017 L 45.3398,17.0944' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 45.3398,17.0944 L 40.1051,14.1718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 70.8964,50.1953 L 88.5831,44.556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 90.4027,45.1321 L 92.2007,39.4532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 92.2007,39.4532 L 93.9987,33.7744' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 86.7635,43.9799 L 88.5615,38.301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 88.5615,38.301 L 90.3595,32.6222' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 85.4428 90.778\\nQ 85.4428 89.4801, 86.0841 88.7549\\nQ 86.7254 88.0296, 87.924 88.0296\\nQ 89.1226 88.0296, 89.7639 88.7549\\nQ 90.4052 89.4801, 90.4052 90.778\\nQ 90.4052 92.0912, 89.7563 92.8393\\nQ 89.1074 93.5799, 87.924 93.5799\\nQ 86.733 93.5799, 86.0841 92.8393\\nQ 85.4428 92.0988, 85.4428 90.778\\nM 87.924 92.9691\\nQ 88.7485 92.9691, 89.1914 92.4194\\nQ 89.6418 91.8621, 89.6418 90.778\\nQ 89.6418 89.7168, 89.1914 89.1824\\nQ 88.7485 88.6403, 87.924 88.6403\\nQ 87.0995 88.6403, 86.649 89.1748\\nQ 86.2062 89.7092, 86.2062 90.778\\nQ 86.2062 91.8698, 86.649 92.4194\\nQ 87.0995 92.9691, 87.924 92.9691\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 147.765 79.0412\\nQ 147.765 77.7433, 148.406 77.018\\nQ 149.047 76.2927, 150.246 76.2927\\nQ 151.445 76.2927, 152.086 77.018\\nQ 152.727 77.7433, 152.727 79.0412\\nQ 152.727 80.3543, 152.078 81.1025\\nQ 151.429 81.8431, 150.246 81.8431\\nQ 149.055 81.8431, 148.406 81.1025\\nQ 147.765 80.362, 147.765 79.0412\\nM 150.246 81.2323\\nQ 151.071 81.2323, 151.513 80.6826\\nQ 151.964 80.1253, 151.964 79.0412\\nQ 151.964 77.98, 151.513 77.4456\\nQ 151.071 76.9035, 150.246 76.9035\\nQ 149.422 76.9035, 148.971 77.4379\\nQ 148.528 77.9723, 148.528 79.0412\\nQ 148.528 80.1329, 148.971 80.6826\\nQ 149.422 81.2323, 150.246 81.2323\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 86.1019 74.818\\nQ 86.1019 73.5201, 86.7432 72.7949\\nQ 87.3845 72.0696, 88.5831 72.0696\\nQ 89.7818 72.0696, 90.4231 72.7949\\nQ 91.0644 73.5201, 91.0644 74.818\\nQ 91.0644 76.1311, 90.4154 76.8793\\nQ 89.7665 77.6199, 88.5831 77.6199\\nQ 87.3921 77.6199, 86.7432 76.8793\\nQ 86.1019 76.1388, 86.1019 74.818\\nM 88.5831 77.0091\\nQ 89.4077 77.0091, 89.8505 76.4594\\nQ 90.3009 75.9021, 90.3009 74.818\\nQ 90.3009 73.7568, 89.8505 73.2224\\nQ 89.4077 72.6803, 88.5831 72.6803\\nQ 87.7586 72.6803, 87.3082 73.2148\\nQ 86.8654 73.7492, 86.8654 74.818\\nQ 86.8654 75.9097, 87.3082 76.4594\\nQ 87.7586 77.0091, 88.5831 77.0091\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 51.5391 94.1029\\nQ 51.5391 92.7592, 52.1651 92.0568\\nQ 52.7988 91.3468, 53.9974 91.3468\\nQ 55.112 91.3468, 55.7075 92.1331\\nL 55.2036 92.5454\\nQ 54.7685 91.9728, 53.9974 91.9728\\nQ 53.1805 91.9728, 52.7453 92.5225\\nQ 52.3178 93.0646, 52.3178 94.1029\\nQ 52.3178 95.1717, 52.7606 95.7214\\nQ 53.211 96.2711, 54.0814 96.2711\\nQ 54.6769 96.2711, 55.3716 95.9122\\nL 55.5854 96.4848\\nQ 55.3029 96.6681, 54.8754 96.7749\\nQ 54.4478 96.8818, 53.9745 96.8818\\nQ 52.7988 96.8818, 52.1651 96.1642\\nQ 51.5391 95.4465, 51.5391 94.1029\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 56.3641 91.0185\\nL 57.0665 91.0185\\nL 57.0665 96.8131\\nL 56.3641 96.8131\\nL 56.3641 91.0185\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 17.9165 78.2523\\nQ 17.9165 76.9544, 18.5579 76.2291\\nQ 19.1992 75.5038, 20.3978 75.5038\\nQ 21.5964 75.5038, 22.2377 76.2291\\nQ 22.879 76.9544, 22.879 78.2523\\nQ 22.879 79.5654, 22.2301 80.3136\\nQ 21.5811 81.0542, 20.3978 81.0542\\nQ 19.2068 81.0542, 18.5579 80.3136\\nQ 17.9165 79.5731, 17.9165 78.2523\\nM 20.3978 80.4434\\nQ 21.2223 80.4434, 21.6651 79.8937\\nQ 22.1155 79.3364, 22.1155 78.2523\\nQ 22.1155 77.1911, 21.6651 76.6567\\nQ 21.2223 76.1146, 20.3978 76.1146\\nQ 19.5732 76.1146, 19.1228 76.649\\nQ 18.68 77.1834, 18.68 78.2523\\nQ 18.68 79.344, 19.1228 79.8937\\nQ 19.5732 80.4434, 20.3978 80.4434\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 50.9563 21.6307\\nQ 50.9563 20.3328, 51.5976 19.6076\\nQ 52.2389 18.8823, 53.4375 18.8823\\nQ 54.6361 18.8823, 55.2774 19.6076\\nQ 55.9187 20.3328, 55.9187 21.6307\\nQ 55.9187 22.9438, 55.2698 23.692\\nQ 54.6209 24.4326, 53.4375 24.4326\\nQ 52.2465 24.4326, 51.5976 23.692\\nQ 50.9563 22.9515, 50.9563 21.6307\\nM 53.4375 23.8218\\nQ 54.2621 23.8218, 54.7049 23.2721\\nQ 55.1553 22.7148, 55.1553 21.6307\\nQ 55.1553 20.5695, 54.7049 20.0351\\nQ 54.2621 19.493, 53.4375 19.493\\nQ 52.613 19.493, 52.1626 20.0275\\nQ 51.7198 20.5619, 51.7198 21.6307\\nQ 51.7198 22.7224, 52.1626 23.2721\\nQ 52.613 23.8218, 53.4375 23.8218\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 90.7106 30.0147\\nQ 90.7106 28.7168, 91.3519 27.9916\\nQ 91.9932 27.2663, 93.1919 27.2663\\nQ 94.3905 27.2663, 95.0318 27.9916\\nQ 95.6731 28.7168, 95.6731 30.0147\\nQ 95.6731 31.3278, 95.0241 32.076\\nQ 94.3752 32.8166, 93.1919 32.8166\\nQ 92.0009 32.8166, 91.3519 32.076\\nQ 90.7106 31.3355, 90.7106 30.0147\\nM 93.1919 32.2058\\nQ 94.0164 32.2058, 94.4592 31.6561\\nQ 94.9096 31.0988, 94.9096 30.0147\\nQ 94.9096 28.9535, 94.4592 28.4191\\nQ 94.0164 27.877, 93.1919 27.877\\nQ 92.3673 27.877, 91.9169 28.4115\\nQ 91.4741 28.9459, 91.4741 30.0147\\nQ 91.4741 31.1064, 91.9169 31.6561\\nQ 92.3673 32.2058, 93.1919 32.2058\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.61, "data-ID": 667, "mols2grid-id": 132, "mols2grid-tooltip": "<strong>Name</strong>: griseofulvin<br><strong>SMILES</strong>: COC1=CC(=O)CC(C)C13Oc2c(Cl)c(OC)cc(OC)c2C3=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.61</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(N)ccc1S(=O)(=O)Nc2nnc(C)s2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 98.968,40.4416 L 98.968,26.112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.1021,38.2922 L 96.1021,28.2615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 86.5586,47.6064 L 98.968,40.4416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.968,26.112 L 86.5586,18.9473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.5586,18.9473 L 86.5586,14.4207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.5586,14.4207 L 86.5586,9.8942' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.5586,18.9473 L 74.1492,26.112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.1302,22.5039 L 77.4436,27.5193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.1492,26.112 L 74.1492,40.4416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.1492,40.4416 L 86.5586,47.6064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.4436,39.0344 L 86.1302,44.0497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.5586,47.6064 L 86.5586,53.5368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.5586,53.5368 L 86.5586,59.4671' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.4911,64.1359 L 90.537,65.8933' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 90.537,65.8933 L 93.5829,67.6507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.9233,61.6536 L 91.9693,63.411' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 91.9693,63.411 L 95.0152,65.1684' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 85.1269,64.4629 L 85.1286,67.7496' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 85.1286,67.7496 L 85.1302,71.0363' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.9929,64.4614 L 87.9945,67.7482' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.9945,67.7482 L 87.9961,71.0349' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 84.8382,62.9384 L 80.4522,65.4745' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 80.4522,65.4745 L 76.0661,68.0107' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 74.1464,71.6032 L 74.1464,77.5306' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 74.1464,77.5306 L 74.1464,83.458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 74.1464,83.458 L 69.3418,86.8771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 69.3418,86.8771 L 64.5371,90.2963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 74.3667,86.8187 L 71.0035,89.2121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 71.0035,89.2121 L 67.6402,91.6056' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 84.039,90.4364 L 79.0927,86.9472' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 79.0927,86.9472 L 74.1464,83.458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 63.3832,94.1778 L 66.2366,102.897' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 68.9967,105.31 L 75.1769,105.298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 75.1769,105.298 L 81.357,105.286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 70.845,102.441 L 75.1711,102.432' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 75.1711,102.432 L 79.4972,102.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.357,105.286 L 88.1139,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 81.357,105.286 L 83.1388,99.7619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 83.1388,99.7619 L 84.9206,94.238' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.6196 5.35961\\nL 87.0116 7.60961\\nQ 87.1496 7.83161, 87.3716 8.23361\\nQ 87.5936 8.63561, 87.6056 8.65961\\nL 87.6056 5.35961\\nL 88.1696 5.35961\\nL 88.1696 9.60761\\nL 87.5876 9.60761\\nL 86.0936 7.14761\\nQ 85.9196 6.85961, 85.7336 6.52961\\nQ 85.5536 6.19961, 85.4996 6.09761\\nL 85.4996 9.60761\\nL 84.9476 9.60761\\nL 84.9476 5.35961\\nL 85.6196 5.35961\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.6796 5.35961\\nL 89.2556 5.35961\\nL 89.2556 7.16561\\nL 91.4276 7.16561\\nL 91.4276 5.35961\\nL 92.0036 5.35961\\nL 92.0036 9.60761\\nL 91.4276 9.60761\\nL 91.4276 7.64561\\nL 89.2556 7.64561\\nL 89.2556 9.60761\\nL 88.6796 9.60761\\nL 88.6796 5.35961\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 92.2096 9.45857\\nQ 92.3125 9.19325, 92.558 9.04673\\nQ 92.8036 8.89625, 93.1441 8.89625\\nQ 93.5678 8.89625, 93.8054 9.12593\\nQ 94.043 9.35561, 94.043 9.76349\\nQ 94.043 10.1793, 93.7342 10.5674\\nQ 93.4292 10.9555, 92.7956 11.4148\\nL 94.0906 11.4148\\nL 94.0906 11.7316\\nL 92.2016 11.7316\\nL 92.2016 11.4663\\nQ 92.7244 11.0941, 93.0332 10.8169\\nQ 93.3461 10.5397, 93.4966 10.2902\\nQ 93.647 10.0407, 93.647 9.78329\\nQ 93.647 9.51401, 93.5124 9.36353\\nQ 93.3778 9.21305, 93.1441 9.21305\\nQ 92.9184 9.21305, 92.7679 9.30413\\nQ 92.6174 9.39521, 92.5105 9.59717\\nL 92.2096 9.45857\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 85.3586 63.4016\\nQ 85.4066 63.4196, 85.6046 63.5036\\nQ 85.8026 63.5876, 86.0186 63.6416\\nQ 86.2406 63.6896, 86.4566 63.6896\\nQ 86.8586 63.6896, 87.0926 63.4976\\nQ 87.3266 63.2996, 87.3266 62.9576\\nQ 87.3266 62.7236, 87.2066 62.5796\\nQ 87.0926 62.4356, 86.9126 62.3576\\nQ 86.7326 62.2796, 86.4326 62.1896\\nQ 86.0546 62.0756, 85.8266 61.9676\\nQ 85.6046 61.8596, 85.4426 61.6316\\nQ 85.2866 61.4036, 85.2866 61.0196\\nQ 85.2866 60.4856, 85.6466 60.1556\\nQ 86.0126 59.8256, 86.7326 59.8256\\nQ 87.2246 59.8256, 87.7826 60.0596\\nL 87.6446 60.5216\\nQ 87.1346 60.3116, 86.7506 60.3116\\nQ 86.3366 60.3116, 86.1086 60.4856\\nQ 85.8806 60.6536, 85.8866 60.9476\\nQ 85.8866 61.1756, 86.0006 61.3136\\nQ 86.1206 61.4516, 86.2886 61.5296\\nQ 86.4626 61.6076, 86.7506 61.6976\\nQ 87.1346 61.8176, 87.3626 61.9376\\nQ 87.5906 62.0576, 87.7526 62.3036\\nQ 87.9206 62.5436, 87.9206 62.9576\\nQ 87.9206 63.5456, 87.5246 63.8636\\nQ 87.1346 64.1756, 86.4806 64.1756\\nQ 86.1026 64.1756, 85.8146 64.0916\\nQ 85.5326 64.0136, 85.1966 63.8756\\nL 85.3586 63.4016\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 94.5381 67.6845\\nQ 94.5381 66.6645, 95.0421 66.0945\\nQ 95.5461 65.5245, 96.4881 65.5245\\nQ 97.4301 65.5245, 97.9341 66.0945\\nQ 98.4381 66.6645, 98.4381 67.6845\\nQ 98.4381 68.7165, 97.9281 69.3045\\nQ 97.4181 69.8865, 96.4881 69.8865\\nQ 95.5521 69.8865, 95.0421 69.3045\\nQ 94.5381 68.7225, 94.5381 67.6845\\nM 96.4881 69.4065\\nQ 97.1361 69.4065, 97.4841 68.9745\\nQ 97.8381 68.5365, 97.8381 67.6845\\nQ 97.8381 66.8505, 97.4841 66.4305\\nQ 97.1361 66.0045, 96.4881 66.0045\\nQ 95.8401 66.0045, 95.4861 66.4245\\nQ 95.1381 66.8445, 95.1381 67.6845\\nQ 95.1381 68.5425, 95.4861 68.9745\\nQ 95.8401 69.4065, 96.4881 69.4065\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.6144 73.4192\\nQ 84.6144 72.3992, 85.1184 71.8292\\nQ 85.6224 71.2592, 86.5644 71.2592\\nQ 87.5064 71.2592, 88.0104 71.8292\\nQ 88.5144 72.3992, 88.5144 73.4192\\nQ 88.5144 74.4512, 88.0044 75.0392\\nQ 87.4944 75.6212, 86.5644 75.6212\\nQ 85.6284 75.6212, 85.1184 75.0392\\nQ 84.6144 74.4572, 84.6144 73.4192\\nM 86.5644 75.1412\\nQ 87.2124 75.1412, 87.5604 74.7092\\nQ 87.9144 74.2712, 87.9144 73.4192\\nQ 87.9144 72.5852, 87.5604 72.1652\\nQ 87.2124 71.7392, 86.5644 71.7392\\nQ 85.9164 71.7392, 85.5624 72.1592\\nQ 85.2144 72.5792, 85.2144 73.4192\\nQ 85.2144 74.2772, 85.5624 74.7092\\nQ 85.9164 75.1412, 86.5644 75.1412\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.7134 66.9968\\nL 69.2894 66.9968\\nL 69.2894 68.8028\\nL 71.4614 68.8028\\nL 71.4614 66.9968\\nL 72.0374 66.9968\\nL 72.0374 71.2448\\nL 71.4614 71.2448\\nL 71.4614 69.2828\\nL 69.2894 69.2828\\nL 69.2894 71.2448\\nL 68.7134 71.2448\\nL 68.7134 66.9968\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 73.2074 66.9968\\nL 74.5994 69.2468\\nQ 74.7374 69.4688, 74.9594 69.8708\\nQ 75.1814 70.2728, 75.1934 70.2968\\nL 75.1934 66.9968\\nL 75.7574 66.9968\\nL 75.7574 71.2448\\nL 75.1754 71.2448\\nL 73.6814 68.7848\\nQ 73.5074 68.4968, 73.3214 68.1668\\nQ 73.1414 67.8368, 73.0874 67.7348\\nL 73.0874 71.2448\\nL 72.5354 71.2448\\nL 72.5354 66.9968\\nL 73.2074 66.9968\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 61.632 89.5715\\nL 63.024 91.8215\\nQ 63.162 92.0435, 63.384 92.4455\\nQ 63.606 92.8475, 63.618 92.8715\\nL 63.618 89.5715\\nL 64.182 89.5715\\nL 64.182 93.8195\\nL 63.6 93.8195\\nL 62.106 91.3595\\nQ 61.932 91.0715, 61.746 90.7415\\nQ 61.566 90.4115, 61.512 90.3095\\nL 61.512 93.8195\\nL 60.96 93.8195\\nL 60.96 89.5715\\nL 61.632 89.5715\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.0885 103.19\\nL 67.4805 105.44\\nQ 67.6185 105.662, 67.8405 106.064\\nQ 68.0625 106.466, 68.0745 106.49\\nL 68.0745 103.19\\nL 68.6385 103.19\\nL 68.6385 107.438\\nL 68.0565 107.438\\nL 66.5625 104.978\\nQ 66.3885 104.69, 66.2025 104.36\\nQ 66.0225 104.03, 65.9685 103.928\\nL 65.9685 107.438\\nL 65.4165 107.438\\nL 65.4165 103.19\\nL 66.0885 103.19\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 84.5562 93.1058\\nQ 84.6042 93.1238, 84.8022 93.2078\\nQ 85.0002 93.2918, 85.2162 93.3458\\nQ 85.4382 93.3938, 85.6542 93.3938\\nQ 86.0562 93.3938, 86.2902 93.2018\\nQ 86.5242 93.0038, 86.5242 92.6618\\nQ 86.5242 92.4278, 86.4042 92.2838\\nQ 86.2902 92.1398, 86.1102 92.0618\\nQ 85.9302 91.9838, 85.6302 91.8938\\nQ 85.2522 91.7798, 85.0242 91.6718\\nQ 84.8022 91.5638, 84.6402 91.3358\\nQ 84.4842 91.1078, 84.4842 90.7238\\nQ 84.4842 90.1898, 84.8442 89.8598\\nQ 85.2102 89.5298, 85.9302 89.5298\\nQ 86.4222 89.5298, 86.9802 89.7638\\nL 86.8422 90.2258\\nQ 86.3322 90.0158, 85.9482 90.0158\\nQ 85.5342 90.0158, 85.3062 90.1898\\nQ 85.0782 90.3578, 85.0842 90.6518\\nQ 85.0842 90.8798, 85.1982 91.0178\\nQ 85.3182 91.1558, 85.4862 91.2338\\nQ 85.6602 91.3118, 85.9482 91.4018\\nQ 86.3322 91.5218, 86.5602 91.6418\\nQ 86.7882 91.7618, 86.9502 92.0078\\nQ 87.1182 92.2478, 87.1182 92.6618\\nQ 87.1182 93.2498, 86.7222 93.5678\\nQ 86.3322 93.8798, 85.6782 93.8798\\nQ 85.3002 93.8798, 85.0122 93.7958\\nQ 84.7302 93.7178, 84.3942 93.5798\\nL 84.5562 93.1058\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -2.41, "data-ID": 672, "mols2grid-id": 133, "mols2grid-tooltip": "<strong>Name</strong>: sulfamethiazole<br><strong>SMILES</strong>: c1cc(N)ccc1S(=O)(=O)Nc2nnc(C)s2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.41</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(N(c(c(C1(C(N(C2)CC(C3C4C5OC6)=C6)C3)C2)cc(OC)c7OC)c7)C14)C5", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 89.1353,105.341 L 92.1909,100.151' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 92.1909,100.151 L 95.2465,94.9607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 85.7354,103.339 L 88.7909,98.1493' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 88.7909,98.1493 L 91.8465,92.9591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.5465,93.9599 L 90.0488,87.1765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 90.0488,87.1765 L 86.5511,80.3931' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-1 atom-28' d='M 93.5465,93.9599 L 112.09,94.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 82.2186,76.3181 L 73.4161,73.6316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 73.4161,73.6316 L 64.6137,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-2 atom-27' d='M 86.6407,73.8651 L 90.2251,67.2761' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-2 atom-27' d='M 90.2251,67.2761 L 93.8095,60.6872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.6137,70.9452 L 64.6137,50.1661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.6683,67.8283 L 60.6683,53.283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-3 atom-26' d='M 64.6137,70.9452 L 45.8073,81.8607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 64.6137,50.1661 L 85.5242,45.9577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-4 atom-19' d='M 64.6137,50.1661 L 45.8073,38.9875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 85.5242,45.9577 L 94.9931,29.1241' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-5 atom-18' d='M 85.5242,45.9577 L 67.3754,41.2233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-5' d='M 93.8095,60.6872 L 85.5242,45.9577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.9931,29.1241 L 90.2386,23.4393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.2386,23.4393 L 85.4841,17.7546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-6 atom-17' d='M 94.9931,29.1241 L 113.405,29.6501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 80.3094,15.723 L 72.9876,18.7412' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.9876,18.7412 L 65.6658,21.7593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 86.0105,14.2538 L 104.245,11.8912' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 104.245,11.8912 L 122.479,9.52865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-8' d='M 67.3754,41.2233 L 65.6658,21.7593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 122.479,9.52865 L 139.839,43.985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 139.839,43.985 L 122.874,46.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-16' d='M 138.62,45.5362 L 153.946,52.5603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-16' d='M 141.058,42.4339 L 151.509,55.6627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.874,46.3523 L 112.879,61.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-11' d='M 113.405,29.6501 L 122.874,46.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 112.879,61.7393 L 121.69,77.5208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-27 atom-12' d='M 93.8095,60.6872 L 112.879,61.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 121.69,77.5208 L 128.866,79.0972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 128.866,79.0972 L 136.041,80.6736' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-28 atom-13' d='M 112.09,94.6175 L 121.69,77.5208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 142.047,78.9484 L 147.322,74.7495' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 147.322,74.7495 L 152.596,70.5506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-15' d='M 152.727,54.1115 L 152.596,70.5506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 45.8073,38.9875 L 26.8695,50.1661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 44.9722,44.0619 L 31.7157,51.887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 26.8695,50.1661 L 19.9381,45.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 19.9381,45.9665 L 13.0068,41.7669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-20 atom-23' d='M 26.8695,50.1661 L 26.8695,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 10.0121,36.694 L 10.1377,30.4149' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-22' d='M 10.1377,30.4149 L 10.2633,24.1358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.8695,70.9452 L 19.8827,75.0646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 19.8827,75.0646 L 12.896,79.184' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-23' d='M 45.8073,81.8607 L 26.8695,70.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-23' d='M 44.9369,76.8052 L 31.6804,69.1643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 9.8645,84.2937 L 9.91597,90.5314' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 9.91597,90.5314 L 9.96743,96.769' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 82.9755 107.575\\nQ 82.9755 106.234, 83.6383 105.484\\nQ 84.3011 104.735, 85.54 104.735\\nQ 86.7788 104.735, 87.4417 105.484\\nQ 88.1045 106.234, 88.1045 107.575\\nQ 88.1045 108.933, 87.4338 109.706\\nQ 86.763 110.471, 85.54 110.471\\nQ 84.309 110.471, 83.6383 109.706\\nQ 82.9755 108.941, 82.9755 107.575\\nM 85.54 109.84\\nQ 86.3922 109.84, 86.8498 109.272\\nQ 87.3154 108.696, 87.3154 107.575\\nQ 87.3154 106.479, 86.8498 105.926\\nQ 86.3922 105.366, 85.54 105.366\\nQ 84.6878 105.366, 84.2222 105.918\\nQ 83.7646 106.471, 83.7646 107.575\\nQ 83.7646 108.704, 84.2222 109.272\\nQ 84.6878 109.84, 85.54 109.84\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 83.6317 74.3329\\nL 85.4624 77.292\\nQ 85.6439 77.5839, 85.9358 78.1126\\nQ 86.2278 78.6413, 86.2436 78.6729\\nL 86.2436 74.3329\\nL 86.9853 74.3329\\nL 86.9853 79.9196\\nL 86.2199 79.9196\\nL 84.2551 76.6844\\nQ 84.0263 76.3056, 83.7817 75.8716\\nQ 83.5449 75.4376, 83.4739 75.3035\\nL 83.4739 79.9196\\nL 82.748 79.9196\\nL 82.748 74.3329\\nL 83.6317 74.3329\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 81.659 11.8643\\nL 83.4897 14.8234\\nQ 83.6712 15.1153, 83.9631 15.644\\nQ 84.2551 16.1727, 84.2709 16.2042\\nL 84.2709 11.8643\\nL 85.0126 11.8643\\nL 85.0126 17.451\\nL 84.2472 17.451\\nL 82.2824 14.2158\\nQ 82.0536 13.837, 81.809 13.403\\nQ 81.5722 12.969, 81.5012 12.8349\\nL 81.5012 17.451\\nL 80.7753 17.451\\nL 80.7753 11.8643\\nL 81.659 11.8643\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 136.485 81.3505\\nQ 136.485 80.009, 137.148 79.2594\\nQ 137.811 78.5098, 139.05 78.5098\\nQ 140.289 78.5098, 140.952 79.2594\\nQ 141.614 80.009, 141.614 81.3505\\nQ 141.614 82.7077, 140.944 83.481\\nQ 140.273 84.2464, 139.05 84.2464\\nQ 137.819 84.2464, 137.148 83.481\\nQ 136.485 82.7156, 136.485 81.3505\\nM 139.05 83.6151\\nQ 139.902 83.6151, 140.36 83.047\\nQ 140.825 82.4709, 140.825 81.3505\\nQ 140.825 80.2536, 140.36 79.7013\\nQ 139.902 79.141, 139.05 79.141\\nQ 138.198 79.141, 137.732 79.6934\\nQ 137.275 80.2457, 137.275 81.3505\\nQ 137.275 82.4788, 137.732 83.047\\nQ 138.198 83.6151, 139.05 83.6151\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 7.3832 39.9292\\nQ 7.3832 38.5877, 8.04602 37.8381\\nQ 8.70885 37.0885, 9.9477 37.0885\\nQ 11.1866 37.0885, 11.8494 37.8381\\nQ 12.5122 38.5877, 12.5122 39.9292\\nQ 12.5122 41.2864, 11.8415 42.0597\\nQ 11.1708 42.8251, 9.9477 42.8251\\nQ 8.71674 42.8251, 8.04602 42.0597\\nQ 7.3832 41.2943, 7.3832 39.9292\\nM 9.9477 42.1938\\nQ 10.7999 42.1938, 11.2576 41.6257\\nQ 11.7231 41.0497, 11.7231 39.9292\\nQ 11.7231 38.8323, 11.2576 38.28\\nQ 10.7999 37.7197, 9.9477 37.7197\\nQ 9.0955 37.7197, 8.62994 38.2721\\nQ 8.17228 38.8245, 8.17228 39.9292\\nQ 8.17228 41.0575, 8.62994 41.6257\\nQ 9.0955 42.1938, 9.9477 42.1938\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 7.27273 81.0033\\nQ 7.27273 79.6618, 7.93555 78.9122\\nQ 8.59838 78.1626, 9.83723 78.1626\\nQ 11.0761 78.1626, 11.7389 78.9122\\nQ 12.4017 79.6618, 12.4017 81.0033\\nQ 12.4017 82.3605, 11.731 83.1338\\nQ 11.0603 83.8992, 9.83723 83.8992\\nQ 8.60627 83.8992, 7.93555 83.1338\\nQ 7.27273 82.3684, 7.27273 81.0033\\nM 9.83723 83.2679\\nQ 10.6894 83.2679, 11.1471 82.6998\\nQ 11.6127 82.1238, 11.6127 81.0033\\nQ 11.6127 79.9064, 11.1471 79.3541\\nQ 10.6894 78.7938, 9.83723 78.7938\\nQ 8.98502 78.7938, 8.51947 79.3462\\nQ 8.0618 79.8986, 8.0618 81.0033\\nQ 8.0618 82.1316, 8.51947 82.6998\\nQ 8.98502 83.2679, 9.83723 83.2679\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.09, "data-ID": 677, "mols2grid-id": 134, "mols2grid-tooltip": "<strong>Name</strong>: brucine<br><strong>SMILES</strong>: O=C(N(c(c(C1(C(N(C2)CC(C3C4C5OC6)=C6)C3)C2)cc(OC)c7OC)c7)C14)C5<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.09</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Nc1ccc(cc1)S(=O)(=O)Nc2ccnn2c3ccccc3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.629,109.002 L 114.236,106.466' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.236,106.466 L 109.843,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.843,103.93 L 109.843,88.3927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.735,101.6 L 106.735,90.7233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 96.3875,111.699 L 109.843,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.843,88.3927 L 96.3875,80.624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.3875,80.624 L 82.932,88.3927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9229,84.4804 L 86.5041,89.9186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.932,88.3927 L 82.932,103.93' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 82.932,88.3927 L 77.0998,85.0257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 77.0998,85.0257 L 71.2677,81.6587' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 82.932,103.93 L 96.3875,111.699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.5041,102.404 L 95.9229,107.843' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 66.9694,80.2691 L 63.5894,82.2219' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 63.5894,82.2219 L 60.2095,84.1748' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.524,82.9598 L 65.144,84.9126' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 65.144,84.9126 L 61.7641,86.8654' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 68.5229,78.281 L 65.1404,76.3303' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 65.1404,76.3303 L 61.7579,74.3795' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 66.9704,80.9729 L 63.5879,79.0222' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 63.5879,79.0222 L 60.2054,77.0714' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 69.4665,78.0373 L 69.463,72.8178' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 69.463,72.8178 L 69.4595,67.5982' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.4005,63.8862 L 61.6978,60.5937' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 61.6978,60.5937 L 55.9951,57.3011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 55.9951,57.3011 L 42.0103,63.7627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 52.594,55.4494 L 42.8046,59.9725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-11' d='M 54.7816,44.5498 L 55.3884,50.9255' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-11' d='M 55.3884,50.9255 L 55.9951,57.3011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 42.0103,63.7627 L 31.5898,52.2369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 31.5898,52.2369 L 34.7165,46.7957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 34.7165,46.7957 L 37.8432,41.3545' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 35.2222,52.1528 L 37.4109,48.3439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 37.4109,48.3439 L 39.5995,44.5351' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 41.3878,39.1987 L 52.531,41.5429' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 56.593,40.1266 L 61.3603,35.8674' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 61.3603,35.8674 L 66.1276,31.6083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 66.1276,31.6083 L 81.1711,35.2762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 69.1203,29.1394 L 79.6506,31.707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-16' d='M 61.7036,16.6933 L 66.1276,31.6083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 81.1711,35.2762 L 91.8992,24.0364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 91.8992,24.0364 L 87.53,9.12658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 88.2617,22.6738 L 85.2033,12.2369' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 87.53,9.12658 L 72.4317,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 72.4317,5.45455 L 61.7036,16.6933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 73.0703,9.28604 L 65.5606,17.1532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.636 107.945\\nL 121.078 110.276\\nQ 121.221 110.506, 121.45 110.922\\nQ 121.68 111.339, 121.693 111.363\\nL 121.693 107.945\\nL 122.277 107.945\\nL 122.277 112.345\\nL 121.674 112.345\\nL 120.127 109.797\\nQ 119.946 109.499, 119.754 109.157\\nQ 119.567 108.815, 119.511 108.71\\nL 119.511 112.345\\nL 118.94 112.345\\nL 118.94 107.945\\nL 119.636 107.945\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 122.805 107.945\\nL 123.402 107.945\\nL 123.402 109.816\\nL 125.652 109.816\\nL 125.652 107.945\\nL 126.248 107.945\\nL 126.248 112.345\\nL 125.652 112.345\\nL 125.652 110.313\\nL 123.402 110.313\\nL 123.402 112.345\\nL 122.805 112.345\\nL 122.805 107.945\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 126.462 112.191\\nQ 126.568 111.916, 126.823 111.764\\nQ 127.077 111.608, 127.43 111.608\\nQ 127.869 111.608, 128.115 111.846\\nQ 128.361 112.084, 128.361 112.507\\nQ 128.361 112.938, 128.041 113.339\\nQ 127.725 113.741, 127.069 114.217\\nL 128.41 114.217\\nL 128.41 114.545\\nL 126.454 114.545\\nL 126.454 114.271\\nQ 126.995 113.885, 127.315 113.598\\nQ 127.639 113.311, 127.795 113.052\\nQ 127.951 112.794, 127.951 112.527\\nQ 127.951 112.248, 127.811 112.093\\nQ 127.672 111.937, 127.43 111.937\\nQ 127.196 111.937, 127.04 112.031\\nQ 126.884 112.125, 126.774 112.335\\nL 126.462 112.191\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 68.2252 82.1301\\nQ 68.2749 82.1487, 68.48 82.2357\\nQ 68.6851 82.3227, 68.9089 82.3787\\nQ 69.1388 82.4284, 69.3625 82.4284\\nQ 69.779 82.4284, 70.0213 82.2295\\nQ 70.2637 82.0244, 70.2637 81.6702\\nQ 70.2637 81.4278, 70.1394 81.2786\\nQ 70.0213 81.1295, 69.8349 81.0487\\nQ 69.6484 80.9679, 69.3377 80.8746\\nQ 68.9461 80.7566, 68.71 80.6447\\nQ 68.48 80.5328, 68.3122 80.2966\\nQ 68.1506 80.0605, 68.1506 79.6627\\nQ 68.1506 79.1096, 68.5235 78.7678\\nQ 68.9026 78.4259, 69.6484 78.4259\\nQ 70.1581 78.4259, 70.7361 78.6683\\nL 70.5931 79.1469\\nQ 70.0648 78.9293, 69.6671 78.9293\\nQ 69.2382 78.9293, 69.0021 79.1096\\nQ 68.7659 79.2836, 68.7721 79.5881\\nQ 68.7721 79.8243, 68.8902 79.9673\\nQ 69.0145 80.1102, 69.1885 80.191\\nQ 69.3688 80.2718, 69.6671 80.365\\nQ 70.0648 80.4893, 70.301 80.6136\\nQ 70.5372 80.7379, 70.705 80.9927\\nQ 70.879 81.2413, 70.879 81.6702\\nQ 70.879 82.2792, 70.4688 82.6086\\nQ 70.0648 82.9318, 69.3874 82.9318\\nQ 68.9959 82.9318, 68.6975 82.8448\\nQ 68.4054 82.764, 68.0574 82.6211\\nL 68.2252 82.1301\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 56.686 86.8504\\nQ 56.686 85.7938, 57.2081 85.2034\\nQ 57.7301 84.613, 58.7059 84.613\\nQ 59.6816 84.613, 60.2037 85.2034\\nQ 60.7258 85.7938, 60.7258 86.8504\\nQ 60.7258 87.9193, 60.1975 88.5284\\nQ 59.6692 89.1313, 58.7059 89.1313\\nQ 57.7363 89.1313, 57.2081 88.5284\\nQ 56.686 87.9256, 56.686 86.8504\\nM 58.7059 88.6341\\nQ 59.3771 88.6341, 59.7376 88.1866\\nQ 60.1043 87.7329, 60.1043 86.8504\\nQ 60.1043 85.9865, 59.7376 85.5514\\nQ 59.3771 85.1102, 58.7059 85.1102\\nQ 58.0347 85.1102, 57.668 85.5452\\nQ 57.3075 85.9803, 57.3075 86.8504\\nQ 57.3075 87.7391, 57.668 88.1866\\nQ 58.0347 88.6341, 58.7059 88.6341\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 56.6808 74.4224\\nQ 56.6808 73.3659, 57.2029 72.7755\\nQ 57.725 72.185, 58.7007 72.185\\nQ 59.6765 72.185, 60.1985 72.7755\\nQ 60.7206 73.3659, 60.7206 74.4224\\nQ 60.7206 75.4914, 60.1923 76.1005\\nQ 59.664 76.7033, 58.7007 76.7033\\nQ 57.7312 76.7033, 57.2029 76.1005\\nQ 56.6808 75.4976, 56.6808 74.4224\\nM 58.7007 76.2061\\nQ 59.3719 76.2061, 59.7324 75.7587\\nQ 60.0991 75.305, 60.0991 74.4224\\nQ 60.0991 73.5585, 59.7324 73.1235\\nQ 59.3719 72.6822, 58.7007 72.6822\\nQ 58.0295 72.6822, 57.6628 73.1173\\nQ 57.3023 73.5523, 57.3023 74.4224\\nQ 57.3023 75.3112, 57.6628 75.7587\\nQ 58.0295 76.2061, 58.7007 76.2061\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.4852 62.8739\\nL 69.9271 65.2045\\nQ 70.07 65.4345, 70.3 65.8509\\nQ 70.5299 66.2673, 70.5424 66.2922\\nL 70.5424 62.8739\\nL 71.1266 62.8739\\nL 71.1266 67.2741\\nL 70.5237 67.2741\\nL 68.9762 64.726\\nQ 68.7959 64.4277, 68.6033 64.0858\\nQ 68.4168 63.744, 68.3609 63.6384\\nL 68.3609 67.2741\\nL 67.7891 67.2741\\nL 67.7891 62.8739\\nL 68.4852 62.8739\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 71.6548 62.8739\\nL 72.2515 62.8739\\nL 72.2515 64.7446\\nL 74.5013 64.7446\\nL 74.5013 62.8739\\nL 75.098 62.8739\\nL 75.098 67.2741\\nL 74.5013 67.2741\\nL 74.5013 65.2418\\nL 72.2515 65.2418\\nL 72.2515 67.2741\\nL 71.6548 67.2741\\nL 71.6548 62.8739\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 38.358 36.5658\\nL 39.7998 38.8964\\nQ 39.9428 39.1264, 40.1727 39.5428\\nQ 40.4027 39.9592, 40.4151 39.9841\\nL 40.4151 36.5658\\nL 40.9993 36.5658\\nL 40.9993 40.966\\nL 40.3965 40.966\\nL 38.849 38.4179\\nQ 38.6687 38.1196, 38.4761 37.7777\\nQ 38.2896 37.4359, 38.2337 37.3303\\nL 38.2337 40.966\\nL 37.6619 40.966\\nL 37.6619 36.5658\\nL 38.358 36.5658\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 53.563 39.7645\\nL 55.0049 42.0951\\nQ 55.1478 42.325, 55.3778 42.7415\\nQ 55.6077 43.1579, 55.6201 43.1827\\nL 55.6201 39.7645\\nL 56.2043 39.7645\\nL 56.2043 44.1647\\nL 55.6015 44.1647\\nL 54.054 41.6165\\nQ 53.8737 41.3182, 53.6811 40.9764\\nQ 53.4946 40.6346, 53.4387 40.5289\\nL 53.4387 44.1647\\nL 52.8669 44.1647\\nL 52.8669 39.7645\\nL 53.563 39.7645\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.32, "data-ID": 682, "mols2grid-id": 135, "mols2grid-tooltip": "<strong>Name</strong>: sulfaphenazole<br><strong>SMILES</strong>: Nc1ccc(cc1)S(=O)(=O)Nc2ccnn2c3ccccc3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.32</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 137.461,114.545 L 130.937,99.9715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.937,99.9715 L 111.405,95.8627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.829,95.4489 L 115.157,92.5727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-1' d='M 138.901,86.1121 L 134.919,93.0418' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-1' d='M 134.919,93.0418 L 130.937,99.9715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.405,95.8627 L 109.53,76.162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.53,76.162 L 102.204,71.9325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 102.204,71.9325 L 94.8782,67.703' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 109.53,76.162 L 117.193,72.6214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 117.193,72.6214 L 124.856,69.0808' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 113.504,78.7235 L 118.868,76.2451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-3 atom-15' d='M 118.868,76.2451 L 124.232,73.7666' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.2334,62.8518 L 92.2294,56.2228' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.2294,56.2228 L 92.2254,49.5938' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.4333,46.6583 L 99.775,44.1498' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 99.775,44.1498 L 104.117,41.6413' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.4363,43.2019 L 97.778,40.6934' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.778,40.6934 L 102.12,38.1849' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 93.4377,49.2121 L 97.7827,51.718' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.7827,51.718 L 102.128,54.2238' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.4319,45.7542 L 99.777,48.2601' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.777,48.2601 L 104.122,50.7659' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 89.9119,44.8733 L 82.4201,40.5482' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 82.4201,40.5482 L 74.9284,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 74.9284,36.2231 L 74.9284,16.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 70.9366,33.2292 L 70.9366,19.2581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 57.6441,46.2025 L 74.9284,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 74.9284,16.2642 L 57.6441,6.28483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 57.6441,6.28483 L 40.3597,16.2642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 57.0473,11.2387 L 44.9483,18.2243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 40.3597,16.2642 L 34.7167,13.0065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.7167,13.0065 L 29.0737,9.74869' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 40.3597,16.2642 L 40.3597,36.2231' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 40.3597,36.2231 L 57.6441,46.2025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 44.9483,34.263 L 57.0473,41.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 130.137,70.7846 L 134.036,75.0966' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 134.036,75.0966 L 137.934,79.4086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 85.0063 63.3511\\nL 85.7727 63.3511\\nL 85.7727 65.7541\\nL 88.6627 65.7541\\nL 88.6627 63.3511\\nL 89.4292 63.3511\\nL 89.4292 69.0034\\nL 88.6627 69.0034\\nL 88.6627 66.3928\\nL 85.7727 66.3928\\nL 85.7727 69.0034\\nL 85.0063 69.0034\\nL 85.0063 63.3511\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 90.9859 63.3511\\nL 92.8381 66.3449\\nQ 93.0217 66.6403, 93.3171 67.1752\\nQ 93.6125 67.7101, 93.6285 67.742\\nL 93.6285 63.3511\\nL 94.3789 63.3511\\nL 94.3789 69.0034\\nL 93.6045 69.0034\\nL 91.6166 65.7302\\nQ 91.3851 65.347, 91.1376 64.9079\\nQ 90.8981 64.4688, 90.8263 64.3331\\nL 90.8263 69.0034\\nL 90.0918 69.0034\\nL 90.0918 63.3511\\nL 90.9859 63.3511\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 90.6267 48.1478\\nQ 90.6906 48.1717, 90.954 48.2835\\nQ 91.2175 48.3953, 91.5049 48.4671\\nQ 91.8003 48.531, 92.0877 48.531\\nQ 92.6226 48.531, 92.9339 48.2755\\nQ 93.2453 48.0121, 93.2453 47.557\\nQ 93.2453 47.2456, 93.0856 47.054\\nQ 92.9339 46.8624, 92.6944 46.7587\\nQ 92.4549 46.6549, 92.0557 46.5351\\nQ 91.5528 46.3834, 91.2494 46.2397\\nQ 90.954 46.096, 90.7385 45.7926\\nQ 90.5309 45.4893, 90.5309 44.9783\\nQ 90.5309 44.2678, 91.0099 43.8287\\nQ 91.4969 43.3896, 92.4549 43.3896\\nQ 93.1096 43.3896, 93.852 43.701\\nL 93.6684 44.3157\\nQ 92.9898 44.0363, 92.4789 44.0363\\nQ 91.928 44.0363, 91.6246 44.2678\\nQ 91.3213 44.4913, 91.3292 44.8825\\nQ 91.3292 45.1859, 91.4809 45.3695\\nQ 91.6406 45.5531, 91.8641 45.6569\\nQ 92.0957 45.7607, 92.4789 45.8805\\nQ 92.9898 46.0401, 93.2932 46.1998\\nQ 93.5966 46.3595, 93.8121 46.6868\\nQ 94.0357 47.0061, 94.0357 47.557\\nQ 94.0357 48.3394, 93.5087 48.7625\\nQ 92.9898 49.1777, 92.1196 49.1777\\nQ 91.6166 49.1777, 91.2334 49.0659\\nQ 90.8582 48.9621, 90.4111 48.7785\\nL 90.6267 48.1478\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 103.454 38.2362\\nQ 103.454 36.879, 104.124 36.1206\\nQ 104.795 35.3622, 106.048 35.3622\\nQ 107.302 35.3622, 107.972 36.1206\\nQ 108.643 36.879, 108.643 38.2362\\nQ 108.643 39.6094, 107.964 40.3918\\nQ 107.286 41.1662, 106.048 41.1662\\nQ 104.803 41.1662, 104.124 40.3918\\nQ 103.454 39.6174, 103.454 38.2362\\nM 106.048 40.5275\\nQ 106.91 40.5275, 107.373 39.9527\\nQ 107.844 39.3699, 107.844 38.2362\\nQ 107.844 37.1265, 107.373 36.5677\\nQ 106.91 36.0009, 106.048 36.0009\\nQ 105.186 36.0009, 104.715 36.5597\\nQ 104.252 37.1185, 104.252 38.2362\\nQ 104.252 39.3779, 104.715 39.9527\\nQ 105.186 40.5275, 106.048 40.5275\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 103.46 54.2006\\nQ 103.46 52.8434, 104.131 52.085\\nQ 104.801 51.3266, 106.055 51.3266\\nQ 107.308 51.3266, 107.979 52.085\\nQ 108.649 52.8434, 108.649 54.2006\\nQ 108.649 55.5738, 107.971 56.3562\\nQ 107.292 57.1306, 106.055 57.1306\\nQ 104.809 57.1306, 104.131 56.3562\\nQ 103.46 55.5818, 103.46 54.2006\\nM 106.055 56.4919\\nQ 106.917 56.4919, 107.38 55.9171\\nQ 107.851 55.3343, 107.851 54.2006\\nQ 107.851 53.0909, 107.38 52.5321\\nQ 106.917 51.9652, 106.055 51.9652\\nQ 105.193 51.9652, 104.722 52.5241\\nQ 104.259 53.0829, 104.259 54.2006\\nQ 104.259 55.3423, 104.722 55.9171\\nQ 105.193 56.4919, 106.055 56.4919\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 16.525 5.45455\\nL 17.2914 5.45455\\nL 17.2914 7.85759\\nL 20.1815 7.85759\\nL 20.1815 5.45455\\nL 20.9479 5.45455\\nL 20.9479 11.1069\\nL 20.1815 11.1069\\nL 20.1815 8.49627\\nL 17.2914 8.49627\\nL 17.2914 11.1069\\nL 16.525 11.1069\\nL 16.525 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 21.2219 10.9086\\nQ 21.3589 10.5555, 21.6856 10.3606\\nQ 22.0123 10.1604, 22.4654 10.1604\\nQ 23.0292 10.1604, 23.3454 10.466\\nQ 23.6615 10.7716, 23.6615 11.3143\\nQ 23.6615 11.8676, 23.2505 12.3839\\nQ 22.8448 12.9003, 22.0017 13.5115\\nL 23.7247 13.5115\\nL 23.7247 13.9331\\nL 21.2114 13.9331\\nL 21.2114 13.58\\nQ 21.9069 13.0847, 22.3179 12.7159\\nQ 22.7341 12.347, 22.9344 12.0151\\nQ 23.1346 11.6831, 23.1346 11.3406\\nQ 23.1346 10.9823, 22.9554 10.7821\\nQ 22.7763 10.5819, 22.4654 10.5819\\nQ 22.1651 10.5819, 21.9648 10.7031\\nQ 21.7646 10.8243, 21.6223 11.093\\nL 21.2219 10.9086\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 25.2815 5.45455\\nL 27.1337 8.44837\\nQ 27.3173 8.74376, 27.6127 9.27866\\nQ 27.9081 9.81355, 27.9241 9.84549\\nL 27.9241 5.45455\\nL 28.6745 5.45455\\nL 28.6745 11.1069\\nL 27.9001 11.1069\\nL 25.9122 7.83364\\nQ 25.6807 7.45043, 25.4332 7.01133\\nQ 25.1937 6.57224, 25.1218 6.43652\\nL 25.1218 11.1069\\nL 24.3874 11.1069\\nL 24.3874 5.45455\\nL 25.2815 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 126.245 65.0356\\nL 128.097 68.0294\\nQ 128.281 68.3248, 128.576 68.8597\\nQ 128.872 69.3946, 128.888 69.4265\\nL 128.888 65.0356\\nL 129.638 65.0356\\nL 129.638 70.6879\\nL 128.864 70.6879\\nL 126.876 67.4147\\nQ 126.644 67.0315, 126.397 66.5924\\nQ 126.157 66.1533, 126.086 66.0176\\nL 126.086 70.6879\\nL 125.351 70.6879\\nL 125.351 65.0356\\nL 126.245 65.0356\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 138.286 82.6832\\nQ 138.286 81.326, 138.956 80.5676\\nQ 139.627 79.8091, 140.88 79.8091\\nQ 142.134 79.8091, 142.804 80.5676\\nQ 143.475 81.326, 143.475 82.6832\\nQ 143.475 84.0564, 142.796 84.8387\\nQ 142.118 85.6132, 140.88 85.6132\\nQ 139.635 85.6132, 138.956 84.8387\\nQ 138.286 84.0643, 138.286 82.6832\\nM 140.88 84.9745\\nQ 141.743 84.9745, 142.206 84.3997\\nQ 142.677 83.8169, 142.677 82.6832\\nQ 142.677 81.5735, 142.206 81.0146\\nQ 141.743 80.4478, 140.88 80.4478\\nQ 140.018 80.4478, 139.547 81.0067\\nQ 139.084 81.5655, 139.084 82.6832\\nQ 139.084 83.8248, 139.547 84.3997\\nQ 140.018 84.9745, 140.88 84.9745\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.62, "data-ID": 687, "mols2grid-id": 136, "mols2grid-tooltip": "<strong>Name</strong>: sulfamethoxazole<br><strong>SMILES</strong>: Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.62</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cc(N)ccc1S(=O)(=O)Nc2nc(C)nc(OC)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 98.6244,40.5655 L 98.6244,26.1852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.7484,38.4085 L 95.7484,28.3422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 86.1711,47.7556 L 98.6244,40.5655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.6244,26.1852 L 86.1711,18.995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.1711,18.995 L 86.1711,14.4487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.1711,14.4487 L 86.1711,9.9024' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 86.1711,18.995 L 73.7177,26.1852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 85.7411,22.5643 L 77.0238,27.5974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.7177,26.1852 L 73.7177,40.5655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.7177,40.5655 L 86.1711,47.7556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 77.0238,39.1533 L 85.7411,44.1864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.1711,47.7556 L 86.1711,53.7108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 86.1711,53.7108 L 86.1711,59.6659' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.102,64.341 L 90.1645,66.1079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 90.1645,66.1079 L 93.227,67.8749' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 88.5393,61.8498 L 91.6018,63.6168' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 91.6018,63.6168 L 94.6643,65.3837' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 84.7343,64.6639 L 84.736,67.97' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 84.736,67.97 L 84.7376,71.276' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.6104,64.6625 L 87.612,67.9685' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 87.612,67.9685 L 87.6137,71.2745' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 84.4494,63.1392 L 80.0426,65.6873' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 80.0426,65.6873 L 75.6358,68.2355' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.7148,71.8299 L 73.7148,77.7821' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 73.7148,77.7821 L 73.7148,83.7342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 73.7148,83.7342 L 68.4806,86.7707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 68.4806,86.7707 L 63.2464,89.8071' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 73.5878,87.1329 L 69.9238,89.2584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 69.9238,89.2584 L 66.2599,91.3839' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-11' d='M 86.1835,90.8994 L 73.7148,83.7342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 61.281,93.4338 L 61.2933,99.3822' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 61.2933,99.3822 L 61.3056,105.331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 61.3056,105.331 L 51.3544,111.103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 61.3056,105.331 L 66.5547,108.347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 66.5547,108.347 L 71.8038,111.363' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 64.3133,103.742 L 67.9877,105.853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 67.9877,105.853 L 71.662,107.965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 75.7448,111.353 L 80.979,108.316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 80.979,108.316 L 86.2133,105.28' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 86.2133,105.28 L 91.3033,108.191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 91.3033,108.191 L 96.3933,111.102' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 86.2133,105.28 L 86.1835,90.8994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 83.3327,103.129 L 83.3119,93.0624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 100.941,111.121 L 104.793,108.878' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 104.793,108.878 L 108.646,106.636' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 85.2321 5.3668\\nL 86.6241 7.6168\\nQ 86.7621 7.8388, 86.9841 8.2408\\nQ 87.2061 8.6428, 87.2181 8.6668\\nL 87.2181 5.3668\\nL 87.7821 5.3668\\nL 87.7821 9.6148\\nL 87.2001 9.6148\\nL 85.7061 7.1548\\nQ 85.5321 6.8668, 85.3461 6.5368\\nQ 85.1661 6.2068, 85.1121 6.1048\\nL 85.1121 9.6148\\nL 84.5601 9.6148\\nL 84.5601 5.3668\\nL 85.2321 5.3668\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.2921 5.3668\\nL 88.8681 5.3668\\nL 88.8681 7.1728\\nL 91.0401 7.1728\\nL 91.0401 5.3668\\nL 91.6161 5.3668\\nL 91.6161 9.6148\\nL 91.0401 9.6148\\nL 91.0401 7.6528\\nL 88.8681 7.6528\\nL 88.8681 9.6148\\nL 88.2921 9.6148\\nL 88.2921 5.3668\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 91.822 9.46576\\nQ 91.9249 9.20044, 92.1705 9.05392\\nQ 92.416 8.90344, 92.7565 8.90344\\nQ 93.1803 8.90344, 93.4179 9.13312\\nQ 93.6555 9.3628, 93.6555 9.77068\\nQ 93.6555 10.1865, 93.3466 10.5746\\nQ 93.0417 10.9626, 92.4081 11.422\\nL 93.703 11.422\\nL 93.703 11.7388\\nL 91.8141 11.7388\\nL 91.8141 11.4735\\nQ 92.3368 11.1012, 92.6457 10.824\\nQ 92.9585 10.5468, 93.109 10.2974\\nQ 93.2595 10.0479, 93.2595 9.79048\\nQ 93.2595 9.5212, 93.1248 9.37072\\nQ 92.9902 9.22024, 92.7565 9.22024\\nQ 92.5308 9.22024, 92.3803 9.31132\\nQ 92.2299 9.4024, 92.1229 9.60436\\nL 91.822 9.46576\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 84.9711 63.6016\\nQ 85.0191 63.6196, 85.2171 63.7036\\nQ 85.4151 63.7876, 85.6311 63.8416\\nQ 85.8531 63.8896, 86.0691 63.8896\\nQ 86.4711 63.8896, 86.7051 63.6976\\nQ 86.9391 63.4996, 86.9391 63.1576\\nQ 86.9391 62.9236, 86.8191 62.7796\\nQ 86.7051 62.6356, 86.5251 62.5576\\nQ 86.3451 62.4796, 86.0451 62.3896\\nQ 85.6671 62.2756, 85.4391 62.1676\\nQ 85.2171 62.0596, 85.0551 61.8316\\nQ 84.8991 61.6036, 84.8991 61.2196\\nQ 84.8991 60.6856, 85.2591 60.3556\\nQ 85.6251 60.0256, 86.3451 60.0256\\nQ 86.8371 60.0256, 87.3951 60.2596\\nL 87.2571 60.7216\\nQ 86.7471 60.5116, 86.3631 60.5116\\nQ 85.9491 60.5116, 85.7211 60.6856\\nQ 85.4931 60.8536, 85.4991 61.1476\\nQ 85.4991 61.3756, 85.6131 61.5136\\nQ 85.7331 61.6516, 85.9011 61.7296\\nQ 86.0751 61.8076, 86.3631 61.8976\\nQ 86.7471 62.0176, 86.9751 62.1376\\nQ 87.2031 62.2576, 87.3651 62.5036\\nQ 87.5331 62.7436, 87.5331 63.1576\\nQ 87.5331 63.7456, 87.1371 64.0636\\nQ 86.7471 64.3756, 86.0931 64.3756\\nQ 85.7151 64.3756, 85.4271 64.2916\\nQ 85.1451 64.2136, 84.8091 64.0756\\nL 84.9711 63.6016\\n' fill='#CCCC00'/>\\n<path class='atom-8' d='M 94.1857 67.9049\\nQ 94.1857 66.8849, 94.6897 66.3149\\nQ 95.1937 65.7449, 96.1357 65.7449\\nQ 97.0777 65.7449, 97.5817 66.3149\\nQ 98.0857 66.8849, 98.0857 67.9049\\nQ 98.0857 68.9369, 97.5757 69.5249\\nQ 97.0657 70.1069, 96.1357 70.1069\\nQ 95.1997 70.1069, 94.6897 69.5249\\nQ 94.1857 68.9429, 94.1857 67.9049\\nM 96.1357 69.6269\\nQ 96.7837 69.6269, 97.1317 69.1949\\nQ 97.4857 68.7569, 97.4857 67.9049\\nQ 97.4857 67.0709, 97.1317 66.6509\\nQ 96.7837 66.2249, 96.1357 66.2249\\nQ 95.4877 66.2249, 95.1337 66.6449\\nQ 94.7857 67.0649, 94.7857 67.9049\\nQ 94.7857 68.7629, 95.1337 69.1949\\nQ 95.4877 69.6269, 96.1357 69.6269\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 84.2268 73.6599\\nQ 84.2268 72.6399, 84.7308 72.0699\\nQ 85.2348 71.4999, 86.1768 71.4999\\nQ 87.1188 71.4999, 87.6228 72.0699\\nQ 88.1268 72.6399, 88.1268 73.6599\\nQ 88.1268 74.6919, 87.6168 75.2799\\nQ 87.1068 75.8619, 86.1768 75.8619\\nQ 85.2408 75.8619, 84.7308 75.2799\\nQ 84.2268 74.6979, 84.2268 73.6599\\nM 86.1768 75.3819\\nQ 86.8248 75.3819, 87.1728 74.9499\\nQ 87.5268 74.5119, 87.5268 73.6599\\nQ 87.5268 72.8259, 87.1728 72.4059\\nQ 86.8248 71.9799, 86.1768 71.9799\\nQ 85.5288 71.9799, 85.1748 72.3999\\nQ 84.8268 72.8199, 84.8268 73.6599\\nQ 84.8268 74.5179, 85.1748 74.9499\\nQ 85.5288 75.3819, 86.1768 75.3819\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 68.2818 67.2222\\nL 68.8578 67.2222\\nL 68.8578 69.0282\\nL 71.0298 69.0282\\nL 71.0298 67.2222\\nL 71.6058 67.2222\\nL 71.6058 71.4702\\nL 71.0298 71.4702\\nL 71.0298 69.5082\\nL 68.8578 69.5082\\nL 68.8578 71.4702\\nL 68.2818 71.4702\\nL 68.2818 67.2222\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 72.7758 67.2222\\nL 74.1678 69.4722\\nQ 74.3058 69.6942, 74.5278 70.0962\\nQ 74.7498 70.4982, 74.7618 70.5222\\nL 74.7618 67.2222\\nL 75.3258 67.2222\\nL 75.3258 71.4702\\nL 74.7438 71.4702\\nL 73.2498 69.0102\\nQ 73.0758 68.7222, 72.8898 68.3922\\nQ 72.7098 68.0622, 72.6558 67.9602\\nL 72.6558 71.4702\\nL 72.1038 71.4702\\nL 72.1038 67.2222\\nL 72.7758 67.2222\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 60.3369 88.8263\\nL 61.7289 91.0763\\nQ 61.8669 91.2983, 62.0889 91.7003\\nQ 62.3109 92.1023, 62.3229 92.1263\\nL 62.3229 88.8263\\nL 62.8869 88.8263\\nL 62.8869 93.0743\\nL 62.3049 93.0743\\nL 60.8109 90.6143\\nQ 60.6369 90.3263, 60.4509 89.9963\\nQ 60.2709 89.6663, 60.2169 89.5643\\nL 60.2169 93.0743\\nL 59.6649 93.0743\\nL 59.6649 88.8263\\nL 60.3369 88.8263\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 72.8353 110.372\\nL 74.2273 112.622\\nQ 74.3653 112.844, 74.5873 113.246\\nQ 74.8093 113.648, 74.8213 113.672\\nL 74.8213 110.372\\nL 75.3853 110.372\\nL 75.3853 114.62\\nL 74.8033 114.62\\nL 73.3093 112.16\\nQ 73.1353 111.872, 72.9493 111.542\\nQ 72.7693 111.212, 72.7153 111.11\\nL 72.7153 114.62\\nL 72.1633 114.62\\nL 72.1633 110.372\\nL 72.8353 110.372\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 96.753 112.435\\nQ 96.753 111.415, 97.257 110.845\\nQ 97.761 110.275, 98.703 110.275\\nQ 99.645 110.275, 100.149 110.845\\nQ 100.653 111.415, 100.653 112.435\\nQ 100.653 113.467, 100.143 114.055\\nQ 99.633 114.637, 98.703 114.637\\nQ 97.767 114.637, 97.257 114.055\\nQ 96.753 113.473, 96.753 112.435\\nM 98.703 114.157\\nQ 99.351 114.157, 99.699 113.725\\nQ 100.053 113.287, 100.053 112.435\\nQ 100.053 111.601, 99.699 111.181\\nQ 99.351 110.755, 98.703 110.755\\nQ 98.055 110.755, 97.701 111.175\\nQ 97.353 111.595, 97.353 112.435\\nQ 97.353 113.293, 97.701 113.725\\nQ 98.055 114.157, 98.703 114.157\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.54, "data-ID": 692, "mols2grid-id": 137, "mols2grid-tooltip": "<strong>Name</strong>: sulfamethomidine<br><strong>SMILES</strong>: c1cc(N)ccc1S(=O)(=O)Nc2nc(C)nc(OC)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.54</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1NC(=O)C2=C(C)OCCS2(=O)=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 80.3977,30.6286 L 80.3977,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0412,28.1112 L 77.0412,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 65.8639,39.0199 L 80.3977,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 80.3977,13.8459 L 65.8639,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.8639,5.45455 L 51.3301,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.3622,9.62008 L 55.1885,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 51.3301,13.8459 L 51.3301,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 51.3301,30.6286 L 65.8639,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.1885,28.9805 L 65.3622,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 65.8639,39.0199 L 65.8784,46.0177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 65.8784,46.0177 L 65.8928,53.0154' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 68.1209,57.0905 L 74.2867,60.6389' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.2867,60.6389 L 80.4526,64.1873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 81.2942,65.6393 L 85.8434,63.0023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 85.8434,63.0023 L 90.3927,60.3653' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 79.6109,62.7353 L 84.1602,60.0983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 84.1602,60.0983 L 88.7094,57.4613' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 80.4526,64.1873 L 80.4873,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 79.648,79.5256 L 66.7927,90.8248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.3265,82.4323 L 65.1142,87.918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-9' d='M 93.0776,88.2492 L 86.7824,84.6141' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-9' d='M 86.7824,84.6141 L 80.4873,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 65.9534,89.3714 L 54.3253,82.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 65.9534,89.3714 L 65.9534,96.3513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 65.9534,96.3513 L 65.9534,103.331' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 68.5548,107.656 L 74.5216,111.101' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 74.5216,111.101 L 80.4884,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.4884,114.545 L 95.0222,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 95.0222,106.154 L 95.0217,99.2212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 95.0217,99.2212 L 95.0213,92.2882' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 96.6351,86.6264 L 96.541,82.6403' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 96.541,82.6403 L 96.447,78.6542' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 93.2795,86.7056 L 93.1854,82.7195' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 93.1854,82.7195 L 93.0914,78.7333' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 96.0076,91.9373 L 99.5799,94.1129' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 99.5799,94.1129 L 103.152,96.2886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 97.7536,89.0706 L 101.326,91.2462' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 101.326,91.2462 L 104.898,93.4218' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 59.8199 53.4352\\nL 60.4644 53.4352\\nL 60.4644 55.4558\\nL 62.8945 55.4558\\nL 62.8945 53.4352\\nL 63.539 53.4352\\nL 63.539 58.188\\nL 62.8945 58.188\\nL 62.8945 55.9929\\nL 60.4644 55.9929\\nL 60.4644 58.188\\nL 59.8199 58.188\\nL 59.8199 53.4352\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 64.848 53.4352\\nL 66.4055 55.9526\\nQ 66.5599 56.201, 66.8082 56.6507\\nQ 67.0566 57.1005, 67.07 57.1274\\nL 67.07 53.4352\\nL 67.7011 53.4352\\nL 67.7011 58.188\\nL 67.0499 58.188\\nL 65.3784 55.4357\\nQ 65.1837 55.1134, 64.9756 54.7442\\nQ 64.7742 54.375, 64.7138 54.2609\\nL 64.7138 58.188\\nL 64.0962 58.188\\nL 64.0962 53.4352\\nL 64.848 53.4352\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 89.8867 57.4675\\nQ 89.8867 56.3263, 90.4506 55.6885\\nQ 91.0145 55.0508, 92.0684 55.0508\\nQ 93.1224 55.0508, 93.6863 55.6885\\nQ 94.2502 56.3263, 94.2502 57.4675\\nQ 94.2502 58.6221, 93.6796 59.28\\nQ 93.109 59.9312, 92.0684 59.9312\\nQ 91.0212 59.9312, 90.4506 59.28\\nQ 89.8867 58.6289, 89.8867 57.4675\\nM 92.0684 59.3941\\nQ 92.7935 59.3941, 93.1828 58.9108\\nQ 93.5789 58.4207, 93.5789 57.4675\\nQ 93.5789 56.5344, 93.1828 56.0645\\nQ 92.7935 55.5878, 92.0684 55.5878\\nQ 91.3434 55.5878, 90.9474 56.0577\\nQ 90.558 56.5277, 90.558 57.4675\\nQ 90.558 58.4275, 90.9474 58.9108\\nQ 91.3434 59.3941, 92.0684 59.3941\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 63.7717 106.168\\nQ 63.7717 105.026, 64.3356 104.389\\nQ 64.8995 103.751, 65.9534 103.751\\nQ 67.0074 103.751, 67.5713 104.389\\nQ 68.1352 105.026, 68.1352 106.168\\nQ 68.1352 107.322, 67.5646 107.98\\nQ 66.994 108.631, 65.9534 108.631\\nQ 64.9062 108.631, 64.3356 107.98\\nQ 63.7717 107.329, 63.7717 106.168\\nM 65.9534 108.094\\nQ 66.6785 108.094, 67.0678 107.611\\nQ 67.4639 107.121, 67.4639 106.168\\nQ 67.4639 105.234, 67.0678 104.764\\nQ 66.6785 104.288, 65.9534 104.288\\nQ 65.2284 104.288, 64.8324 104.758\\nQ 64.443 105.228, 64.443 106.168\\nQ 64.443 107.128, 64.8324 107.611\\nQ 65.2284 108.094, 65.9534 108.094\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 93.6785 91.0027\\nQ 93.7322 91.0228, 93.9537 91.1168\\nQ 94.1752 91.2108, 94.4169 91.2712\\nQ 94.6653 91.3249, 94.907 91.3249\\nQ 95.3567 91.3249, 95.6185 91.1101\\nQ 95.8804 90.8886, 95.8804 90.5059\\nQ 95.8804 90.2441, 95.7461 90.083\\nQ 95.6185 89.9219, 95.4171 89.8346\\nQ 95.2158 89.7473, 94.8801 89.6466\\nQ 94.4572 89.5191, 94.2021 89.3983\\nQ 93.9537 89.2774, 93.7724 89.0223\\nQ 93.5979 88.7672, 93.5979 88.3376\\nQ 93.5979 87.7401, 94.0007 87.3709\\nQ 94.4102 87.0017, 95.2158 87.0017\\nQ 95.7662 87.0017, 96.3905 87.2635\\nL 96.2361 87.7804\\nQ 95.6655 87.5454, 95.2359 87.5454\\nQ 94.7727 87.5454, 94.5176 87.7401\\nQ 94.2625 87.9281, 94.2692 88.257\\nQ 94.2692 88.5121, 94.3968 88.6665\\nQ 94.531 88.8209, 94.719 88.9082\\nQ 94.9137 88.9955, 95.2359 89.0962\\nQ 95.6655 89.2304, 95.9206 89.3647\\nQ 96.1757 89.499, 96.357 89.7742\\nQ 96.5449 90.0427, 96.5449 90.5059\\nQ 96.5449 91.1638, 96.1019 91.5196\\nQ 95.6655 91.8687, 94.9338 91.8687\\nQ 94.5109 91.8687, 94.1887 91.7747\\nQ 93.8731 91.6874, 93.4972 91.533\\nL 93.6785 91.0027\\n' fill='#CCCC00'/>\\n<path class='atom-16' d='M 92.5227 75.962\\nQ 92.5227 74.8208, 93.0866 74.1831\\nQ 93.6505 73.5453, 94.7044 73.5453\\nQ 95.7584 73.5453, 96.3223 74.1831\\nQ 96.8862 74.8208, 96.8862 75.962\\nQ 96.8862 77.1167, 96.3156 77.7746\\nQ 95.745 78.4257, 94.7044 78.4257\\nQ 93.6572 78.4257, 93.0866 77.7746\\nQ 92.5227 77.1234, 92.5227 75.962\\nM 94.7044 77.8887\\nQ 95.4295 77.8887, 95.8188 77.4053\\nQ 96.2149 76.9153, 96.2149 75.962\\nQ 96.2149 75.0289, 95.8188 74.559\\nQ 95.4295 74.0824, 94.7044 74.0824\\nQ 93.9794 74.0824, 93.5834 74.5523\\nQ 93.194 75.0222, 93.194 75.962\\nQ 93.194 76.922, 93.5834 77.4053\\nQ 93.9794 77.8887, 94.7044 77.8887\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 104.306 96.3687\\nQ 104.306 95.2274, 104.87 94.5897\\nQ 105.434 93.952, 106.488 93.952\\nQ 107.542 93.952, 108.106 94.5897\\nQ 108.67 95.2274, 108.67 96.3687\\nQ 108.67 97.5233, 108.099 98.1812\\nQ 107.529 98.8324, 106.488 98.8324\\nQ 105.441 98.8324, 104.87 98.1812\\nQ 104.306 97.53, 104.306 96.3687\\nM 106.488 98.2953\\nQ 107.213 98.2953, 107.603 97.812\\nQ 107.999 97.3219, 107.999 96.3687\\nQ 107.999 95.4356, 107.603 94.9656\\nQ 107.213 94.489, 106.488 94.489\\nQ 105.763 94.489, 105.367 94.9589\\nQ 104.978 95.4288, 104.978 96.3687\\nQ 104.978 97.3286, 105.367 97.812\\nQ 105.763 98.2953, 106.488 98.2953\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.43, "data-ID": 697, "mols2grid-id": 138, "mols2grid-tooltip": "<strong>Name</strong>: oxycarboxin<br><strong>SMILES</strong>: c1ccccc1NC(=O)C2=C(C)OCCS2(=O)=O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.43</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(c(cccc1C(C(=O)O)C)c1)c(cccc2)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 128.062,40.407 L 122.136,43.8147' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.136,43.8147 L 116.211,47.2224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 130.236,44.1877 L 124.311,47.5954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.311,47.5954 L 118.385,51.0031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.298,49.1127 L 98.4236,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-1 atom-13' d='M 117.298,49.1127 L 117.266,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.4236,38.1644 L 98.4236,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.0623,34.8934 L 94.0623,19.6288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-12' d='M 98.4236,38.1644 L 79.5392,49.0676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.4236,16.3578 L 79.5392,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.5392,5.45455 L 60.6547,16.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.8872,10.867 L 65.6681,18.4993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 60.6547,16.3578 L 60.6547,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 60.6547,38.1644 L 41.7818,49.1127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 79.5392,49.0676 L 60.6547,38.1644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 78.8872,43.6552 L 65.6681,36.0229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 41.7818,49.1127 L 41.8124,70.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 41.7818,49.1127 L 26.6583,40.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.7181,69.0447 L 34.8085,72.4731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 34.8085,72.4731 L 28.8989,75.9016' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 42.9067,72.8171 L 36.9971,76.2456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 36.9971,76.2456 L 31.0875,79.674' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 41.8124,70.9309 L 47.7387,74.3387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 47.7387,74.3387 L 53.6649,77.7464' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 117.266,70.9309 L 136.113,81.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 117.899,76.3457 L 131.092,84.0248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-13 atom-18' d='M 117.266,70.9309 L 98.3437,81.7702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 136.113,81.901 L 136.038,103.708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 136.038,103.708 L 117.115,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 131.032,101.549 L 117.786,109.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 117.115,114.545 L 98.2681,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-17' d='M 98.3437,81.7702 L 98.2681,103.577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-17' d='M 102.694,85.0563 L 102.641,100.321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.585 40.4337\\nQ 129.585 38.9509, 130.318 38.1222\\nQ 131.051 37.2936, 132.42 37.2936\\nQ 133.789 37.2936, 134.522 38.1222\\nQ 135.255 38.9509, 135.255 40.4337\\nQ 135.255 41.934, 134.513 42.7888\\nQ 133.772 43.6349, 132.42 43.6349\\nQ 131.059 43.6349, 130.318 42.7888\\nQ 129.585 41.9427, 129.585 40.4337\\nM 132.42 42.9371\\nQ 133.362 42.9371, 133.868 42.3091\\nQ 134.383 41.6723, 134.383 40.4337\\nQ 134.383 39.2213, 133.868 38.6107\\nQ 133.362 37.9914, 132.42 37.9914\\nQ 131.478 37.9914, 130.963 38.602\\nQ 130.457 39.2125, 130.457 40.4337\\nQ 130.457 41.681, 130.963 42.3091\\nQ 131.478 42.9371, 132.42 42.9371\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 23.8874 79.7029\\nQ 23.8874 78.2201, 24.6201 77.3915\\nQ 25.3528 76.5628, 26.7222 76.5628\\nQ 28.0917 76.5628, 28.8244 77.3915\\nQ 29.5571 78.2201, 29.5571 79.7029\\nQ 29.5571 81.2032, 28.8157 82.0581\\nQ 28.0742 82.9041, 26.7222 82.9041\\nQ 25.3615 82.9041, 24.6201 82.0581\\nQ 23.8874 81.212, 23.8874 79.7029\\nM 26.7222 82.2063\\nQ 27.6643 82.2063, 28.1702 81.5783\\nQ 28.6848 80.9416, 28.6848 79.7029\\nQ 28.6848 78.4905, 28.1702 77.8799\\nQ 27.6643 77.2606, 26.7222 77.2606\\nQ 25.7802 77.2606, 25.2656 77.8712\\nQ 24.7596 78.4818, 24.7596 79.7029\\nQ 24.7596 80.9503, 25.2656 81.5783\\nQ 25.7802 82.2063, 26.7222 82.2063\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 54.1011 79.6448\\nQ 54.1011 78.1619, 54.8338 77.3333\\nQ 55.5665 76.5047, 56.9359 76.5047\\nQ 58.3054 76.5047, 59.0381 77.3333\\nQ 59.7708 78.1619, 59.7708 79.6448\\nQ 59.7708 81.1451, 59.0294 81.9999\\nQ 58.2879 82.846, 56.9359 82.846\\nQ 55.5752 82.846, 54.8338 81.9999\\nQ 54.1011 81.1538, 54.1011 79.6448\\nM 56.9359 82.1482\\nQ 57.878 82.1482, 58.3839 81.5202\\nQ 58.8985 80.8834, 58.8985 79.6448\\nQ 58.8985 78.4324, 58.3839 77.8218\\nQ 57.878 77.2025, 56.9359 77.2025\\nQ 55.9939 77.2025, 55.4793 77.813\\nQ 54.9733 78.4236, 54.9733 79.6448\\nQ 54.9733 80.8921, 55.4793 81.5202\\nQ 55.9939 82.1482, 56.9359 82.1482\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 60.5122 76.5744\\nL 61.3496 76.5744\\nL 61.3496 79.1999\\nL 64.5072 79.1999\\nL 64.5072 76.5744\\nL 65.3445 76.5744\\nL 65.3445 82.75\\nL 64.5072 82.75\\nL 64.5072 79.8978\\nL 61.3496 79.8978\\nL 61.3496 82.75\\nL 60.5122 82.75\\nL 60.5122 76.5744\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.7, "data-ID": 702, "mols2grid-id": 139, "mols2grid-tooltip": "<strong>Name</strong>: ketoprofen<br><strong>SMILES</strong>: O=C(c(cccc1C(C(=O)O)C)c1)c(cccc2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.7</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CNC(NCCSCc1ncnc1C)=NC#N", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.274,65.8326 L 125.695,66.4211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.695,66.4211 L 120.116,67.0097' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.749,70.0162 L 113.969,76.2555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.969,76.2555 L 111.19,82.4949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.19,82.4949 L 103.988,83.2621' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.988,83.2621 L 96.7872,84.0293' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 109.841,83.4792 L 115.099,87.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 115.099,87.8515 L 120.356,92.2237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 112.538,81.5106 L 115.099,87.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-2 atom-14' d='M 115.099,87.8515 L 117.659,94.1924' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 92.546,81.4828 L 88.6369,76.1256' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.6369,76.1256 L 84.7277,70.7685' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 84.7277,70.7685 L 68.1144,72.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.1144,72.5396 L 64.1571,67.1165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.1571,67.1165 L 60.1998,61.6934' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.3321,59.2494 L 48.993,60.0318' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 48.993,60.0318 L 41.6538,60.8143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 41.6538,60.8143 L 31.822,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 31.822,47.3413 L 33.9499,40.7918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 33.9499,40.7918 L 36.0779,34.2423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-8' d='M 15.1241,47.3413 L 31.822,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-8' d='M 17.6288,44.0017 L 29.3173,44.0017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 34.7709,29.8541 L 29.122,25.7498' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 29.122,25.7498 L 23.4731,21.6454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 23.4731,21.6454 L 17.8241,25.7498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 17.8241,25.7498 L 12.1752,29.8541' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 23.7414,25.5785 L 19.7872,28.4515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 19.7872,28.4515 L 15.8329,31.3246' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 10.8683,34.2423 L 12.9962,40.7918' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 12.9962,40.7918 L 15.1241,47.3413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 15.1241,47.3413 L 7.27273,58.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 123.249,95.7546 L 130.45,94.9874' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 130.45,94.9874 L 137.65,94.2202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 137.65,94.2202 L 143.228,93.6256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 143.228,93.6256 L 148.807,93.031' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 139.678,97.3626 L 144.419,96.8571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 144.419,96.8571 L 149.161,96.3517' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 138.97,90.721 L 143.711,90.2156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 143.711,90.2156 L 148.453,89.7102' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 111.941 64.8697\\nL 112.582 64.8697\\nL 112.582 66.8801\\nL 115 66.8801\\nL 115 64.8697\\nL 115.641 64.8697\\nL 115.641 69.5985\\nL 115 69.5985\\nL 115 67.4144\\nL 112.582 67.4144\\nL 112.582 69.5985\\nL 111.941 69.5985\\nL 111.941 64.8697\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 116.944 64.8697\\nL 118.493 67.3744\\nQ 118.647 67.6215, 118.894 68.069\\nQ 119.141 68.5165, 119.154 68.5432\\nL 119.154 64.8697\\nL 119.782 64.8697\\nL 119.782 69.5985\\nL 119.134 69.5985\\nL 117.471 66.8601\\nQ 117.278 66.5395, 117.071 66.1721\\nQ 116.87 65.8048, 116.81 65.6912\\nL 116.81 69.5985\\nL 116.196 69.5985\\nL 116.196 64.8697\\nL 116.944 64.8697\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 88.5282 81.9004\\nL 89.1694 81.9004\\nL 89.1694 83.9109\\nL 91.5872 83.9109\\nL 91.5872 81.9004\\nL 92.2284 81.9004\\nL 92.2284 86.6293\\nL 91.5872 86.6293\\nL 91.5872 84.4452\\nL 89.1694 84.4452\\nL 89.1694 86.6293\\nL 88.5282 86.6293\\nL 88.5282 81.9004\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 93.5309 81.9004\\nL 95.0805 84.4051\\nQ 95.2341 84.6523, 95.4812 85.0998\\nQ 95.7283 85.5473, 95.7417 85.574\\nL 95.7417 81.9004\\nL 96.3695 81.9004\\nL 96.3695 86.6293\\nL 95.7217 86.6293\\nL 94.0585 83.8908\\nQ 93.8648 83.5702, 93.6578 83.2029\\nQ 93.4574 82.8355, 93.3973 82.722\\nL 93.3973 86.6293\\nL 92.7828 86.6293\\nL 92.7828 81.9004\\nL 93.5309 81.9004\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 56.9301 60.6662\\nQ 56.9836 60.6863, 57.204 60.7798\\nQ 57.4244 60.8733, 57.6649 60.9334\\nQ 57.912 60.9868, 58.1524 60.9868\\nQ 58.5999 60.9868, 58.8604 60.7731\\nQ 59.1209 60.5527, 59.1209 60.172\\nQ 59.1209 59.9115, 58.9873 59.7512\\nQ 58.8604 59.5909, 58.66 59.5041\\nQ 58.4597 59.4172, 58.1257 59.3171\\nQ 57.7049 59.1902, 57.4511 59.0699\\nQ 57.204 58.9497, 57.0236 58.6959\\nQ 56.85 58.4421, 56.85 58.0146\\nQ 56.85 57.4202, 57.2507 57.0528\\nQ 57.6582 56.6855, 58.4597 56.6855\\nQ 59.0074 56.6855, 59.6285 56.9459\\nL 59.4749 57.4602\\nQ 58.9072 57.2265, 58.4797 57.2265\\nQ 58.0188 57.2265, 57.765 57.4202\\nQ 57.5112 57.6072, 57.5179 57.9345\\nQ 57.5179 58.1883, 57.6448 58.3419\\nQ 57.7784 58.4955, 57.9654 58.5823\\nQ 58.1591 58.6692, 58.4797 58.7694\\nQ 58.9072 58.9029, 59.161 59.0365\\nQ 59.4148 59.1701, 59.5951 59.444\\nQ 59.7821 59.7111, 59.7821 60.172\\nQ 59.7821 60.8265, 59.3413 61.1805\\nQ 58.9072 61.5279, 58.1791 61.5279\\nQ 57.7584 61.5279, 57.4378 61.4344\\nQ 57.1238 61.3475, 56.7498 61.1939\\nL 56.9301 60.6662\\n' fill='#CCCC00'/>\\n<path class='atom-9' d='M 35.9364 29.096\\nL 37.486 31.6007\\nQ 37.6396 31.8478, 37.8867 32.2954\\nQ 38.1338 32.7429, 38.1472 32.7696\\nL 38.1472 29.096\\nL 38.775 29.096\\nL 38.775 33.8249\\nL 38.1272 33.8249\\nL 36.464 31.0864\\nQ 36.2704 30.7658, 36.0633 30.3985\\nQ 35.8629 30.0311, 35.8028 29.9176\\nL 35.8028 33.8249\\nL 35.1883 33.8249\\nL 35.1883 29.096\\nL 35.9364 29.096\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 39.3428 29.096\\nL 39.984 29.096\\nL 39.984 31.1065\\nL 42.4018 31.1065\\nL 42.4018 29.096\\nL 43.043 29.096\\nL 43.043 33.8249\\nL 42.4018 33.8249\\nL 42.4018 31.6408\\nL 39.984 31.6408\\nL 39.984 33.8249\\nL 39.3428 33.8249\\nL 39.3428 29.096\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 8.91914 29.096\\nL 10.4687 31.6007\\nQ 10.6223 31.8478, 10.8695 32.2954\\nQ 11.1166 32.7429, 11.1299 32.7696\\nL 11.1299 29.096\\nL 11.7578 29.096\\nL 11.7578 33.8249\\nL 11.1099 33.8249\\nL 9.4468 31.0864\\nQ 9.2531 30.7658, 9.04605 30.3985\\nQ 8.84567 30.0311, 8.78556 29.9176\\nL 8.78556 33.8249\\nL 8.17108 33.8249\\nL 8.17108 29.096\\nL 8.91914 29.096\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 119.993 93.6257\\nL 121.542 96.1304\\nQ 121.696 96.3776, 121.943 96.8251\\nQ 122.19 97.2726, 122.203 97.2993\\nL 122.203 93.6257\\nL 122.831 93.6257\\nL 122.831 98.3546\\nL 122.183 98.3546\\nL 120.52 95.6161\\nQ 120.327 95.2955, 120.12 94.9282\\nQ 119.919 94.5608, 119.859 94.4473\\nL 119.859 98.3546\\nL 119.245 98.3546\\nL 119.245 93.6257\\nL 119.993 93.6257\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 149.889 90.4398\\nL 151.438 92.9445\\nQ 151.592 93.1916, 151.839 93.6391\\nQ 152.086 94.0866, 152.099 94.1133\\nL 152.099 90.4398\\nL 152.727 90.4398\\nL 152.727 95.1686\\nL 152.079 95.1686\\nL 150.416 92.4302\\nQ 150.223 92.1096, 150.016 91.7422\\nQ 149.815 91.3749, 149.755 91.2613\\nL 149.755 95.1686\\nL 149.141 95.1686\\nL 149.141 90.4398\\nL 149.889 90.4398\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.35, "data-ID": 707, "mols2grid-id": 140, "mols2grid-tooltip": "<strong>Name</strong>: cimetidine<br><strong>SMILES</strong>: CNC(NCCSCc1ncnc1C)=NC#N<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.35</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CN1C(=O)N(C)c2ncn(C)c2C1(=O)", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.4035,36.0631 L 32.6165,40.7809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.6165,40.7809 L 40.8294,45.4988' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.525,52.4518 L 44.525,64.492' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.525,64.492 L 44.525,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 69.9103,32.8143 L 59.1427,39.0951' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 59.1427,39.0951 L 48.3751,45.3758' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.0801,74.017 L 35.1949,78.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 35.1949,78.5465 L 27.3097,83.076' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 45.9698,79.0475 L 38.0846,83.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.0846,83.5771 L 30.1995,88.1066' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 44.525,76.5323 L 55.2926,82.813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 55.2926,82.813 L 66.0602,89.0938' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.9247,96.0272 L 69.9533,105.286' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.9533,105.286 L 69.9818,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 73.7528,89.0667 L 84.3482,82.7995' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 84.3482,82.7995 L 94.9436,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.9436,76.5323 L 106.775,80.3245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 106.775,80.3245 L 118.607,84.1167' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 94.9436,47.6216 L 94.9436,76.5323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 89.1422,51.9582 L 89.1422,72.1957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 125.908,80.5127 L 132.638,71.1189' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 132.638,71.1189 L 139.367,61.725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 123.21,74.3159 L 127.921,67.7402' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.921,67.7402 L 132.632,61.1645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 139.367,61.725 L 132.685,52.6759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 132.685,52.6759 L 126.003,43.6269' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 123.958,34.1196 L 126.766,25.4213' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 126.766,25.4213 L 129.575,16.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 118.607,40.0371 L 106.775,43.8294' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 106.775,43.8294 L 94.9436,47.6216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 94.9436,47.6216 L 69.9103,32.8143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 72.811,32.8232 L 72.8393,23.6511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 72.8393,23.6511 L 72.8676,14.479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 67.0095,32.8054 L 67.0378,23.6332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 67.0378,23.6332 L 67.0661,14.4611' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 42.7091 43.5141\\nL 45.401 47.8653\\nQ 45.6678 48.2946, 46.0972 49.072\\nQ 46.5265 49.8494, 46.5497 49.8958\\nL 46.5497 43.5141\\nL 47.6403 43.5141\\nL 47.6403 51.729\\nL 46.5149 51.729\\nL 43.6257 46.9718\\nQ 43.2892 46.4149, 42.9296 45.7767\\nQ 42.5815 45.1386, 42.477 44.9413\\nL 42.477 51.729\\nL 41.4096 51.729\\nL 41.4096 43.5141\\nL 42.7091 43.5141\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 20.6326 88.1139\\nQ 20.6326 86.1414, 21.6072 85.0392\\nQ 22.5818 83.9369, 24.4035 83.9369\\nQ 26.2252 83.9369, 27.1998 85.0392\\nQ 28.1745 86.1414, 28.1745 88.1139\\nQ 28.1745 90.1096, 27.1882 91.2467\\nQ 26.202 92.3722, 24.4035 92.3722\\nQ 22.5935 92.3722, 21.6072 91.2467\\nQ 20.6326 90.1213, 20.6326 88.1139\\nM 24.4035 91.444\\nQ 25.6566 91.444, 26.3296 90.6086\\nQ 27.0142 89.7616, 27.0142 88.1139\\nQ 27.0142 86.5011, 26.3296 85.6889\\nQ 25.6566 84.8651, 24.4035 84.8651\\nQ 23.1504 84.8651, 22.4658 85.6773\\nQ 21.7928 86.4895, 21.7928 88.1139\\nQ 21.7928 89.7732, 22.4658 90.6086\\nQ 23.1504 91.444, 24.4035 91.444\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 68.0944 87.2321\\nL 70.7863 91.5832\\nQ 71.0532 92.0125, 71.4825 92.7899\\nQ 71.9118 93.5673, 71.935 93.6137\\nL 71.935 87.2321\\nL 73.0257 87.2321\\nL 73.0257 95.447\\nL 71.9002 95.447\\nL 69.011 90.6898\\nQ 68.6746 90.1329, 68.3149 89.4947\\nQ 67.9668 88.8565, 67.8624 88.6593\\nL 67.8624 95.447\\nL 66.7949 95.447\\nL 66.7949 87.2321\\nL 68.0944 87.2321\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 120.629 81.2392\\nL 123.321 85.5903\\nQ 123.587 86.0196, 124.017 86.797\\nQ 124.446 87.5744, 124.469 87.6208\\nL 124.469 81.2392\\nL 125.56 81.2392\\nL 125.56 89.4541\\nL 124.434 89.4541\\nL 121.545 84.6969\\nQ 121.209 84.1399, 120.849 83.5018\\nQ 120.501 82.8636, 120.397 82.6664\\nL 120.397 89.4541\\nL 119.329 89.4541\\nL 119.329 81.2392\\nL 120.629 81.2392\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 120.629 34.6998\\nL 123.321 39.0509\\nQ 123.587 39.4802, 124.017 40.2576\\nQ 124.446 41.035, 124.469 41.0814\\nL 124.469 34.6998\\nL 125.56 34.6998\\nL 125.56 42.9147\\nL 124.434 42.9147\\nL 121.545 38.1575\\nQ 121.209 37.6005, 120.849 36.9623\\nQ 120.501 36.3242, 120.397 36.1269\\nL 120.397 42.9147\\nL 119.329 42.9147\\nL 119.329 34.6998\\nL 120.629 34.6998\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.2109 9.63161\\nQ 66.2109 7.65911, 67.1855 6.55683\\nQ 68.1602 5.45455, 69.9818 5.45455\\nQ 71.8035 5.45455, 72.7781 6.55683\\nQ 73.7528 7.65911, 73.7528 9.63161\\nQ 73.7528 11.6273, 72.7665 12.7644\\nQ 71.7803 13.8899, 69.9818 13.8899\\nQ 68.1718 13.8899, 67.1855 12.7644\\nQ 66.2109 11.6389, 66.2109 9.63161\\nM 69.9818 12.9617\\nQ 71.2349 12.9617, 71.9079 12.1262\\nQ 72.5925 11.2792, 72.5925 9.63161\\nQ 72.5925 8.0188, 71.9079 7.20659\\nQ 71.2349 6.38278, 69.9818 6.38278\\nQ 68.7287 6.38278, 68.0441 7.19499\\nQ 67.3712 8.00719, 67.3712 9.63161\\nQ 67.3712 11.2908, 68.0441 12.1262\\nQ 68.7287 12.9617, 69.9818 12.9617\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.97, "data-ID": 712, "mols2grid-id": 141, "mols2grid-tooltip": "<strong>Name</strong>: caffeine<br><strong>SMILES</strong>: CN1C(=O)N(C)c2ncn(C)c2C1(=O)<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.97</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.198,49.0758 L 123.004,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.004,42.6134 L 123.004,26.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-1' d='M 109.013,50.6914 L 123.004,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.004,26.4574 L 109.013,18.3794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.013,18.3794 L 109.013,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 109.013,18.3794 L 95.0219,26.4574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8296,25.0582 L 91.4444,22.5265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.4444,22.5265 L 87.0591,19.9949' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.2141,27.8566 L 89.8288,25.3249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.8288,25.3249 L 85.4436,22.7932' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 95.0219,26.4574 L 95.0219,42.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 95.0219,42.6134 L 109.013,50.6914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 95.0219,42.6134 L 81.0394,50.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 81.0394,50.7248 L 76.6487,48.2001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 76.6487,48.2001 L 72.258,45.6753' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 81.0394,50.7248 L 81.062,66.8895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 81.062,66.8895 L 67.0795,75.0009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 67.0795,75.0009 L 67.0784,91.1569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-12' d='M 53.0862,66.9239 L 67.0795,75.0009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 67.0784,91.1569 L 53.0873,99.236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 51.4717,99.2361 L 51.4721,104.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 51.4721,104.38 L 51.4725,109.524' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 54.7029,99.2359 L 54.7033,104.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 54.7033,104.38 L 54.7037,109.524' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 53.0873,99.236 L 47.1612,95.8145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 47.1612,95.8145 L 41.2352,92.393' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 39.096,88.4664 L 39.0955,81.7342' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 39.0955,81.7342 L 39.0951,75.002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 39.9029,73.6028 L 35.5182,71.0712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 35.5182,71.0712 L 31.1334,68.5396' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 38.2873,76.4011 L 33.9025,73.8695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 33.9025,73.8695 L 29.5178,71.3379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-19' d='M 39.0951,75.002 L 53.0862,66.9239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 81.7276 20.0079\\nQ 81.7276 18.9093, 82.2705 18.2954\\nQ 82.8133 17.6814, 83.8279 17.6814\\nQ 84.8425 17.6814, 85.3853 18.2954\\nQ 85.9282 18.9093, 85.9282 20.0079\\nQ 85.9282 21.1194, 85.3789 21.7527\\nQ 84.8296 22.3796, 83.8279 22.3796\\nQ 82.8198 22.3796, 82.2705 21.7527\\nQ 81.7276 21.1259, 81.7276 20.0079\\nM 83.8279 21.8626\\nQ 84.5258 21.8626, 84.9007 21.3973\\nQ 85.2819 20.9256, 85.2819 20.0079\\nQ 85.2819 19.1096, 84.9007 18.6573\\nQ 84.5258 18.1984, 83.8279 18.1984\\nQ 83.13 18.1984, 82.7487 18.6508\\nQ 82.3739 19.1032, 82.3739 20.0079\\nQ 82.3739 20.932, 82.7487 21.3973\\nQ 83.13 21.8626, 83.8279 21.8626\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 63.831 42.02\\nL 64.4514 42.02\\nL 64.4514 43.9651\\nL 66.7908 43.9651\\nL 66.7908 42.02\\nL 67.4112 42.02\\nL 67.4112 46.5953\\nL 66.7908 46.5953\\nL 66.7908 44.4821\\nL 64.4514 44.4821\\nL 64.4514 46.5953\\nL 63.831 46.5953\\nL 63.831 42.02\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 67.7343 44.2947\\nQ 67.7343 43.1961, 68.2772 42.5822\\nQ 68.82 41.9683, 69.8346 41.9683\\nQ 70.8492 41.9683, 71.3921 42.5822\\nQ 71.9349 43.1961, 71.9349 44.2947\\nQ 71.9349 45.4063, 71.3856 46.0396\\nQ 70.8363 46.6664, 69.8346 46.6664\\nQ 68.8265 46.6664, 68.2772 46.0396\\nQ 67.7343 45.4127, 67.7343 44.2947\\nM 69.8346 46.1494\\nQ 70.5326 46.1494, 70.9074 45.6841\\nQ 71.2887 45.2124, 71.2887 44.2947\\nQ 71.2887 43.3964, 70.9074 42.9441\\nQ 70.5326 42.4852, 69.8346 42.4852\\nQ 69.1367 42.4852, 68.7554 42.9376\\nQ 68.3806 43.39, 68.3806 44.2947\\nQ 68.3806 45.2188, 68.7554 45.6841\\nQ 69.1367 46.1494, 69.8346 46.1494\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 50.9881 112.174\\nQ 50.9881 111.075, 51.5309 110.461\\nQ 52.0738 109.847, 53.0884 109.847\\nQ 54.103 109.847, 54.6458 110.461\\nQ 55.1886 111.075, 55.1886 112.174\\nQ 55.1886 113.285, 54.6393 113.919\\nQ 54.09 114.545, 53.0884 114.545\\nQ 52.0802 114.545, 51.5309 113.919\\nQ 50.9881 113.292, 50.9881 112.174\\nM 53.0884 114.028\\nQ 53.7863 114.028, 54.1611 113.563\\nQ 54.5424 113.091, 54.5424 112.174\\nQ 54.5424 111.275, 54.1611 110.823\\nQ 53.7863 110.364, 53.0884 110.364\\nQ 52.3904 110.364, 52.0091 110.817\\nQ 51.6343 111.269, 51.6343 112.174\\nQ 51.6343 113.098, 52.0091 113.563\\nQ 52.3904 114.028, 53.0884 114.028\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 33.2444 88.8703\\nL 33.8648 88.8703\\nL 33.8648 90.8155\\nL 36.2042 90.8155\\nL 36.2042 88.8703\\nL 36.8246 88.8703\\nL 36.8246 93.4457\\nL 36.2042 93.4457\\nL 36.2042 91.3325\\nL 33.8648 91.3325\\nL 33.8648 93.4457\\nL 33.2444 93.4457\\nL 33.2444 88.8703\\n' fill='#0000FF'/>\\n<path class='atom-16' d='M 38.0848 88.8703\\nL 39.5841 91.2937\\nQ 39.7327 91.5328, 39.9718 91.9658\\nQ 40.2109 92.3988, 40.2239 92.4246\\nL 40.2239 88.8703\\nL 40.8313 88.8703\\nL 40.8313 93.4457\\nL 40.2045 93.4457\\nL 38.5953 90.7961\\nQ 38.4079 90.4859, 38.2076 90.1305\\nQ 38.0137 89.775, 37.9555 89.6652\\nL 37.9555 93.4457\\nL 37.361 93.4457\\nL 37.361 88.8703\\nL 38.0848 88.8703\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 25.8019 68.5525\\nQ 25.8019 67.4539, 26.3447 66.8399\\nQ 26.8876 66.226, 27.9022 66.226\\nQ 28.9168 66.226, 29.4596 66.8399\\nQ 30.0025 67.4539, 30.0025 68.5525\\nQ 30.0025 69.664, 29.4532 70.2973\\nQ 28.9039 70.9242, 27.9022 70.9242\\nQ 26.894 70.9242, 26.3447 70.2973\\nQ 25.8019 69.6705, 25.8019 68.5525\\nM 27.9022 70.4072\\nQ 28.6001 70.4072, 28.9749 69.9419\\nQ 29.3562 69.4701, 29.3562 68.5525\\nQ 29.3562 67.6542, 28.9749 67.2018\\nQ 28.6001 66.743, 27.9022 66.743\\nQ 27.2042 66.743, 26.823 67.1954\\nQ 26.4481 67.6477, 26.4481 68.5525\\nQ 26.4481 69.4766, 26.823 69.9419\\nQ 27.2042 70.4072, 27.9022 70.4072\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.13, "data-ID": 717, "mols2grid-id": 142, "mols2grid-tooltip": "<strong>Name</strong>: cycloheximide<br><strong>SMILES</strong>: CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.13</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N(CCNC1)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.46,72.5025 L 112.46,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.46,56.8762 L 112.46,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-0 atom-5' d='M 107.495,81.6166 L 93.74,89.5583' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-0 atom-5' d='M 93.74,89.5583 L 79.985,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.46,41.25 L 79.985,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.985,22.5 L 66.23,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.23,30.4417 L 52.475,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.51,47.4975 L 47.51,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 47.51,63.1237 L 47.51,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-4' d='M 79.985,97.5 L 47.51,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.113 73.44\\nL 113.593 79.065\\nQ 113.938 79.62, 114.493 80.625\\nQ 115.048 81.63, 115.078 81.69\\nL 115.078 73.44\\nL 116.488 73.44\\nL 116.488 84.06\\nL 115.033 84.06\\nL 111.298 77.91\\nQ 110.863 77.19, 110.398 76.365\\nQ 109.948 75.54, 109.813 75.285\\nL 109.813 84.06\\nL 108.433 84.06\\nL 108.433 73.44\\nL 110.113 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.763 73.44\\nL 119.203 73.44\\nL 119.203 77.955\\nL 124.633 77.955\\nL 124.633 73.44\\nL 126.073 73.44\\nL 126.073 84.06\\nL 124.633 84.06\\nL 124.633 79.155\\nL 119.203 79.155\\nL 119.203 84.06\\nL 117.763 84.06\\nL 117.763 73.44\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 33.9275 35.94\\nL 35.3675 35.94\\nL 35.3675 40.455\\nL 40.7975 40.455\\nL 40.7975 35.94\\nL 42.2375 35.94\\nL 42.2375 46.56\\nL 40.7975 46.56\\nL 40.7975 41.655\\nL 35.3675 41.655\\nL 35.3675 46.56\\nL 33.9275 46.56\\nL 33.9275 35.94\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 45.1625 35.94\\nL 48.6425 41.565\\nQ 48.9875 42.12, 49.5425 43.125\\nQ 50.0975 44.13, 50.1275 44.19\\nL 50.1275 35.94\\nL 51.5375 35.94\\nL 51.5375 46.56\\nL 50.0825 46.56\\nL 46.3475 40.41\\nQ 45.9125 39.69, 45.4475 38.865\\nQ 44.9975 38.04, 44.8625 37.785\\nL 44.8625 46.56\\nL 43.4825 46.56\\nL 43.4825 35.94\\nL 45.1625 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 1.07, "data-ID": 722, "mols2grid-id": 143, "mols2grid-tooltip": "<strong>Name</strong>: piperazine<br><strong>SMILES</strong>: N(CCNC1)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.07</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(NCC1=O)N1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.868,89.8971 L 118.274,80.8221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.274,80.8221 L 111.681,71.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.8,94.3054 L 112.207,85.2304' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.207,85.2304 L 105.614,76.1554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.647,73.9513 L 113.426,59.2425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 113.426,59.2425 L 118.205,44.5338' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 108.647,73.9513 L 92.38,73.9513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 92.38,73.9513 L 76.1125,73.9513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.27,34.6788 L 102.584,25.4613' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.584,25.4613 L 89.8975,16.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.8975,16.2438 L 59.56,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.7187,34.7198 L 49.265,30.9985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.265,30.9985 L 37.8112,27.2773' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.4013,41.8527 L 46.9475,38.1315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 46.9475,38.1315 L 35.4938,34.4103' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 69.1177,67.7037 L 64.3388,52.995' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 64.3388,52.995 L 59.56,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 121.405 98.2513\\nQ 121.405 95.7013, 122.665 94.2763\\nQ 123.925 92.8513, 126.28 92.8513\\nQ 128.635 92.8513, 129.895 94.2763\\nQ 131.155 95.7013, 131.155 98.2513\\nQ 131.155 100.831, 129.88 102.301\\nQ 128.605 103.756, 126.28 103.756\\nQ 123.94 103.756, 122.665 102.301\\nQ 121.405 100.846, 121.405 98.2513\\nM 126.28 102.556\\nQ 127.9 102.556, 128.77 101.476\\nQ 129.655 100.381, 129.655 98.2513\\nQ 129.655 96.1663, 128.77 95.1163\\nQ 127.9 94.0513, 126.28 94.0513\\nQ 124.66 94.0513, 123.775 95.1013\\nQ 122.905 96.1513, 122.905 98.2513\\nQ 122.905 100.396, 123.775 101.476\\nQ 124.66 102.556, 126.28 102.556\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 117.888 32.9763\\nL 121.368 38.6013\\nQ 121.713 39.1563, 122.268 40.1613\\nQ 122.823 41.1663, 122.853 41.2263\\nL 122.853 32.9763\\nL 124.263 32.9763\\nL 124.263 43.5963\\nL 122.808 43.5963\\nL 119.073 37.4463\\nQ 118.638 36.7263, 118.172 35.9013\\nQ 117.723 35.0763, 117.588 34.8213\\nL 117.588 43.5963\\nL 116.208 43.5963\\nL 116.208 32.9763\\nL 117.888 32.9763\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.538 32.9763\\nL 126.978 32.9763\\nL 126.978 37.4913\\nL 132.407 37.4913\\nL 132.407 32.9763\\nL 133.847 32.9763\\nL 133.847 43.5963\\nL 132.407 43.5963\\nL 132.407 38.6913\\nL 126.978 38.6913\\nL 126.978 43.5963\\nL 125.538 43.5963\\nL 125.538 32.9763\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 26.1525 29.0463\\nQ 26.1525 26.4963, 27.4125 25.0713\\nQ 28.6725 23.6463, 31.0275 23.6463\\nQ 33.3825 23.6463, 34.6425 25.0713\\nQ 35.9025 26.4963, 35.9025 29.0463\\nQ 35.9025 31.6263, 34.6275 33.0963\\nQ 33.3525 34.5513, 31.0275 34.5513\\nQ 28.6875 34.5513, 27.4125 33.0963\\nQ 26.1525 31.6413, 26.1525 29.0463\\nM 31.0275 33.3513\\nQ 32.6475 33.3513, 33.5175 32.2713\\nQ 34.4025 31.1763, 34.4025 29.0463\\nQ 34.4025 26.9613, 33.5175 25.9113\\nQ 32.6475 24.8463, 31.0275 24.8463\\nQ 29.4075 24.8463, 28.5225 25.8963\\nQ 27.6525 26.9463, 27.6525 29.0463\\nQ 27.6525 31.1913, 28.5225 32.2713\\nQ 29.4075 33.3513, 31.0275 33.3513\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 57.565 68.6413\\nL 59.005 68.6413\\nL 59.005 73.1563\\nL 64.435 73.1563\\nL 64.435 68.6413\\nL 65.875 68.6413\\nL 65.875 79.2613\\nL 64.435 79.2613\\nL 64.435 74.3563\\nL 59.005 74.3563\\nL 59.005 79.2613\\nL 57.565 79.2613\\nL 57.565 68.6413\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 68.8 68.6413\\nL 72.28 74.2663\\nQ 72.625 74.8213, 73.18 75.8263\\nQ 73.735 76.8313, 73.765 76.8913\\nL 73.765 68.6413\\nL 75.175 68.6413\\nL 75.175 79.2613\\nL 73.72 79.2613\\nL 69.985 73.1113\\nQ 69.55 72.3913, 69.085 71.5663\\nQ 68.635 70.7413, 68.5 70.4863\\nL 68.5 79.2613\\nL 67.12 79.2613\\nL 67.12 68.6413\\nL 68.8 68.6413\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -0.4, "data-ID": 727, "mols2grid-id": 144, "mols2grid-tooltip": "<strong>Name</strong>: hydantoin<br><strong>SMILES</strong>: O=C(NCC1=O)N1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.4</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C1CCCN1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.533,89.8971 L 105.939,80.8221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.939,80.8221 L 99.3464,71.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.465,94.3054 L 99.8718,85.2304' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.8718,85.2304 L 93.2786,76.1554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.3125,73.9513 L 107.9,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 63.7775,73.9513 L 80.045,73.9513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 80.045,73.9513 L 96.3125,73.9513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.9,38.2863 L 77.5625,16.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.5625,16.2438 L 47.225,38.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.225,38.2863 L 52.0038,52.995' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.0038,52.995 L 56.7827,67.7037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 54.4098,80.0112 L 47.7949,89.1162' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 47.7949,89.1162 L 41.18,98.2213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 109.07 98.2513\\nQ 109.07 95.7013, 110.33 94.2763\\nQ 111.59 92.8513, 113.945 92.8513\\nQ 116.3 92.8513, 117.56 94.2763\\nQ 118.82 95.7013, 118.82 98.2513\\nQ 118.82 100.831, 117.545 102.301\\nQ 116.27 103.756, 113.945 103.756\\nQ 111.605 103.756, 110.33 102.301\\nQ 109.07 100.846, 109.07 98.2513\\nM 113.945 102.556\\nQ 115.565 102.556, 116.435 101.476\\nQ 117.32 100.381, 117.32 98.2513\\nQ 117.32 96.1663, 116.435 95.1163\\nQ 115.565 94.0513, 113.945 94.0513\\nQ 112.325 94.0513, 111.44 95.1013\\nQ 110.57 96.1513, 110.57 98.2513\\nQ 110.57 100.396, 111.44 101.476\\nQ 112.325 102.556, 113.945 102.556\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 56.465 68.6413\\nL 59.945 74.2663\\nQ 60.29 74.8213, 60.845 75.8263\\nQ 61.4 76.8313, 61.43 76.8913\\nL 61.43 68.6413\\nL 62.84 68.6413\\nL 62.84 79.2613\\nL 61.385 79.2613\\nL 57.65 73.1113\\nQ 57.215 72.3913, 56.75 71.5663\\nQ 56.3 70.7413, 56.165 70.4863\\nL 56.165 79.2613\\nL 54.785 79.2613\\nL 54.785 68.6413\\nL 56.465 68.6413\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 1.0, "data-ID": 732, "mols2grid-id": 145, "mols2grid-tooltip": "<strong>Name</strong>: N-methylpyrrolidone<br><strong>SMILES</strong>: O=C1CCCN1C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.0</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cccc(N)c1O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.149,60.9697 L 134.149,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.747,55.4182 L 126.747,29.5111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 102.099,79.4747 L 134.149,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.149,23.9596 L 102.099,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.099,5.45455 L 70.0479,23.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.992,14.6406 L 78.5566,27.5941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.0479,23.9596 L 70.0479,60.9697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.0479,60.9697 L 59.5839,67.0106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.5839,67.0106 L 49.12,73.0516' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 70.0479,60.9697 L 102.099,79.4747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 78.5566,57.3351 L 100.992,70.2887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 102.099,79.4747 L 102.099,91.2587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 102.099,91.2587 L 102.099,103.043' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 25.8507 70.5331\\nL 27.2718 70.5331\\nL 27.2718 74.9891\\nL 32.6309 74.9891\\nL 32.6309 70.5331\\nL 34.0521 70.5331\\nL 34.0521 81.0143\\nL 32.6309 81.0143\\nL 32.6309 76.1734\\nL 27.2718 76.1734\\nL 27.2718 81.0143\\nL 25.8507 81.0143\\nL 25.8507 70.5331\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 34.5602 80.6466\\nQ 34.8142 79.992, 35.42 79.6304\\nQ 36.0258 79.2592, 36.866 79.2592\\nQ 37.9115 79.2592, 38.4977 79.8259\\nQ 39.084 80.3926, 39.084 81.3989\\nQ 39.084 82.4249, 38.3219 83.3824\\nQ 37.5695 84.3399, 36.0062 85.4733\\nL 39.2012 85.4733\\nL 39.2012 86.255\\nL 34.5406 86.255\\nL 34.5406 85.6003\\nQ 35.8303 84.6819, 36.5925 83.9979\\nQ 37.3643 83.314, 37.7356 82.6984\\nQ 38.1069 82.0829, 38.1069 81.4478\\nQ 38.1069 80.7834, 37.7747 80.4121\\nQ 37.4425 80.0408, 36.866 80.0408\\nQ 36.3091 80.0408, 35.9378 80.2655\\nQ 35.5665 80.4903, 35.3027 80.9886\\nL 34.5602 80.6466\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 42.088 70.5331\\nL 45.5225 76.0846\\nQ 45.863 76.6323, 46.4108 77.6242\\nQ 46.9585 78.6161, 46.9881 78.6753\\nL 46.9881 70.5331\\nL 48.3797 70.5331\\nL 48.3797 81.0143\\nL 46.9437 81.0143\\nL 43.2575 74.9447\\nQ 42.8282 74.2341, 42.3693 73.4199\\nQ 41.9252 72.6056, 41.7919 72.354\\nL 41.7919 81.0143\\nL 40.43 81.0143\\nL 40.43 70.5331\\nL 42.088 70.5331\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 97.2873 109.112\\nQ 97.2873 106.596, 98.5308 105.189\\nQ 99.7744 103.783, 102.099 103.783\\nQ 104.423 103.783, 105.666 105.189\\nQ 106.91 106.596, 106.91 109.112\\nQ 106.91 111.659, 105.652 113.109\\nQ 104.393 114.545, 102.099 114.545\\nQ 99.7892 114.545, 98.5308 113.109\\nQ 97.2873 111.673, 97.2873 109.112\\nM 102.099 113.361\\nQ 103.697 113.361, 104.556 112.295\\nQ 105.43 111.215, 105.43 109.112\\nQ 105.43 107.055, 104.556 106.018\\nQ 103.697 104.967, 102.099 104.967\\nQ 100.5 104.967, 99.6263 106.004\\nQ 98.7677 107.04, 98.7677 109.112\\nQ 98.7677 111.229, 99.6263 112.295\\nQ 100.5 113.361, 102.099 113.361\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 108.168 103.901\\nL 109.589 103.901\\nL 109.589 108.357\\nL 114.949 108.357\\nL 114.949 103.901\\nL 116.37 103.901\\nL 116.37 114.383\\nL 114.949 114.383\\nL 114.949 109.542\\nL 109.589 109.542\\nL 109.589 114.383\\nL 108.168 114.383\\nL 108.168 103.901\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.72, "data-ID": 737, "mols2grid-id": 146, "mols2grid-tooltip": "<strong>Name</strong>: 2-aminophenol<br><strong>SMILES</strong>: c1cccc(N)c1O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.72</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCC)N", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 31.4516,80.5077 L 41.6316,74.6342' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 41.6316,74.6342 L 51.8116,68.7606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.7034,74.0114 L 37.8834,68.1379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 37.8834,68.1379 L 48.0634,62.2644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 49.9375,65.5125 L 63.281,73.2107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 63.281,73.2107 L 76.6245,80.9088' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 49.9375,65.5125 L 49.9375,53.5425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 49.9375,53.5425 L 49.9375,41.5725' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 88.2505,80.9088 L 101.594,73.2107' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 101.594,73.2107 L 114.937,65.5125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.937,65.5125 L 140.922,80.505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 19.0775 80.535\\nQ 19.0775 77.985, 20.3375 76.56\\nQ 21.5975 75.135, 23.9525 75.135\\nQ 26.3075 75.135, 27.5675 76.56\\nQ 28.8275 77.985, 28.8275 80.535\\nQ 28.8275 83.115, 27.5525 84.585\\nQ 26.2775 86.04, 23.9525 86.04\\nQ 21.6125 86.04, 20.3375 84.585\\nQ 19.0775 83.13, 19.0775 80.535\\nM 23.9525 84.84\\nQ 25.5725 84.84, 26.4425 83.76\\nQ 27.3275 82.665, 27.3275 80.535\\nQ 27.3275 78.45, 26.4425 77.4\\nQ 25.5725 76.335, 23.9525 76.335\\nQ 22.3325 76.335, 21.4475 77.385\\nQ 20.5775 78.435, 20.5775 80.535\\nQ 20.5775 82.68, 21.4475 83.76\\nQ 22.3325 84.84, 23.9525 84.84\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 77.5625 84.2925\\nQ 77.5625 81.7425, 78.8225 80.3175\\nQ 80.0825 78.8925, 82.4375 78.8925\\nQ 84.7925 78.8925, 86.0525 80.3175\\nQ 87.3125 81.7425, 87.3125 84.2925\\nQ 87.3125 86.8725, 86.0375 88.3425\\nQ 84.7625 89.7975, 82.4375 89.7975\\nQ 80.0975 89.7975, 78.8225 88.3425\\nQ 77.5625 86.8875, 77.5625 84.2925\\nM 82.4375 88.5975\\nQ 84.0575 88.5975, 84.9275 87.5175\\nQ 85.8125 86.4225, 85.8125 84.2925\\nQ 85.8125 82.2075, 84.9275 81.1575\\nQ 84.0575 80.0925, 82.4375 80.0925\\nQ 80.8175 80.0925, 79.9325 81.1425\\nQ 79.0625 82.1925, 79.0625 84.2925\\nQ 79.0625 86.4375, 79.9325 87.5175\\nQ 80.8175 88.5975, 82.4375 88.5975\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 47.59 30.2025\\nL 51.07 35.8275\\nQ 51.415 36.3825, 51.97 37.3875\\nQ 52.525 38.3925, 52.555 38.4525\\nL 52.555 30.2025\\nL 53.965 30.2025\\nL 53.965 40.8225\\nL 52.51 40.8225\\nL 48.775 34.6725\\nQ 48.34 33.9525, 47.875 33.1275\\nQ 47.425 32.3025, 47.29 32.0475\\nL 47.29 40.8225\\nL 45.91 40.8225\\nL 45.91 30.2025\\nL 47.59 30.2025\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 55.24 30.2025\\nL 56.68 30.2025\\nL 56.68 34.7175\\nL 62.11 34.7175\\nL 62.11 30.2025\\nL 63.55 30.2025\\nL 63.55 40.8225\\nL 62.11 40.8225\\nL 62.11 35.9175\\nL 56.68 35.9175\\nL 56.68 40.8225\\nL 55.24 40.8225\\nL 55.24 30.2025\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 64.0648 40.4499\\nQ 64.3222 39.7866, 64.936 39.4203\\nQ 65.5498 39.0441, 66.4012 39.0441\\nQ 67.4605 39.0441, 68.0545 39.6183\\nQ 68.6485 40.1925, 68.6485 41.2122\\nQ 68.6485 42.2517, 67.8763 43.2219\\nQ 67.114 44.1921, 65.53 45.3405\\nL 68.7673 45.3405\\nL 68.7673 46.1325\\nL 64.045 46.1325\\nL 64.045 45.4692\\nQ 65.3518 44.5386, 66.124 43.8456\\nQ 66.9061 43.1526, 67.2823 42.5289\\nQ 67.6585 41.9052, 67.6585 41.2617\\nQ 67.6585 40.5885, 67.3219 40.2123\\nQ 66.9853 39.8361, 66.4012 39.8361\\nQ 65.8369 39.8361, 65.4607 40.0638\\nQ 65.0845 40.2915, 64.8172 40.7964\\nL 64.0648 40.4499\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.85, "data-ID": 742, "mols2grid-id": 147, "mols2grid-tooltip": "<strong>Name</strong>: O-ethyl_carbamate<br><strong>SMILES</strong>: O=C(OCC)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.85</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(Oc(c(c(ccc1)cc2)c1)c2)NC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.513,74.428 L 114.473,77.9293' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 114.473,77.9293 L 108.432,81.4307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.748,78.2838 L 116.708,81.7851' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.708,81.7851 L 110.667,85.2865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.55,83.3586 L 101.615,78.792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.615,78.792 L 93.6796,74.2254' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 109.55,83.3586 L 109.569,92.65' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 109.569,92.65 L 109.588,101.941' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.2175,68.4891 L 90.1984,59.2155' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.1984,59.2155 L 90.1792,49.9419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.1792,49.9419 L 70.9201,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.5192,44.4141 L 76.0379,36.6283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 90.1792,49.9419 L 109.44,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.9201,38.8193 L 70.9201,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 70.9201,38.8193 L 51.661,49.9419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.9201,16.5771 L 51.661,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 70.9201,16.5771 L 90.1792,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 76.0379,18.7681 L 89.5192,10.9823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.661,5.45455 L 32.13,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 50.9368,10.9957 L 37.2652,18.7815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.13,16.5771 L 32.13,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 51.661,49.9419 L 32.13,38.8193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 50.9368,44.4007 L 37.2652,36.6149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 90.1792,5.45455 L 109.44,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 109.44,38.8193 L 109.44,16.5771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 104.983,35.483 L 104.983,19.9134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 112.435,107.288 L 118.741,110.917' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 118.741,110.917 L 125.047,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 122.076 74.4362\\nQ 122.076 72.9209, 122.825 72.0741\\nQ 123.574 71.2273, 124.973 71.2273\\nQ 126.373 71.2273, 127.121 72.0741\\nQ 127.87 72.9209, 127.87 74.4362\\nQ 127.87 75.9693, 127.112 76.8428\\nQ 126.355 77.7074, 124.973 77.7074\\nQ 123.583 77.7074, 122.825 76.8428\\nQ 122.076 75.9782, 122.076 74.4362\\nM 124.973 76.9943\\nQ 125.936 76.9943, 126.453 76.3526\\nQ 126.979 75.7019, 126.979 74.4362\\nQ 126.979 73.1972, 126.453 72.5732\\nQ 125.936 71.9404, 124.973 71.9404\\nQ 124.01 71.9404, 123.485 72.5643\\nQ 122.968 73.1883, 122.968 74.4362\\nQ 122.968 75.7108, 123.485 76.3526\\nQ 124.01 76.9943, 124.973 76.9943\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 87.3284 72.2553\\nQ 87.3284 70.74, 88.0771 69.8932\\nQ 88.8259 69.0465, 90.2253 69.0465\\nQ 91.6247 69.0465, 92.3734 69.8932\\nQ 93.1222 70.74, 93.1222 72.2553\\nQ 93.1222 73.7885, 92.3645 74.662\\nQ 91.6069 75.5266, 90.2253 75.5266\\nQ 88.8348 75.5266, 88.0771 74.662\\nQ 87.3284 73.7974, 87.3284 72.2553\\nM 90.2253 74.8135\\nQ 91.1879 74.8135, 91.7049 74.1717\\nQ 92.2308 73.521, 92.2308 72.2553\\nQ 92.2308 71.0164, 91.7049 70.3924\\nQ 91.1879 69.7595, 90.2253 69.7595\\nQ 89.2626 69.7595, 88.7367 70.3835\\nQ 88.2197 71.0074, 88.2197 72.2553\\nQ 88.2197 73.53, 88.7367 74.1717\\nQ 89.2626 74.8135, 90.2253 74.8135\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 101.525 102.499\\nL 102.38 102.499\\nL 102.38 105.182\\nL 105.607 105.182\\nL 105.607 102.499\\nL 106.463 102.499\\nL 106.463 108.81\\nL 105.607 108.81\\nL 105.607 105.895\\nL 102.38 105.895\\nL 102.38 108.81\\nL 101.525 108.81\\nL 101.525 102.499\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 108.201 102.499\\nL 110.269 105.841\\nQ 110.474 106.171, 110.804 106.768\\nQ 111.133 107.366, 111.151 107.401\\nL 111.151 102.499\\nL 111.989 102.499\\nL 111.989 108.81\\nL 111.124 108.81\\nL 108.905 105.155\\nQ 108.647 104.727, 108.37 104.237\\nQ 108.103 103.747, 108.023 103.595\\nL 108.023 108.81\\nL 107.203 108.81\\nL 107.203 102.499\\nL 108.201 102.499\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -3.28, "data-ID": 747, "mols2grid-id": 148, "mols2grid-tooltip": "<strong>Name</strong>: carbaryl<br><strong>SMILES</strong>: O=C(Oc(c(c(ccc1)cc2)c1)c2)NC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.28</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(NC)N", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.7016,74.7792 L 57.8816,68.9057' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 57.8816,68.9057 L 68.0616,63.0321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 43.9534,68.2829 L 54.1334,62.4094' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.1334,62.4094 L 64.3134,56.5359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,59.784 L 79.9547,67.7266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.9547,67.7266 L 93.722,75.6693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 66.1875,59.784 L 66.1875,47.814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 66.1875,47.814 L 66.1875,35.844' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.465,75.7775 L 114.069,69.6595' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.069,69.6595 L 124.673,63.5415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 35.3275 74.8065\\nQ 35.3275 72.2565, 36.5875 70.8315\\nQ 37.8475 69.4065, 40.2025 69.4065\\nQ 42.5575 69.4065, 43.8175 70.8315\\nQ 45.0775 72.2565, 45.0775 74.8065\\nQ 45.0775 77.3865, 43.8025 78.8565\\nQ 42.5275 80.3115, 40.2025 80.3115\\nQ 37.8625 80.3115, 36.5875 78.8565\\nQ 35.3275 77.4015, 35.3275 74.8065\\nM 40.2025 79.1115\\nQ 41.8225 79.1115, 42.6925 78.0315\\nQ 43.5775 76.9365, 43.5775 74.8065\\nQ 43.5775 72.7215, 42.6925 71.6715\\nQ 41.8225 70.6065, 40.2025 70.6065\\nQ 38.5825 70.6065, 37.6975 71.6565\\nQ 36.8275 72.7065, 36.8275 74.8065\\nQ 36.8275 76.9515, 37.6975 78.0315\\nQ 38.5825 79.1115, 40.2025 79.1115\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 96.34 73.224\\nL 99.82 78.849\\nQ 100.165 79.404, 100.72 80.409\\nQ 101.275 81.414, 101.305 81.474\\nL 101.305 73.224\\nL 102.715 73.224\\nL 102.715 83.844\\nL 101.26 83.844\\nL 97.525 77.694\\nQ 97.09 76.974, 96.625 76.149\\nQ 96.175 75.324, 96.04 75.069\\nL 96.04 83.844\\nL 94.66 83.844\\nL 94.66 73.224\\nL 96.34 73.224\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 94.5325 84.906\\nL 95.9725 84.906\\nL 95.9725 89.421\\nL 101.402 89.421\\nL 101.402 84.906\\nL 102.843 84.906\\nL 102.843 95.526\\nL 101.402 95.526\\nL 101.402 90.621\\nL 95.9725 90.621\\nL 95.9725 95.526\\nL 94.5325 95.526\\nL 94.5325 84.906\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 63.84 24.474\\nL 67.32 30.099\\nQ 67.665 30.654, 68.22 31.659\\nQ 68.775 32.664, 68.805 32.724\\nL 68.805 24.474\\nL 70.215 24.474\\nL 70.215 35.094\\nL 68.76 35.094\\nL 65.025 28.944\\nQ 64.59 28.224, 64.125 27.399\\nQ 63.675 26.574, 63.54 26.319\\nL 63.54 35.094\\nL 62.16 35.094\\nL 62.16 24.474\\nL 63.84 24.474\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 71.49 24.474\\nL 72.93 24.474\\nL 72.93 28.989\\nL 78.36 28.989\\nL 78.36 24.474\\nL 79.8 24.474\\nL 79.8 35.094\\nL 78.36 35.094\\nL 78.36 30.189\\nL 72.93 30.189\\nL 72.93 35.094\\nL 71.49 35.094\\nL 71.49 24.474\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 80.3148 34.7214\\nQ 80.5722 34.0581, 81.186 33.6918\\nQ 81.7998 33.3156, 82.6512 33.3156\\nQ 83.7105 33.3156, 84.3045 33.8898\\nQ 84.8985 34.464, 84.8985 35.4837\\nQ 84.8985 36.5232, 84.1263 37.4934\\nQ 83.364 38.4636, 81.78 39.612\\nL 85.0173 39.612\\nL 85.0173 40.404\\nL 80.295 40.404\\nL 80.295 39.7407\\nQ 81.6018 38.8101, 82.374 38.1171\\nQ 83.1561 37.4241, 83.5323 36.8004\\nQ 83.9085 36.1767, 83.9085 35.5332\\nQ 83.9085 34.86, 83.5719 34.4838\\nQ 83.2353 34.1076, 82.6512 34.1076\\nQ 82.0869 34.1076, 81.7107 34.3353\\nQ 81.3345 34.563, 81.0672 35.0679\\nL 80.3148 34.7214\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 1.13, "data-ID": 752, "mols2grid-id": 149, "mols2grid-tooltip": "<strong>Name</strong>: N-methylurea<br><strong>SMILES</strong>: O=C(NC)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.13</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(N)C=C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.7016,82.3864 L 57.8816,76.5129' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 57.8816,76.5129 L 68.0616,70.6394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 43.9534,75.8902 L 54.1334,70.0166' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.1334,70.0166 L 64.3134,64.1431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,67.3912 L 66.1875,55.4213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1875,55.4213 L 66.1875,43.4513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 66.1875,67.3912 L 98.6875,86.1412' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.562,89.3894 L 126.547,74.3969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.8134,82.8931 L 122.798,67.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 35.3275 82.4138\\nQ 35.3275 79.8638, 36.5875 78.4388\\nQ 37.8475 77.0138, 40.2025 77.0138\\nQ 42.5575 77.0138, 43.8175 78.4388\\nQ 45.0775 79.8638, 45.0775 82.4138\\nQ 45.0775 84.9938, 43.8025 86.4638\\nQ 42.5275 87.9188, 40.2025 87.9188\\nQ 37.8625 87.9188, 36.5875 86.4638\\nQ 35.3275 85.0088, 35.3275 82.4138\\nM 40.2025 86.7188\\nQ 41.8225 86.7188, 42.6925 85.6388\\nQ 43.5775 84.5438, 43.5775 82.4138\\nQ 43.5775 80.3288, 42.6925 79.2788\\nQ 41.8225 78.2138, 40.2025 78.2138\\nQ 38.5825 78.2138, 37.6975 79.2638\\nQ 36.8275 80.3138, 36.8275 82.4138\\nQ 36.8275 84.5588, 37.6975 85.6388\\nQ 38.5825 86.7188, 40.2025 86.7188\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 63.84 32.0812\\nL 67.32 37.7063\\nQ 67.665 38.2613, 68.22 39.2662\\nQ 68.775 40.2713, 68.805 40.3313\\nL 68.805 32.0812\\nL 70.215 32.0812\\nL 70.215 42.7013\\nL 68.76 42.7013\\nL 65.025 36.5513\\nQ 64.59 35.8313, 64.125 35.0063\\nQ 63.675 34.1813, 63.54 33.9263\\nL 63.54 42.7013\\nL 62.16 42.7013\\nL 62.16 32.0812\\nL 63.84 32.0812\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 71.49 32.0812\\nL 72.93 32.0812\\nL 72.93 36.5962\\nL 78.36 36.5962\\nL 78.36 32.0812\\nL 79.8 32.0812\\nL 79.8 42.7013\\nL 78.36 42.7013\\nL 78.36 37.7963\\nL 72.93 37.7963\\nL 72.93 42.7013\\nL 71.49 42.7013\\nL 71.49 32.0812\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 80.3148 42.3287\\nQ 80.5722 41.6654, 81.186 41.2991\\nQ 81.7998 40.9229, 82.6512 40.9229\\nQ 83.7105 40.9229, 84.3045 41.4971\\nQ 84.8985 42.0713, 84.8985 43.091\\nQ 84.8985 44.1305, 84.1263 45.1007\\nQ 83.364 46.0709, 81.78 47.2193\\nL 85.0173 47.2193\\nL 85.0173 48.0113\\nL 80.295 48.0113\\nL 80.295 47.348\\nQ 81.6018 46.4174, 82.374 45.7244\\nQ 83.1561 45.0314, 83.5323 44.4077\\nQ 83.9085 43.784, 83.9085 43.1405\\nQ 83.9085 42.4673, 83.5719 42.0911\\nQ 83.2353 41.7149, 82.6512 41.7149\\nQ 82.0869 41.7149, 81.7107 41.9426\\nQ 81.3345 42.1703, 81.0672 42.6752\\nL 80.3148 42.3287\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.96, "data-ID": 757, "mols2grid-id": 150, "mols2grid-tooltip": "<strong>Name</strong>: acrylamide<br><strong>SMILES</strong>: O=C(N)C=C<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.96</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(Nc(ccc(O)c1)c1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 141.041,104.801 L 132.817,100.03' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 132.817,100.03 L 124.593,95.26' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 137.996,110.051 L 129.772,105.28' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.772,105.28 L 121.548,100.51' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.07,97.885 L 123.089,85.2316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.089,85.2316 L 123.107,72.5782' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 123.07,97.885 L 102.024,109.987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 119.096,65.191 L 107.972,58.7384' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.972,58.7384 L 96.8486,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.8486,52.2858 L 96.8486,21.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7792,47.7338 L 90.7792,26.491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 96.8486,52.2858 L 70.5682,67.4593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.8486,21.939 L 70.5682,6.76553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.5682,6.76553 L 44.2878,21.939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.6609,14.2977 L 51.2646,24.9191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 44.2878,21.939 L 36.0507,17.1836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 36.0507,17.1836 L 27.8135,12.4282' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 44.2878,21.939 L 44.2878,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 70.5682,67.4593 L 44.2878,52.2858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 69.6609,59.9271 L 51.2646,49.3056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 140.125 110.091\\nQ 140.125 108.027, 141.145 106.874\\nQ 142.165 105.721, 144.07 105.721\\nQ 145.976 105.721, 146.996 106.874\\nQ 148.015 108.027, 148.015 110.091\\nQ 148.015 112.178, 146.984 113.368\\nQ 145.952 114.545, 144.07 114.545\\nQ 142.177 114.545, 141.145 113.368\\nQ 140.125 112.191, 140.125 110.091\\nM 144.07 113.574\\nQ 145.381 113.574, 146.085 112.7\\nQ 146.802 111.814, 146.802 110.091\\nQ 146.802 108.403, 146.085 107.554\\nQ 145.381 106.692, 144.07 106.692\\nQ 142.759 106.692, 142.043 107.541\\nQ 141.339 108.391, 141.339 110.091\\nQ 141.339 111.826, 142.043 112.7\\nQ 142.759 113.574, 144.07 113.574\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 121.215 63.2249\\nL 124.031 67.7769\\nQ 124.31 68.226, 124.76 69.0393\\nQ 125.209 69.8526, 125.233 69.9012\\nL 125.233 63.2249\\nL 126.374 63.2249\\nL 126.374 71.8191\\nL 125.197 71.8191\\nL 122.174 66.8422\\nQ 121.822 66.2595, 121.446 65.5919\\nQ 121.082 64.9243, 120.972 64.7179\\nL 120.972 71.8191\\nL 119.856 71.8191\\nL 119.856 63.2249\\nL 121.215 63.2249\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 127.406 63.2249\\nL 128.571 63.2249\\nL 128.571 66.8786\\nL 132.965 66.8786\\nL 132.965 63.2249\\nL 134.131 63.2249\\nL 134.131 71.8191\\nL 132.965 71.8191\\nL 132.965 67.8497\\nL 128.571 67.8497\\nL 128.571 71.8191\\nL 127.406 71.8191\\nL 127.406 63.2249\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 11.9846 5.55166\\nL 13.1499 5.55166\\nL 13.1499 9.20542\\nL 17.5441 9.20542\\nL 17.5441 5.55166\\nL 18.7094 5.55166\\nL 18.7094 14.1459\\nL 17.5441 14.1459\\nL 17.5441 10.1765\\nL 13.1499 10.1765\\nL 13.1499 14.1459\\nL 11.9846 14.1459\\nL 11.9846 5.55166\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 19.3164 9.82449\\nQ 19.3164 7.76091, 20.336 6.60773\\nQ 21.3557 5.45455, 23.2615 5.45455\\nQ 25.1673 5.45455, 26.1869 6.60773\\nQ 27.2066 7.76091, 27.2066 9.82449\\nQ 27.2066 11.9124, 26.1748 13.102\\nQ 25.143 14.2794, 23.2615 14.2794\\nQ 21.3678 14.2794, 20.336 13.102\\nQ 19.3164 11.9245, 19.3164 9.82449\\nM 23.2615 13.3083\\nQ 24.5725 13.3083, 25.2765 12.4343\\nQ 25.9927 11.5482, 25.9927 9.82449\\nQ 25.9927 8.13721, 25.2765 7.2875\\nQ 24.5725 6.42565, 23.2615 6.42565\\nQ 21.9505 6.42565, 21.2343 7.27536\\nQ 20.5303 8.12507, 20.5303 9.82449\\nQ 20.5303 11.5603, 21.2343 12.4343\\nQ 21.9505 13.3083, 23.2615 13.3083\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.03, "data-ID": 762, "mols2grid-id": 151, "mols2grid-tooltip": "<strong>Name</strong>: 4-hydroxyacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(O)c1)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.03</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)N(=O)=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 33.2634,62.85 L 59.2484,47.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 59.2484,47.8575 L 59.2484,17.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 59.2484,47.8575 L 73.0156,55.8001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 73.0156,55.8001 L 86.7828,63.7428' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 102.04,60.6695 L 107.223,57.6793' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 107.223,57.6793 L 112.405,54.6891' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 87.9984,72.6675 L 87.9984,81.6532' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 87.9984,81.6532 L 87.9984,90.639' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 95.4984,72.6675 L 95.4984,81.6532' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 95.4984,81.6532 L 95.4984,90.639' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 89.4009 61.2975\\nL 92.8809 66.9225\\nQ 93.2259 67.4775, 93.7809 68.4825\\nQ 94.3359 69.4875, 94.3659 69.5475\\nL 94.3659 61.2975\\nL 95.7759 61.2975\\nL 95.7759 71.9175\\nL 94.3209 71.9175\\nL 90.5859 65.7675\\nQ 90.1509 65.0475, 89.6859 64.2225\\nQ 89.2359 63.3975, 89.1009 63.1425\\nL 89.1009 71.9175\\nL 87.7209 71.9175\\nL 87.7209 61.2975\\nL 89.4009 61.2975\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 96.6669 63.2118\\nL 98.538 63.2118\\nL 98.538 61.2417\\nL 99.3696 61.2417\\nL 99.3696 63.2118\\nL 101.29 63.2118\\nL 101.29 63.9246\\nL 99.3696 63.9246\\nL 99.3696 65.9046\\nL 98.538 65.9046\\nL 98.538 63.9246\\nL 96.6669 63.9246\\nL 96.6669 63.2118\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 112.858 51.645\\nQ 112.858 49.095, 114.118 47.67\\nQ 115.378 46.245, 117.733 46.245\\nQ 120.088 46.245, 121.348 47.67\\nQ 122.608 49.095, 122.608 51.645\\nQ 122.608 54.225, 121.333 55.695\\nQ 120.058 57.15, 117.733 57.15\\nQ 115.393 57.15, 114.118 55.695\\nQ 112.858 54.24, 112.858 51.645\\nM 117.733 55.95\\nQ 119.353 55.95, 120.223 54.87\\nQ 121.108 53.775, 121.108 51.645\\nQ 121.108 49.56, 120.223 48.51\\nQ 119.353 47.445, 117.733 47.445\\nQ 116.113 47.445, 115.228 48.495\\nQ 114.358 49.545, 114.358 51.645\\nQ 114.358 53.79, 115.228 54.87\\nQ 116.113 55.95, 117.733 55.95\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 123.103 47.9784\\nL 126.737 47.9784\\nL 126.737 48.7704\\nL 123.103 48.7704\\nL 123.103 47.9784\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 86.8734 96.6375\\nQ 86.8734 94.0875, 88.1334 92.6625\\nQ 89.3934 91.2375, 91.7484 91.2375\\nQ 94.1034 91.2375, 95.3634 92.6625\\nQ 96.6234 94.0875, 96.6234 96.6375\\nQ 96.6234 99.2175, 95.3484 100.687\\nQ 94.0734 102.142, 91.7484 102.142\\nQ 89.4084 102.142, 88.1334 100.687\\nQ 86.8734 99.2325, 86.8734 96.6375\\nM 91.7484 100.942\\nQ 93.3684 100.942, 94.2384 99.8625\\nQ 95.1234 98.7675, 95.1234 96.6375\\nQ 95.1234 94.5525, 94.2384 93.5025\\nQ 93.3684 92.4375, 91.7484 92.4375\\nQ 90.1284 92.4375, 89.2434 93.4875\\nQ 88.3734 94.5375, 88.3734 96.6375\\nQ 88.3734 98.7825, 89.2434 99.8625\\nQ 90.1284 100.942, 91.7484 100.942\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.62, "data-ID": 767, "mols2grid-id": 152, "mols2grid-tooltip": "<strong>Name</strong>: 2-nitropropane<br><strong>SMILES</strong>: CC(C)N(=O)=O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.62</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=N(=O)c(c(c(ccc1)cc2)c1)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.464,107.283 L 115.998,103.561' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.998,103.561 L 109.532,99.8399' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.283,97.2709 L 93.8461,101.002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.8461,101.002 L 87.4094,104.733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.369,102.595 L 96.9319,106.326' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.9319,106.326 L 90.4953,110.057' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.735,92.5345 L 105.708,79.7059' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.708,79.7059 L 105.682,66.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.682,66.8774 L 79.091,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.771,59.2453 L 86.157,48.4956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 105.682,66.8774 L 132.275,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.091,51.5207 L 79.091,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 79.091,51.5207 L 52.5003,66.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 79.091,20.8113 L 52.5003,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 79.091,20.8113 L 105.682,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 86.157,23.8363 L 104.771,13.0866' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.5003,5.45455 L 25.5342,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.5005,13.1051 L 32.6242,23.8549' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.5342,20.8113 L 25.5342,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 52.5003,66.8774 L 25.5342,51.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-8' d='M 51.5005,59.2268 L 32.6242,48.4771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 105.682,5.45455 L 132.275,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 132.275,51.5207 L 132.275,20.8113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-10' d='M 126.121,46.9143 L 126.121,25.4177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 123.079 109.963\\nQ 123.079 107.871, 124.113 106.702\\nQ 125.147 105.533, 127.079 105.533\\nQ 129.011 105.533, 130.045 106.702\\nQ 131.079 107.871, 131.079 109.963\\nQ 131.079 112.08, 130.033 113.286\\nQ 128.987 114.48, 127.079 114.48\\nQ 125.159 114.48, 124.113 113.286\\nQ 123.079 112.092, 123.079 109.963\\nM 127.079 113.495\\nQ 128.408 113.495, 129.122 112.609\\nQ 129.848 111.711, 129.848 109.963\\nQ 129.848 108.253, 129.122 107.391\\nQ 128.408 106.517, 127.079 106.517\\nQ 125.75 106.517, 125.024 107.379\\nQ 124.31 108.24, 124.31 109.963\\nQ 124.31 111.723, 125.024 112.609\\nQ 125.75 113.495, 127.079 113.495\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 131.485 106.955\\nL 134.466 106.955\\nL 134.466 107.605\\nL 131.485 107.605\\nL 131.485 106.955\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 103.819 93.304\\nL 106.674 97.9191\\nQ 106.958 98.3744, 107.413 99.199\\nQ 107.868 100.024, 107.893 100.073\\nL 107.893 93.304\\nL 109.05 93.304\\nL 109.05 102.017\\nL 107.856 102.017\\nL 104.792 96.9715\\nQ 104.435 96.3807, 104.053 95.7039\\nQ 103.684 95.027, 103.573 94.8178\\nL 103.573 102.017\\nL 102.441 102.017\\nL 102.441 93.304\\nL 103.819 93.304\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 109.781 94.8746\\nL 111.316 94.8746\\nL 111.316 93.2583\\nL 111.998 93.2583\\nL 111.998 94.8746\\nL 113.574 94.8746\\nL 113.574 95.4594\\nL 111.998 95.4594\\nL 111.998 97.0839\\nL 111.316 97.0839\\nL 111.316 95.4594\\nL 109.781 95.4594\\nL 109.781 94.8746\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 80.4509 110.029\\nQ 80.4509 107.937, 81.4847 106.768\\nQ 82.5184 105.598, 84.4506 105.598\\nQ 86.3828 105.598, 87.4165 106.768\\nQ 88.4503 107.937, 88.4503 110.029\\nQ 88.4503 112.146, 87.4042 113.352\\nQ 86.3581 114.545, 84.4506 114.545\\nQ 82.5308 114.545, 81.4847 113.352\\nQ 80.4509 112.158, 80.4509 110.029\\nM 84.4506 113.561\\nQ 85.7797 113.561, 86.4935 112.675\\nQ 87.2196 111.776, 87.2196 110.029\\nQ 87.2196 108.318, 86.4935 107.457\\nQ 85.7797 106.583, 84.4506 106.583\\nQ 83.1215 106.583, 82.3954 107.444\\nQ 81.6816 108.306, 81.6816 110.029\\nQ 81.6816 111.789, 82.3954 112.675\\nQ 83.1215 113.561, 84.4506 113.561\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.54, "data-ID": 772, "mols2grid-id": 153, "mols2grid-tooltip": "<strong>Name</strong>: 1-nitronaphthalene<br><strong>SMILES</strong>: O=N(=O)c(c(c(ccc1)cc2)c1)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.54</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)c(ccc(N(=O)=O)c1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 126.166,104.316 L 126.178,95.6862' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.178,95.6862 L 126.19,87.0561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.745,104.309 L 120.757,95.6786' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.757,95.6786 L 120.769,87.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.48,87.0523 L 130.845,82.8167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.845,82.8167 L 138.21,78.581' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 123.48,87.0523 L 100.02,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.02,73.4439 L 100.02,46.3392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 94.5986,69.3782 L 94.5986,50.4049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 100.02,73.4439 L 76.5469,86.9963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.02,46.3392 L 76.5469,32.7869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.5469,32.7869 L 53.0742,46.3392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 75.7365,39.5144 L 59.3056,49.001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 53.0742,46.3392 L 43.1116,40.6149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 43.1116,40.6149 L 33.149,34.8906' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 53.0742,46.3392 L 53.0742,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 26.1069,34.8287 L 21.1023,37.7277' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 21.1023,37.7277 L 16.0977,40.6266' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 32.2628,28.4436 L 32.2515,22.0084' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 32.2515,22.0084 L 32.2403,15.5732' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 26.8419,28.4531 L 26.8306,22.0179' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 26.8306,22.0179 L 26.8193,15.5827' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 76.5469,86.9963 L 53.0742,73.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 75.7365,80.2688 L 59.3056,70.7821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 119.925 108.758\\nQ 119.925 106.915, 120.836 105.885\\nQ 121.747 104.855, 123.449 104.855\\nQ 125.151 104.855, 126.062 105.885\\nQ 126.972 106.915, 126.972 108.758\\nQ 126.972 110.623, 126.051 111.685\\nQ 125.129 112.737, 123.449 112.737\\nQ 121.757 112.737, 120.836 111.685\\nQ 119.925 110.633, 119.925 108.758\\nM 123.449 111.869\\nQ 124.62 111.869, 125.249 111.089\\nQ 125.888 110.297, 125.888 108.758\\nQ 125.888 107.251, 125.249 106.492\\nQ 124.62 105.722, 123.449 105.722\\nQ 122.278 105.722, 121.638 106.481\\nQ 121.009 107.24, 121.009 108.758\\nQ 121.009 110.308, 121.638 111.089\\nQ 122.278 111.869, 123.449 111.869\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 138.752 76.2646\\nQ 138.752 74.4215, 139.663 73.3915\\nQ 140.574 72.3615, 142.276 72.3615\\nQ 143.978 72.3615, 144.889 73.3915\\nQ 145.799 74.4215, 145.799 76.2646\\nQ 145.799 78.1294, 144.878 79.1919\\nQ 143.956 80.2436, 142.276 80.2436\\nQ 140.584 80.2436, 139.663 79.1919\\nQ 138.752 78.1403, 138.752 76.2646\\nM 142.276 79.3762\\nQ 143.447 79.3762, 144.075 78.5956\\nQ 144.715 77.8042, 144.715 76.2646\\nQ 144.715 74.7576, 144.075 73.9987\\nQ 143.447 73.2289, 142.276 73.2289\\nQ 141.105 73.2289, 140.465 73.9878\\nQ 139.836 74.7468, 139.836 76.2646\\nQ 139.836 77.815, 140.465 78.5956\\nQ 141.105 79.3762, 142.276 79.3762\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 146.721 72.4483\\nL 147.762 72.4483\\nL 147.762 75.7117\\nL 151.686 75.7117\\nL 151.686 72.4483\\nL 152.727 72.4483\\nL 152.727 80.1243\\nL 151.686 80.1243\\nL 151.686 76.579\\nL 147.762 76.579\\nL 147.762 80.1243\\nL 146.721 80.1243\\nL 146.721 72.4483\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 27.8632 28.9904\\nL 30.3786 33.0561\\nQ 30.6279 33.4573, 31.0291 34.1837\\nQ 31.4302 34.9101, 31.4519 34.9535\\nL 31.4519 28.9904\\nL 32.471 28.9904\\nL 32.471 36.6665\\nL 31.4194 36.6665\\nL 28.7198 32.2213\\nQ 28.4053 31.7009, 28.0692 31.1046\\nQ 27.744 30.5083, 27.6464 30.324\\nL 27.6464 36.6665\\nL 26.649 36.6665\\nL 26.649 28.9904\\nL 27.8632 28.9904\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 33.1151 30.3741\\nL 34.4675 30.3741\\nL 34.4675 28.9501\\nL 35.0685 28.9501\\nL 35.0685 30.3741\\nL 36.4567 30.3741\\nL 36.4567 30.8893\\nL 35.0685 30.8893\\nL 35.0685 32.3204\\nL 34.4675 32.3204\\nL 34.4675 30.8893\\nL 33.1151 30.8893\\nL 33.1151 30.3741\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 7.27273 43.7191\\nQ 7.27273 41.876, 8.18344 40.846\\nQ 9.09416 39.816, 10.7963 39.816\\nQ 12.4985 39.816, 13.4092 40.846\\nQ 14.3199 41.876, 14.3199 43.7191\\nQ 14.3199 45.5839, 13.3984 46.6464\\nQ 12.4768 47.6981, 10.7963 47.6981\\nQ 9.105 47.6981, 8.18344 46.6464\\nQ 7.27273 45.5948, 7.27273 43.7191\\nM 10.7963 46.8307\\nQ 11.9673 46.8307, 12.5961 46.0501\\nQ 13.2358 45.2587, 13.2358 43.7191\\nQ 13.2358 42.2121, 12.5961 41.4532\\nQ 11.9673 40.6834, 10.7963 40.6834\\nQ 9.62541 40.6834, 8.98574 41.4423\\nQ 8.35691 42.2013, 8.35691 43.7191\\nQ 8.35691 45.2695, 8.98574 46.0501\\nQ 9.62541 46.8307, 10.7963 46.8307\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 14.6777 41.0689\\nL 17.3038 41.0689\\nL 17.3038 41.6414\\nL 14.6777 41.6414\\nL 14.6777 41.0689\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 25.9984 11.1664\\nQ 25.9984 9.32329, 26.9092 8.29331\\nQ 27.8199 7.26333, 29.5221 7.26333\\nQ 31.2242 7.26333, 32.1349 8.29331\\nQ 33.0457 9.32329, 33.0457 11.1664\\nQ 33.0457 13.0312, 32.1241 14.0937\\nQ 31.2025 15.1454, 29.5221 15.1454\\nQ 27.8307 15.1454, 26.9092 14.0937\\nQ 25.9984 13.042, 25.9984 11.1664\\nM 29.5221 14.278\\nQ 30.693 14.278, 31.3218 13.4974\\nQ 31.9615 12.706, 31.9615 11.1664\\nQ 31.9615 9.65938, 31.3218 8.90045\\nQ 30.693 8.13068, 29.5221 8.13068\\nQ 28.3511 8.13068, 27.7115 8.88961\\nQ 27.0826 9.64854, 27.0826 11.1664\\nQ 27.0826 12.7168, 27.7115 13.4974\\nQ 28.3511 14.278, 29.5221 14.278\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.8, "data-ID": 777, "mols2grid-id": 154, "mols2grid-tooltip": "<strong>Name</strong>: 4-nitrobenzoic_acid<br><strong>SMILES</strong>: O=C(O)c(ccc(N(=O)=O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.8</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=N(=O)c(c(N)ccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.317,103.211 L 112.329,94.471' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.329,94.471 L 112.342,85.7314' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.177,77.3921 L 129.227,74.488' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 129.227,74.488 L 134.277,71.5839' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.541,71.0692 L 125.591,68.1651' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.591,68.1651 L 130.641,65.261' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 107.521,77.1854 L 94.1524,69.4309' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 94.1524,69.4309 L 80.7841,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.7841,61.6764 L 80.7841,25.2066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 73.4901,56.2059 L 73.4901,30.6771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 80.7841,61.6764 L 49.2013,79.9113' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.7841,25.2066 L 91.0953,19.2538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 91.0953,19.2538 L 101.407,13.301' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 80.7841,25.2066 L 49.2013,6.97169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.2013,6.97169 L 17.6184,25.2066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 48.1109,16.0236 L 26.0029,28.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 17.6184,25.2066 L 17.6184,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 49.2013,79.9113 L 17.6184,61.6764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 48.1109,70.8594 L 26.0029,58.0949' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.568 109.192\\nQ 107.568 106.712, 108.793 105.326\\nQ 110.018 103.94, 112.309 103.94\\nQ 114.599 103.94, 115.824 105.326\\nQ 117.05 106.712, 117.05 109.192\\nQ 117.05 111.701, 115.81 113.13\\nQ 114.57 114.545, 112.309 114.545\\nQ 110.033 114.545, 108.793 113.13\\nQ 107.568 111.715, 107.568 109.192\\nM 112.309 113.378\\nQ 113.884 113.378, 114.73 112.328\\nQ 115.591 111.263, 115.591 109.192\\nQ 115.591 107.164, 114.73 106.143\\nQ 113.884 105.107, 112.309 105.107\\nQ 110.733 105.107, 109.872 106.128\\nQ 109.026 107.149, 109.026 109.192\\nQ 109.026 111.278, 109.872 112.328\\nQ 110.733 113.378, 112.309 113.378\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 117.531 105.626\\nL 121.065 105.626\\nL 121.065 106.396\\nL 117.531 106.396\\nL 117.531 105.626\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 110.067 74.8225\\nL 113.451 80.293\\nQ 113.787 80.8328, 114.327 81.8102\\nQ 114.866 82.7875, 114.896 82.8459\\nL 114.896 74.8225\\nL 116.267 74.8225\\nL 116.267 85.1508\\nL 114.852 85.1508\\nL 111.219 79.1697\\nQ 110.796 78.4695, 110.344 77.6672\\nQ 109.906 76.8649, 109.775 76.6169\\nL 109.775 85.1508\\nL 108.433 85.1508\\nL 108.433 74.8225\\nL 110.067 74.8225\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 117.133 76.6843\\nL 118.953 76.6843\\nL 118.953 74.7683\\nL 119.762 74.7683\\nL 119.762 76.6843\\nL 121.63 76.6843\\nL 121.63 77.3775\\nL 119.762 77.3775\\nL 119.762 79.3031\\nL 118.953 79.3031\\nL 118.953 77.3775\\nL 117.133 77.3775\\nL 117.133 76.6843\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 132.899 65.4717\\nQ 132.899 62.9917, 134.125 61.6059\\nQ 135.35 60.22, 137.641 60.22\\nQ 139.931 60.22, 141.156 61.6059\\nQ 142.382 62.9917, 142.382 65.4717\\nQ 142.382 67.9808, 141.142 69.4104\\nQ 139.902 70.8255, 137.641 70.8255\\nQ 135.365 70.8255, 134.125 69.4104\\nQ 132.899 67.9954, 132.899 65.4717\\nM 137.641 69.6584\\nQ 139.216 69.6584, 140.062 68.6081\\nQ 140.923 67.5432, 140.923 65.4717\\nQ 140.923 63.444, 140.062 62.4228\\nQ 139.216 61.3871, 137.641 61.3871\\nQ 136.065 61.3871, 135.204 62.4082\\nQ 134.358 63.4294, 134.358 65.4717\\nQ 134.358 67.5578, 135.204 68.6081\\nQ 136.065 69.6584, 137.641 69.6584\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 103.77 5.45455\\nL 107.154 10.925\\nQ 107.49 11.4648, 108.029 12.4422\\nQ 108.569 13.4196, 108.598 13.4779\\nL 108.598 5.45455\\nL 109.97 5.45455\\nL 109.97 15.7828\\nL 108.555 15.7828\\nL 104.922 9.80175\\nQ 104.499 9.10153, 104.047 8.29919\\nQ 103.609 7.49685, 103.478 7.24886\\nL 103.478 15.7828\\nL 102.136 15.7828\\nL 102.136 5.45455\\nL 103.77 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 111.21 5.45455\\nL 112.61 5.45455\\nL 112.61 9.84551\\nL 117.891 9.84551\\nL 117.891 5.45455\\nL 119.291 5.45455\\nL 119.291 15.7828\\nL 117.891 15.7828\\nL 117.891 11.0125\\nL 112.61 11.0125\\nL 112.61 15.7828\\nL 111.21 15.7828\\nL 111.21 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 119.792 15.4204\\nQ 120.042 14.7754, 120.639 14.4191\\nQ 121.236 14.0532, 122.064 14.0532\\nQ 123.094 14.0532, 123.672 14.6117\\nQ 124.25 15.1701, 124.25 16.1618\\nQ 124.25 17.1727, 123.499 18.1163\\nQ 122.757 19.0598, 121.217 20.1767\\nL 124.365 20.1767\\nL 124.365 20.9469\\nL 119.773 20.9469\\nL 119.773 20.3018\\nQ 121.044 19.3968, 121.795 18.7228\\nQ 122.555 18.0489, 122.921 17.4423\\nQ 123.287 16.8358, 123.287 16.2099\\nQ 123.287 15.5552, 122.96 15.1894\\nQ 122.632 14.8235, 122.064 14.8235\\nQ 121.515 14.8235, 121.15 15.0449\\nQ 120.784 15.2664, 120.524 15.7574\\nL 119.792 15.4204\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.96, "data-ID": 782, "mols2grid-id": 155, "mols2grid-tooltip": "<strong>Name</strong>: 2-nitroaniline<br><strong>SMILES</strong>: O=N(=O)c(c(N)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.96</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Clc(cccc1N)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.63,87.5179 L 129.061,81.4165' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.061,81.4165 L 118.492,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.492,75.315 L 118.492,37.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.992,69.69 L 110.992,43.44' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 118.492,75.315 L 86.0174,94.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.492,37.815 L 86.0174,19.065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.0174,19.065 L 53.5424,37.815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.8962,28.3726 L 62.1637,41.4976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.5424,37.815 L 53.5424,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 53.5424,75.315 L 42.9399,81.4359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 42.9399,81.4359 L 32.3374,87.5569' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 86.0174,94.065 L 53.5424,75.315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-5' d='M 84.8962,84.7574 L 62.1637,71.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 140.38 90.6825\\nQ 140.38 88.0425, 141.61 86.6625\\nQ 142.855 85.2675, 145.21 85.2675\\nQ 147.4 85.2675, 148.57 86.8125\\nL 147.58 87.6225\\nQ 146.725 86.4975, 145.21 86.4975\\nQ 143.605 86.4975, 142.75 87.5775\\nQ 141.91 88.6425, 141.91 90.6825\\nQ 141.91 92.7825, 142.78 93.8625\\nQ 143.665 94.9425, 145.375 94.9425\\nQ 146.545 94.9425, 147.91 94.2375\\nL 148.33 95.3625\\nQ 147.775 95.7225, 146.935 95.9325\\nQ 146.095 96.1425, 145.165 96.1425\\nQ 142.855 96.1425, 141.61 94.7325\\nQ 140.38 93.3225, 140.38 90.6825\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 149.86 84.6225\\nL 151.24 84.6225\\nL 151.24 96.0075\\nL 149.86 96.0075\\nL 149.86 84.6225\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 8.7601 85.005\\nL 10.2001 85.005\\nL 10.2001 89.52\\nL 15.6301 89.52\\nL 15.6301 85.005\\nL 17.0701 85.005\\nL 17.0701 95.625\\nL 15.6301 95.625\\nL 15.6301 90.72\\nL 10.2001 90.72\\nL 10.2001 95.625\\nL 8.7601 95.625\\nL 8.7601 85.005\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 17.5849 95.2524\\nQ 17.8423 94.5891, 18.4561 94.2228\\nQ 19.0699 93.8466, 19.9213 93.8466\\nQ 20.9806 93.8466, 21.5746 94.4208\\nQ 22.1686 94.995, 22.1686 96.0147\\nQ 22.1686 97.0542, 21.3964 98.0244\\nQ 20.6341 98.9946, 19.0501 100.143\\nL 22.2874 100.143\\nL 22.2874 100.935\\nL 17.5651 100.935\\nL 17.5651 100.272\\nQ 18.8719 99.3411, 19.6441 98.6481\\nQ 20.4262 97.9551, 20.8024 97.3314\\nQ 21.1786 96.7077, 21.1786 96.0642\\nQ 21.1786 95.391, 20.842 95.0148\\nQ 20.5054 94.6386, 19.9213 94.6386\\nQ 19.357 94.6386, 18.9808 94.8663\\nQ 18.6046 95.094, 18.3373 95.5989\\nL 17.5849 95.2524\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 25.2124 85.005\\nL 28.6924 90.63\\nQ 29.0374 91.185, 29.5924 92.19\\nQ 30.1474 93.195, 30.1774 93.255\\nL 30.1774 85.005\\nL 31.5874 85.005\\nL 31.5874 95.625\\nL 30.1324 95.625\\nL 26.3974 89.475\\nQ 25.9624 88.755, 25.4974 87.93\\nQ 25.0474 87.105, 24.9124 86.85\\nL 24.9124 95.625\\nL 23.5324 95.625\\nL 23.5324 85.005\\nL 25.2124 85.005\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.37, "data-ID": 787, "mols2grid-id": 156, "mols2grid-tooltip": "<strong>Name</strong>: 3-chloroaniline<br><strong>SMILES</strong>: Clc(cccc1N)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.37</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N#Cc(c(c(c(c1C#N)Cl)Cl)Cl)c1Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.159,96.9921 L 136.266,92.4349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.266,92.4349 L 128.373,87.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 146.952,92.1562 L 140.242,88.2826' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 140.242,88.2826 L 133.533,84.4089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.367,101.828 L 134.658,97.9544' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.658,97.9544 L 127.949,94.0808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.373,87.8777 L 104.179,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 104.179,73.91 L 104.179,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.595,69.7219 L 98.595,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-12' d='M 104.179,73.91 L 80,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.179,45.9895 L 80,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 104.179,45.9895 L 112.048,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 112.048,41.4467 L 119.917,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80,32.0293 L 55.8209,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.1652,38.9592 L 62.2398,48.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80,32.0293 L 80,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80,23.3097 L 80,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 55.8209,45.9895 L 55.8209,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 55.8209,45.9895 L 46.6844,40.7149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 46.6844,40.7149 L 37.5479,35.4403' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 55.8209,73.91 L 31.6268,87.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 80,87.8702 L 55.8209,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-6' d='M 79.1652,80.9403 L 62.2398,71.1681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 31.6268,87.8777 L 23.7337,92.4349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 23.7337,92.4349 L 15.8406,96.9921' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 26.4668,84.4089 L 19.7576,88.2826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 19.7576,88.2826 L 13.0485,92.1562' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.051,94.0808 L 25.3418,97.9544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.3418,97.9544 L 18.6327,101.828' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 80,87.8702 L 80,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 80,96.8802 L 80,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.969 95.0923\\nL 148.56 99.2804\\nQ 148.817 99.6936, 149.23 100.442\\nQ 149.643 101.19, 149.665 101.235\\nL 149.665 95.0923\\nL 150.715 95.0923\\nL 150.715 102.999\\nL 149.632 102.999\\nL 146.851 98.4204\\nQ 146.527 97.8844, 146.181 97.2701\\nQ 145.846 96.6559, 145.745 96.466\\nL 145.745 102.999\\nL 144.718 102.999\\nL 144.718 95.0923\\nL 145.969 95.0923\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 10.5357 95.0923\\nL 13.1267 99.2804\\nQ 13.3836 99.6936, 13.7968 100.442\\nQ 14.21 101.19, 14.2324 101.235\\nL 14.2324 95.0923\\nL 15.2822 95.0923\\nL 15.2822 102.999\\nL 14.1989 102.999\\nL 11.418 98.4204\\nQ 11.0941 97.8844, 10.7479 97.2701\\nQ 10.4129 96.6559, 10.3123 96.466\\nL 10.3123 102.999\\nL 9.28486 102.999\\nL 9.28486 95.0923\\nL 10.5357 95.0923\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 28.9037 35.0949\\nQ 28.9037 33.1293, 29.8194 32.1019\\nQ 30.7464 31.0632, 32.4998 31.0632\\nQ 34.1304 31.0632, 35.0015 32.2135\\nL 34.2644 32.8166\\nQ 33.6278 31.979, 32.4998 31.979\\nQ 31.3048 31.979, 30.6682 32.7831\\nQ 30.0428 33.5761, 30.0428 35.0949\\nQ 30.0428 36.6585, 30.6906 37.4626\\nQ 31.3495 38.2667, 32.6227 38.2667\\nQ 33.4938 38.2667, 34.5101 37.7418\\nL 34.8228 38.5794\\nQ 34.4096 38.8474, 33.7842 39.0038\\nQ 33.1587 39.1602, 32.4663 39.1602\\nQ 30.7464 39.1602, 29.8194 38.1103\\nQ 28.9037 37.0605, 28.9037 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 35.962 30.583\\nL 36.9894 30.583\\nL 36.9894 39.0596\\nL 35.962 39.0596\\nL 35.962 30.583\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 76.9511 9.9665\\nQ 76.9511 8.00089, 77.8669 6.97342\\nQ 78.7938 5.93478, 80.5472 5.93478\\nQ 82.1778 5.93478, 83.0489 7.0851\\nL 82.3118 7.68818\\nQ 81.6752 6.85057, 80.5472 6.85057\\nQ 79.3522 6.85057, 78.7157 7.65468\\nQ 78.0902 8.44762, 78.0902 9.9665\\nQ 78.0902 11.53, 78.738 12.3342\\nQ 79.3969 13.1383, 80.6701 13.1383\\nQ 81.5412 13.1383, 82.5575 12.6134\\nL 82.8702 13.451\\nQ 82.457 13.719, 81.8316 13.8754\\nQ 81.2062 14.0317, 80.5137 14.0317\\nQ 78.7938 14.0317, 77.8669 12.9819\\nQ 76.9511 11.9321, 76.9511 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 84.0094 5.45455\\nL 85.0369 5.45455\\nL 85.0369 13.9312\\nL 84.0094 13.9312\\nL 84.0094 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 120.475 35.0949\\nQ 120.475 33.1293, 121.391 32.1019\\nQ 122.318 31.0632, 124.072 31.0632\\nQ 125.702 31.0632, 126.573 32.2135\\nL 125.836 32.8166\\nQ 125.2 31.979, 124.072 31.979\\nQ 122.877 31.979, 122.24 32.7831\\nQ 121.615 33.5761, 121.615 35.0949\\nQ 121.615 36.6585, 122.262 37.4626\\nQ 122.921 38.2667, 124.194 38.2667\\nQ 125.066 38.2667, 126.082 37.7418\\nL 126.395 38.5794\\nQ 125.981 38.8474, 125.356 39.0038\\nQ 124.73 39.1602, 124.038 39.1602\\nQ 122.318 39.1602, 121.391 38.1103\\nQ 120.475 37.0605, 120.475 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 127.534 30.583\\nL 128.561 30.583\\nL 128.561 39.0596\\nL 127.534 39.0596\\nL 127.534 30.583\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 76.9511 110.48\\nQ 76.9511 108.515, 77.8669 107.487\\nQ 78.7938 106.449, 80.5472 106.449\\nQ 82.1778 106.449, 83.0489 107.599\\nL 82.3118 108.202\\nQ 81.6752 107.364, 80.5472 107.364\\nQ 79.3522 107.364, 78.7157 108.168\\nQ 78.0902 108.961, 78.0902 110.48\\nQ 78.0902 112.044, 78.738 112.848\\nQ 79.3969 113.652, 80.6701 113.652\\nQ 81.5412 113.652, 82.5575 113.127\\nL 82.8702 113.965\\nQ 82.457 114.233, 81.8316 114.389\\nQ 81.2062 114.545, 80.5137 114.545\\nQ 78.7938 114.545, 77.8669 113.496\\nQ 76.9511 112.446, 76.9511 110.48\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 84.0094 105.968\\nL 85.0369 105.968\\nL 85.0369 114.445\\nL 84.0094 114.445\\nL 84.0094 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -5.64, "data-ID": 792, "mols2grid-id": 157, "mols2grid-tooltip": "<strong>Name</strong>: chlorothalonil<br><strong>SMILES</strong>: N#Cc(c(c(c(c1C#N)Cl)Cl)Cl)c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.64</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CN1C=C(c2ccccc2)C(=O)C(c3cc(C(F)(F)F)ccc3)=C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.941,87.6737 L 131.197,84.9352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.197,84.9352 L 126.454,82.1967' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.316,78.1677 L 124.316,71.1765' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.316,71.1765 L 124.316,64.1854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-1' d='M 109.787,89.3514 L 115.941,85.7984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-1' d='M 115.941,85.7984 L 122.095,82.2453' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 125.155,62.7324 L 108.948,57.2497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.477,65.6383 L 110.626,54.3438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.787,55.7967 L 109.787,39.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-10' d='M 109.787,55.7967 L 95.2579,64.1854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 109.787,39.0104 L 124.303,30.5982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.282,34.8454 L 120.443,28.9569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-4' d='M 95.2445,30.6441 L 109.787,39.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 124.303,30.5982 L 124.276,13.8209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 124.276,13.8209 L 109.733,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 120.421,15.4744 L 110.242,9.618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 109.733,5.45455 L 95.2176,13.8667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 95.2176,13.8667 L 95.2445,30.6441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 98.5771,16.378 L 98.5959,28.1221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 96.0967,62.7324 L 91.5428,60.1034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 91.5428,60.1034 L 86.9889,57.4743' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 94.4191,65.6384 L 89.8651,63.0093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8651,63.0093 L 85.3112,60.3803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 95.2579,64.1854 L 95.2579,80.9628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 95.2579,80.9628 L 80.7209,89.3559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-12 atom-23' d='M 94.419,82.4157 L 110.626,87.8985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-12 atom-23' d='M 96.0968,79.5098 L 108.948,90.8044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 80.7209,89.3559 L 66.176,80.9907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 76.8662,91.0099 L 66.6848,85.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-13' d='M 80.7466,106.133 L 80.7209,89.3559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 66.176,80.9907 L 51.6602,89.4029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 51.6602,89.4029 L 37.1098,81.0321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-15 atom-20' d='M 51.6602,89.4029 L 51.6871,106.18' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-15 atom-20' d='M 55.0197,91.9141 L 55.0385,103.658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 37.1098,81.0321 L 37.0977,75.6768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 37.0977,75.6768 L 37.0857,70.3214' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 37.1098,81.0321 L 32.1784,83.8919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 32.1784,83.8919 L 27.2469,86.7516' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 37.1098,81.0321 L 32.1649,78.1911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 32.1649,78.1911 L 27.2201,75.3502' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 51.6871,106.18 L 66.2297,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.2297,114.545 L 80.7466,106.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 66.7249,110.38 L 76.8867,104.492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 123.266 78.5871\\nL 124.823 81.1037\\nQ 124.977 81.352, 125.226 81.8016\\nQ 125.474 82.2513, 125.487 82.2781\\nL 125.487 78.5871\\nL 126.118 78.5871\\nL 126.118 83.3384\\nL 125.467 83.3384\\nL 123.796 80.5869\\nQ 123.602 80.2648, 123.394 79.8957\\nQ 123.192 79.5266, 123.132 79.4125\\nL 123.132 83.3384\\nL 122.514 83.3384\\nL 122.514 78.5871\\nL 123.266 78.5871\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 81.4524 57.4879\\nQ 81.4524 56.347, 82.0161 55.7095\\nQ 82.5798 55.0719, 83.6334 55.0719\\nQ 84.687 55.0719, 85.2508 55.7095\\nQ 85.8145 56.347, 85.8145 57.4879\\nQ 85.8145 58.6422, 85.244 59.2998\\nQ 84.6736 59.9508, 83.6334 59.9508\\nQ 82.5865 59.9508, 82.0161 59.2998\\nQ 81.4524 58.6489, 81.4524 57.4879\\nM 83.6334 59.4139\\nQ 84.3582 59.4139, 84.7474 58.9307\\nQ 85.1434 58.4408, 85.1434 57.4879\\nQ 85.1434 56.555, 84.7474 56.0853\\nQ 84.3582 55.6088, 83.6334 55.6088\\nQ 82.9086 55.6088, 82.5127 56.0786\\nQ 82.1235 56.5483, 82.1235 57.4879\\nQ 82.1235 58.4475, 82.5127 58.9307\\nQ 82.9086 59.4139, 83.6334 59.4139\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 35.6669 65.2345\\nL 38.4922 65.2345\\nL 38.4922 65.7781\\nL 36.3045 65.7781\\nL 36.3045 67.221\\nL 38.2506 67.221\\nL 38.2506 67.7713\\nL 36.3045 67.7713\\nL 36.3045 69.9859\\nL 35.6669 69.9859\\nL 35.6669 65.2345\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 24.0861 85.3897\\nL 26.9114 85.3897\\nL 26.9114 85.9333\\nL 24.7236 85.9333\\nL 24.7236 87.3762\\nL 26.6698 87.3762\\nL 26.6698 87.9265\\nL 24.7236 87.9265\\nL 24.7236 90.1411\\nL 24.0861 90.1411\\nL 24.0861 85.3897\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 24.0592 71.9701\\nL 26.8845 71.9701\\nL 26.8845 72.5137\\nL 24.6968 72.5137\\nL 24.6968 73.9565\\nL 26.6429 73.9565\\nL 26.6429 74.5068\\nL 24.6968 74.5068\\nL 24.6968 76.7214\\nL 24.0592 76.7214\\nL 24.0592 71.9701\\n' fill='#33CCCC'/>\\n</svg>\\n", "data-Solubility": -4.44, "data-ID": 797, "mols2grid-id": 158, "mols2grid-tooltip": "<strong>Name</strong>: fluridone<br><strong>SMILES</strong>: CN1C=C(c2ccccc2)C(=O)C(c3cc(C(F)(F)F)ccc3)=C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.44</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCC(=O)Nc1ccc(Cl)c(Cl)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.383,114.545 L 135.411,94.5125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.411,94.5125 L 113.739,81.9402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.49,79.7694 L 105.685,83.6827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.685,83.6827 L 98.8798,87.5959' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 114.987,84.111 L 108.182,88.0243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 108.182,88.0243 L 101.376,91.9375' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.739,81.9402 L 113.754,71.4991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.754,71.4991 L 113.769,61.0579' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.46,54.9623 L 101.281,49.6379' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 101.281,49.6379 L 92.1016,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.1016,44.3134 L 92.1016,19.2722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 87.0933,40.5572 L 87.0933,23.0284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-5' d='M 70.4159,56.834 L 92.1016,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 92.1016,19.2722 L 70.4159,6.75168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.4159,6.75168 L 48.7303,19.2722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.6672,12.967 L 54.4873,21.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 48.7303,19.2722 L 40.536,14.5416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.536,14.5416 L 32.3417,9.81094' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 48.7303,19.2722 L 48.7303,44.3134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 48.7303,44.3134 L 40.536,49.044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 40.536,49.044 L 32.3417,53.7747' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 48.7303,44.3134 L 70.4159,56.834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 54.4873,41.8543 L 69.6672,50.6187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 93.1166 91.9467\\nQ 93.1166 90.2439, 93.9579 89.2923\\nQ 94.7993 88.3407, 96.3719 88.3407\\nQ 97.9445 88.3407, 98.7859 89.2923\\nQ 99.6272 90.2439, 99.6272 91.9467\\nQ 99.6272 93.6695, 98.7758 94.6511\\nQ 97.9245 95.6227, 96.3719 95.6227\\nQ 94.8093 95.6227, 93.9579 94.6511\\nQ 93.1166 93.6795, 93.1166 91.9467\\nM 96.3719 94.8214\\nQ 97.4537 94.8214, 98.0346 94.1002\\nQ 98.6256 93.369, 98.6256 91.9467\\nQ 98.6256 90.5544, 98.0346 89.8532\\nQ 97.4537 89.142, 96.3719 89.142\\nQ 95.2901 89.142, 94.6992 89.8432\\nQ 94.1182 90.5444, 94.1182 91.9467\\nQ 94.1182 93.379, 94.6992 94.1002\\nQ 95.2901 94.8214, 96.3719 94.8214\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 112.208 53.3399\\nL 114.532 57.0961\\nQ 114.762 57.4667, 115.133 58.1378\\nQ 115.503 58.8089, 115.523 58.8489\\nL 115.523 53.3399\\nL 116.465 53.3399\\nL 116.465 60.4315\\nL 115.493 60.4315\\nL 112.999 56.3248\\nQ 112.709 55.844, 112.398 55.2931\\nQ 112.098 54.7422, 112.008 54.5719\\nL 112.008 60.4315\\nL 111.086 60.4315\\nL 111.086 53.3399\\nL 112.208 53.3399\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 117.316 53.3399\\nL 118.278 53.3399\\nL 118.278 56.3548\\nL 121.904 56.3548\\nL 121.904 53.3399\\nL 122.865 53.3399\\nL 122.865 60.4315\\nL 121.904 60.4315\\nL 121.904 57.1562\\nL 118.278 57.1562\\nL 118.278 60.4315\\nL 117.316 60.4315\\nL 117.316 53.3399\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 24.589 9.50119\\nQ 24.589 7.7383, 25.4103 6.81678\\nQ 26.2417 5.88525, 27.8143 5.88525\\nQ 29.2767 5.88525, 30.0579 6.91695\\nL 29.3969 7.45784\\nQ 28.8259 6.7066, 27.8143 6.7066\\nQ 26.7425 6.7066, 26.1716 7.42779\\nQ 25.6106 8.13896, 25.6106 9.50119\\nQ 25.6106 10.9035, 26.1916 11.6247\\nQ 26.7826 12.3459, 27.9244 12.3459\\nQ 28.7057 12.3459, 29.6172 11.8751\\nL 29.8977 12.6263\\nQ 29.5271 12.8667, 28.9661 13.007\\nQ 28.4052 13.1472, 27.7842 13.1472\\nQ 26.2417 13.1472, 25.4103 12.2056\\nQ 24.589 11.2641, 24.589 9.50119\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 30.9194 5.45455\\nL 31.8409 5.45455\\nL 31.8409 13.057\\nL 30.9194 13.057\\nL 30.9194 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 24.589 54.5753\\nQ 24.589 52.8124, 25.4103 51.8908\\nQ 26.2417 50.9593, 27.8143 50.9593\\nQ 29.2767 50.9593, 30.0579 51.991\\nL 29.3969 52.5319\\nQ 28.8259 51.7807, 27.8143 51.7807\\nQ 26.7425 51.7807, 26.1716 52.5018\\nQ 25.6106 53.213, 25.6106 54.5753\\nQ 25.6106 55.9776, 26.1916 56.6987\\nQ 26.7826 57.4199, 27.9244 57.4199\\nQ 28.7057 57.4199, 29.6172 56.9492\\nL 29.8977 57.7004\\nQ 29.5271 57.9408, 28.9661 58.081\\nQ 28.4052 58.2212, 27.7842 58.2212\\nQ 26.2417 58.2212, 25.4103 57.2797\\nQ 24.589 56.3382, 24.589 54.5753\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 30.9194 50.5286\\nL 31.8409 50.5286\\nL 31.8409 58.1311\\nL 30.9194 58.1311\\nL 30.9194 50.5286\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -3.0, "data-ID": 802, "mols2grid-id": 159, "mols2grid-tooltip": "<strong>Name</strong>: propanil<br><strong>SMILES</strong>: CCC(=O)Nc1ccc(Cl)c(Cl)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: black\\">-3.0</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCc1cccc(CC)c1N(COC)C(=O)CCl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.356,39.9338 L 117.414,48.587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.414,48.587 L 98.6907,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.6907,37.8287 L 98.6907,16.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 94.3741,34.5913 L 94.3741,19.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-2' d='M 80,48.6201 L 98.6907,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 98.6907,16.2459 L 80,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80,5.45455 L 61.3093,16.2459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.3547,10.8115 L 66.2712,18.3655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 61.3093,16.2459 L 61.3093,37.8287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.3093,37.8287 L 42.5855,48.5885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 61.3093,37.8287 L 80,48.6201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 66.2712,35.7092 L 79.3547,43.2632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 42.5855,48.5885 L 27.6445,39.9338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80,48.6201 L 80.0186,57.6193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 80.0186,57.6193 L 80.0372,66.6184' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 77.1867,71.879 L 69.2854,76.4813' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.2854,76.4813 L 61.3841,81.0835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-10 atom-14' d='M 82.9025,71.8591 L 90.8318,76.4224' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-10 atom-14' d='M 90.8318,76.4224 L 98.7612,80.9857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 61.3841,81.0835 L 61.4123,90.0654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 61.4123,90.0654 L 61.4404,99.0473' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 58.2144,104.563 L 52.3733,107.965' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.3733,107.965 L 46.5323,111.367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 99.8436,82.8529 L 105.694,79.4617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 105.694,79.4617 L 111.544,76.0705' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 97.6788,79.1184 L 103.529,75.7272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 103.529,75.7272 L 109.38,72.336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-16' d='M 98.7612,80.9857 L 98.8058,102.58' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 98.8058,102.58 L 104.894,106.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 104.894,106.083 L 110.983,109.587' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-10' d='M 78.6935 67.1583\\nL 80.6964 70.3957\\nQ 80.895 70.7151, 81.2144 71.2936\\nQ 81.5338 71.872, 81.5511 71.9065\\nL 81.5511 67.1583\\nL 82.3626 67.1583\\nL 82.3626 73.2705\\nL 81.5252 73.2705\\nL 79.3755 69.731\\nQ 79.1252 69.3166, 78.8576 68.8417\\nQ 78.5986 68.3669, 78.5209 68.2202\\nL 78.5209 73.2705\\nL 77.7266 73.2705\\nL 77.7266 67.1583\\nL 78.6935 67.1583\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 58.646 102.695\\nQ 58.646 101.227, 59.3712 100.407\\nQ 60.0964 99.5871, 61.4518 99.5871\\nQ 62.8072 99.5871, 63.5323 100.407\\nQ 64.2575 101.227, 64.2575 102.695\\nQ 64.2575 104.18, 63.5237 105.026\\nQ 62.7899 105.863, 61.4518 105.863\\nQ 60.105 105.863, 59.3712 105.026\\nQ 58.646 104.189, 58.646 102.695\\nM 61.4518 105.173\\nQ 62.3841 105.173, 62.8849 104.551\\nQ 63.3942 103.921, 63.3942 102.695\\nQ 63.3942 101.495, 62.8849 100.891\\nQ 62.3841 100.278, 61.4518 100.278\\nQ 60.5194 100.278, 60.01 100.882\\nQ 59.5093 101.486, 59.5093 102.695\\nQ 59.5093 103.93, 60.01 104.551\\nQ 60.5194 105.173, 61.4518 105.173\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 110.894 72.3439\\nQ 110.894 70.8763, 111.619 70.0561\\nQ 112.344 69.236, 113.699 69.236\\nQ 115.055 69.236, 115.78 70.0561\\nQ 116.505 70.8763, 116.505 72.3439\\nQ 116.505 73.8288, 115.771 74.6749\\nQ 115.037 75.5123, 113.699 75.5123\\nQ 112.353 75.5123, 111.619 74.6749\\nQ 110.894 73.8374, 110.894 72.3439\\nM 113.699 74.8216\\nQ 114.632 74.8216, 115.132 74.2\\nQ 115.642 73.5698, 115.642 72.3439\\nQ 115.642 71.1439, 115.132 70.5396\\nQ 114.632 69.9266, 113.699 69.9266\\nQ 112.767 69.9266, 112.258 70.531\\nQ 111.757 71.1353, 111.757 72.3439\\nQ 111.757 73.5784, 112.258 74.2\\nQ 112.767 74.8216, 113.699 74.8216\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 111.414 111.403\\nQ 111.414 109.884, 112.122 109.089\\nQ 112.839 108.286, 114.194 108.286\\nQ 115.455 108.286, 116.128 109.176\\nL 115.558 109.642\\nQ 115.066 108.994, 114.194 108.994\\nQ 113.271 108.994, 112.778 109.616\\nQ 112.295 110.229, 112.295 111.403\\nQ 112.295 112.612, 112.796 113.233\\nQ 113.305 113.855, 114.289 113.855\\nQ 114.963 113.855, 115.748 113.449\\nL 115.99 114.097\\nQ 115.671 114.304, 115.187 114.425\\nQ 114.704 114.545, 114.168 114.545\\nQ 112.839 114.545, 112.122 113.734\\nQ 111.414 112.922, 111.414 111.403\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 116.871 107.915\\nL 117.665 107.915\\nL 117.665 114.468\\nL 116.871 114.468\\nL 116.871 107.915\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -3.26, "data-ID": 807, "mols2grid-id": 160, "mols2grid-tooltip": "<strong>Name</strong>: alachlor<br><strong>SMILES</strong>: CCc1cccc(CC)c1N(COC)C(=O)CCl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.26</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCS", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 47.52,64.6987 L 73.505,49.7062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 73.505,49.7062 L 84.42,56.0039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 84.42,56.0039 L 95.335,62.3015' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 96.49 68.3587\\nQ 96.61 68.4037, 97.105 68.6137\\nQ 97.6 68.8237, 98.14 68.9587\\nQ 98.695 69.0787, 99.235 69.0787\\nQ 100.24 69.0787, 100.825 68.5987\\nQ 101.41 68.1037, 101.41 67.2487\\nQ 101.41 66.6637, 101.11 66.3037\\nQ 100.825 65.9437, 100.375 65.7487\\nQ 99.925 65.5537, 99.175 65.3287\\nQ 98.23 65.0437, 97.66 64.7737\\nQ 97.105 64.5037, 96.7 63.9337\\nQ 96.31 63.3637, 96.31 62.4037\\nQ 96.31 61.0687, 97.21 60.2437\\nQ 98.125 59.4187, 99.925 59.4187\\nQ 101.155 59.4187, 102.55 60.0037\\nL 102.205 61.1587\\nQ 100.93 60.6337, 99.97 60.6337\\nQ 98.935 60.6337, 98.365 61.0687\\nQ 97.795 61.4887, 97.81 62.2237\\nQ 97.81 62.7937, 98.095 63.1387\\nQ 98.395 63.4837, 98.815 63.6787\\nQ 99.25 63.8737, 99.97 64.0987\\nQ 100.93 64.3987, 101.5 64.6987\\nQ 102.07 64.9987, 102.475 65.6137\\nQ 102.895 66.2137, 102.895 67.2487\\nQ 102.895 68.7187, 101.905 69.5137\\nQ 100.93 70.2937, 99.295 70.2937\\nQ 98.35 70.2937, 97.63 70.0837\\nQ 96.925 69.8887, 96.085 69.5437\\nL 96.49 68.3587\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 104.17 59.3887\\nL 105.61 59.3887\\nL 105.61 63.9037\\nL 111.04 63.9037\\nL 111.04 59.3887\\nL 112.48 59.3887\\nL 112.48 70.0087\\nL 111.04 70.0087\\nL 111.04 65.1037\\nL 105.61 65.1037\\nL 105.61 70.0087\\nL 104.17 70.0087\\nL 104.17 59.3887\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -0.6, "data-ID": 812, "mols2grid-id": 161, "mols2grid-tooltip": "<strong>Name</strong>: ethanethiol<br><strong>SMILES</strong>: CCS<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "NC(=S)N", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 66.4899,77.0848 L 77.0936,70.9668' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.0936,70.9668 L 87.6974,64.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.8233,68.0969 L 96.7383,74.3945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.7383,74.3945 L 107.653,80.6921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 89.5715,61.6006 L 100.486,67.8982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 100.486,67.8982 L 111.401,74.1958' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 87.6974,64.8487 L 87.6974,52.8787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 87.6974,52.8787 L 87.6974,40.9087' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 42.9126 74.5312\\nL 44.3526 74.5312\\nL 44.3526 79.0462\\nL 49.7826 79.0462\\nL 49.7826 74.5312\\nL 51.2226 74.5312\\nL 51.2226 85.1512\\nL 49.7826 85.1512\\nL 49.7826 80.2462\\nL 44.3526 80.2462\\nL 44.3526 85.1512\\nL 42.9126 85.1512\\nL 42.9126 74.5312\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 51.7374 84.7786\\nQ 51.9948 84.1153, 52.6086 83.749\\nQ 53.2224 83.3728, 54.0738 83.3728\\nQ 55.1331 83.3728, 55.7271 83.947\\nQ 56.3211 84.5212, 56.3211 85.5409\\nQ 56.3211 86.5804, 55.5489 87.5506\\nQ 54.7866 88.5208, 53.2026 89.6692\\nL 56.4399 89.6692\\nL 56.4399 90.4612\\nL 51.7176 90.4612\\nL 51.7176 89.7979\\nQ 53.0244 88.8673, 53.7966 88.1743\\nQ 54.5787 87.4813, 54.9549 86.8576\\nQ 55.3311 86.2339, 55.3311 85.5904\\nQ 55.3311 84.9172, 54.9945 84.541\\nQ 54.6579 84.1648, 54.0738 84.1648\\nQ 53.5095 84.1648, 53.1333 84.3925\\nQ 52.7571 84.6202, 52.4898 85.1251\\nL 51.7374 84.7786\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 59.3649 74.5312\\nL 62.8449 80.1562\\nQ 63.1899 80.7112, 63.7449 81.7162\\nQ 64.2999 82.7212, 64.3299 82.7812\\nL 64.3299 74.5312\\nL 65.7399 74.5312\\nL 65.7399 85.1512\\nL 64.2849 85.1512\\nL 60.5499 79.0012\\nQ 60.1149 78.2812, 59.6499 77.4562\\nQ 59.1999 76.6312, 59.0649 76.3762\\nL 59.0649 85.1512\\nL 57.6849 85.1512\\nL 57.6849 74.5312\\nL 59.3649 74.5312\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 110.682 83.4862\\nQ 110.802 83.5312, 111.297 83.7412\\nQ 111.792 83.9512, 112.332 84.0862\\nQ 112.887 84.2062, 113.427 84.2062\\nQ 114.432 84.2062, 115.017 83.7262\\nQ 115.602 83.2312, 115.602 82.3762\\nQ 115.602 81.7912, 115.302 81.4312\\nQ 115.017 81.0712, 114.567 80.8762\\nQ 114.117 80.6812, 113.367 80.4562\\nQ 112.422 80.1712, 111.852 79.9012\\nQ 111.297 79.6312, 110.892 79.0612\\nQ 110.502 78.4912, 110.502 77.5312\\nQ 110.502 76.1962, 111.402 75.3712\\nQ 112.317 74.5462, 114.117 74.5462\\nQ 115.347 74.5462, 116.742 75.1312\\nL 116.397 76.2862\\nQ 115.122 75.7612, 114.162 75.7612\\nQ 113.127 75.7612, 112.557 76.1962\\nQ 111.987 76.6162, 112.002 77.3512\\nQ 112.002 77.9212, 112.287 78.2662\\nQ 112.587 78.6112, 113.007 78.8062\\nQ 113.442 79.0012, 114.162 79.2262\\nQ 115.122 79.5262, 115.692 79.8262\\nQ 116.262 80.1262, 116.667 80.7412\\nQ 117.087 81.3412, 117.087 82.3762\\nQ 117.087 83.8462, 116.097 84.6412\\nQ 115.122 85.4212, 113.487 85.4212\\nQ 112.542 85.4212, 111.822 85.2112\\nQ 111.117 85.0162, 110.277 84.6712\\nL 110.682 83.4862\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 85.3499 29.5387\\nL 88.8299 35.1638\\nQ 89.1749 35.7188, 89.7299 36.7237\\nQ 90.2849 37.7287, 90.3149 37.7888\\nL 90.3149 29.5387\\nL 91.7249 29.5387\\nL 91.7249 40.1587\\nL 90.2699 40.1587\\nL 86.5349 34.0087\\nQ 86.0999 33.2888, 85.6349 32.4637\\nQ 85.1849 31.6387, 85.0499 31.3837\\nL 85.0499 40.1587\\nL 83.6699 40.1587\\nL 83.6699 29.5387\\nL 85.3499 29.5387\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 92.9999 29.5387\\nL 94.4399 29.5387\\nL 94.4399 34.0537\\nL 99.8699 34.0537\\nL 99.8699 29.5387\\nL 101.31 29.5387\\nL 101.31 40.1587\\nL 99.8699 40.1587\\nL 99.8699 35.2537\\nL 94.4399 35.2537\\nL 94.4399 40.1587\\nL 92.9999 40.1587\\nL 92.9999 29.5387\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 101.825 39.7861\\nQ 102.082 39.1228, 102.696 38.7565\\nQ 103.31 38.3803, 104.161 38.3803\\nQ 105.22 38.3803, 105.814 38.9545\\nQ 106.408 39.5288, 106.408 40.5485\\nQ 106.408 41.5879, 105.636 42.5581\\nQ 104.874 43.5284, 103.29 44.6767\\nL 106.527 44.6767\\nL 106.527 45.4688\\nL 101.805 45.4688\\nL 101.805 44.8055\\nQ 103.112 43.8749, 103.884 43.1818\\nQ 104.666 42.4888, 105.042 41.8651\\nQ 105.418 41.2415, 105.418 40.5979\\nQ 105.418 39.9248, 105.082 39.5485\\nQ 104.745 39.1724, 104.161 39.1724\\nQ 103.597 39.1724, 103.221 39.4001\\nQ 102.844 39.6277, 102.577 40.1326\\nL 101.825 39.7861\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.32, "data-ID": 817, "mols2grid-id": 162, "mols2grid-tooltip": "<strong>Name</strong>: thiourea<br><strong>SMILES</strong>: NC(=S)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.32</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COC(=O)NS(=O)(=O)c1ccc(N)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 137.645,114.545 L 131.655,111.087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.655,111.087 L 125.666,107.629' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.353,102.006 L 122.347,92.821' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.347,92.821 L 122.341,83.6362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 123.445,85.547 L 129.433,82.0874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 129.433,82.0874 L 135.421,78.6278' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.237,81.7253 L 127.225,78.2657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.225,78.2657 L 133.213,74.8061' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 122.341,83.6362 L 114.24,78.9596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 114.24,78.9596 L 106.14,74.2831' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.215,68.9191 L 103.211,61.5893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.211,61.5893 L 103.207,54.2595' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.547,53.8376 L 109.351,56.6083' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.351,56.6083 L 114.156,59.379' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 106.752,50.0141 L 111.556,52.7849' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 111.556,52.7849 L 116.361,55.5556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 106.754,51.0138 L 111.554,48.2401' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 111.554,48.2401 L 116.355,45.4664' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 104.545,47.1921 L 109.346,44.4184' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 109.346,44.4184 L 114.147,41.6447' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 100.648,49.0401 L 92.3648,44.2578' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 92.3648,44.2578 L 84.0812,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 84.0812,39.4755 L 84.0812,17.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 79.6674,36.1652 L 79.6674,20.7172' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 64.9698,50.5098 L 84.0812,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 84.0812,17.4069 L 64.9698,6.3726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 64.9698,6.3726 L 45.8584,17.4069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 64.31,11.8501 L 50.932,19.5741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 45.8584,17.4069 L 39.6189,13.8047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 39.6189,13.8047 L 33.3793,10.2026' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 45.8584,17.4069 L 45.8584,39.4755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 45.8584,39.4755 L 64.9698,50.5098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 50.932,37.3083 L 64.31,45.0323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 119.487 105.736\\nQ 119.487 104.235, 120.228 103.396\\nQ 120.97 102.558, 122.355 102.558\\nQ 123.741 102.558, 124.483 103.396\\nQ 125.224 104.235, 125.224 105.736\\nQ 125.224 107.254, 124.474 108.119\\nQ 123.724 108.975, 122.355 108.975\\nQ 120.978 108.975, 120.228 108.119\\nQ 119.487 107.263, 119.487 105.736\\nM 122.355 108.269\\nQ 123.309 108.269, 123.821 107.634\\nQ 124.342 106.989, 124.342 105.736\\nQ 124.342 104.509, 123.821 103.891\\nQ 123.309 103.264, 122.355 103.264\\nQ 121.402 103.264, 120.881 103.882\\nQ 120.369 104.5, 120.369 105.736\\nQ 120.369 106.998, 120.881 107.634\\nQ 121.402 108.269, 122.355 108.269\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 134.758 74.822\\nQ 134.758 73.3213, 135.499 72.4827\\nQ 136.241 71.6441, 137.627 71.6441\\nQ 139.013 71.6441, 139.754 72.4827\\nQ 140.496 73.3213, 140.496 74.822\\nQ 140.496 76.3403, 139.745 77.2054\\nQ 138.995 78.0617, 137.627 78.0617\\nQ 136.25 78.0617, 135.499 77.2054\\nQ 134.758 76.3491, 134.758 74.822\\nM 137.627 77.3555\\nQ 138.58 77.3555, 139.092 76.7199\\nQ 139.613 76.0755, 139.613 74.822\\nQ 139.613 73.595, 139.092 72.9771\\nQ 138.58 72.3503, 137.627 72.3503\\nQ 136.674 72.3503, 136.153 72.9682\\nQ 135.641 73.5862, 135.641 74.822\\nQ 135.641 76.0843, 136.153 76.7199\\nQ 136.674 77.3555, 137.627 77.3555\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 95.2243 69.4711\\nL 96.0718 69.4711\\nL 96.0718 72.1282\\nL 99.2673 72.1282\\nL 99.2673 69.4711\\nL 100.115 69.4711\\nL 100.115 75.7209\\nL 99.2673 75.7209\\nL 99.2673 72.8344\\nL 96.0718 72.8344\\nL 96.0718 75.7209\\nL 95.2243 75.7209\\nL 95.2243 69.4711\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 101.836 69.4711\\nL 103.884 72.7814\\nQ 104.087 73.108, 104.414 73.6994\\nQ 104.74 74.2909, 104.758 74.3262\\nL 104.758 69.4711\\nL 105.588 69.4711\\nL 105.588 75.7209\\nL 104.731 75.7209\\nL 102.533 72.1017\\nQ 102.277 71.678, 102.004 71.1925\\nQ 101.739 70.7069, 101.66 70.5569\\nL 101.66 75.7209\\nL 100.847 75.7209\\nL 100.847 69.4711\\nL 101.836 69.4711\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 101.439 52.6607\\nQ 101.509 52.6872, 101.801 52.8108\\nQ 102.092 52.9344, 102.41 53.0138\\nQ 102.736 53.0844, 103.054 53.0844\\nQ 103.646 53.0844, 103.99 52.802\\nQ 104.334 52.5107, 104.334 52.0075\\nQ 104.334 51.6632, 104.158 51.4514\\nQ 103.99 51.2395, 103.725 51.1248\\nQ 103.46 51.01, 103.019 50.8776\\nQ 102.463 50.7099, 102.127 50.551\\nQ 101.801 50.3921, 101.562 50.0566\\nQ 101.333 49.7212, 101.333 49.1562\\nQ 101.333 48.3706, 101.863 47.8851\\nQ 102.401 47.3996, 103.46 47.3996\\nQ 104.184 47.3996, 105.005 47.7438\\nL 104.802 48.4236\\nQ 104.052 48.1146, 103.487 48.1146\\nQ 102.878 48.1146, 102.542 48.3706\\nQ 102.207 48.6178, 102.216 49.0503\\nQ 102.216 49.3857, 102.383 49.5888\\nQ 102.56 49.7918, 102.807 49.9066\\nQ 103.063 50.0213, 103.487 50.1537\\nQ 104.052 50.3303, 104.387 50.5068\\nQ 104.723 50.6834, 104.961 51.0453\\nQ 105.208 51.3984, 105.208 52.0075\\nQ 105.208 52.8726, 104.626 53.3404\\nQ 104.052 53.7995, 103.09 53.7995\\nQ 102.533 53.7995, 102.11 53.6759\\nQ 101.695 53.5611, 101.2 53.3581\\nL 101.439 52.6607\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 115.629 59.3534\\nQ 115.629 57.8527, 116.37 57.0141\\nQ 117.112 56.1755, 118.498 56.1755\\nQ 119.884 56.1755, 120.625 57.0141\\nQ 121.367 57.8527, 121.367 59.3534\\nQ 121.367 60.8717, 120.616 61.7368\\nQ 119.866 62.5931, 118.498 62.5931\\nQ 117.121 62.5931, 116.37 61.7368\\nQ 115.629 60.8805, 115.629 59.3534\\nM 118.498 61.8869\\nQ 119.451 61.8869, 119.963 61.2513\\nQ 120.484 60.6069, 120.484 59.3534\\nQ 120.484 58.1264, 119.963 57.5085\\nQ 119.451 56.8817, 118.498 56.8817\\nQ 117.544 56.8817, 117.024 57.4996\\nQ 116.512 58.1175, 116.512 59.3534\\nQ 116.512 60.6157, 117.024 61.2513\\nQ 117.544 61.8869, 118.498 61.8869\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 115.622 41.7015\\nQ 115.622 40.2008, 116.363 39.3622\\nQ 117.105 38.5236, 118.49 38.5236\\nQ 119.876 38.5236, 120.618 39.3622\\nQ 121.359 40.2008, 121.359 41.7015\\nQ 121.359 43.2198, 120.609 44.0849\\nQ 119.859 44.9411, 118.49 44.9411\\nQ 117.113 44.9411, 116.363 44.0849\\nQ 115.622 43.2286, 115.622 41.7015\\nM 118.49 44.2349\\nQ 119.444 44.2349, 119.956 43.5994\\nQ 120.477 42.955, 120.477 41.7015\\nQ 120.477 40.4745, 119.956 39.8565\\nQ 119.444 39.2298, 118.49 39.2298\\nQ 117.537 39.2298, 117.016 39.8477\\nQ 116.504 40.4656, 116.504 41.7015\\nQ 116.504 42.9638, 117.016 43.5994\\nQ 117.537 44.2349, 118.49 44.2349\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 19.5042 5.45455\\nL 20.3516 5.45455\\nL 20.3516 8.1116\\nL 23.5471 8.1116\\nL 23.5471 5.45455\\nL 24.3946 5.45455\\nL 24.3946 11.7044\\nL 23.5471 11.7044\\nL 23.5471 8.8178\\nL 20.3516 8.8178\\nL 20.3516 11.7044\\nL 19.5042 11.7044\\nL 19.5042 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 24.6975 11.4851\\nQ 24.849 11.0947, 25.2102 10.8792\\nQ 25.5715 10.6578, 26.0725 10.6578\\nQ 26.6959 10.6578, 27.0455 10.9957\\nQ 27.395 11.3336, 27.395 11.9337\\nQ 27.395 12.5454, 26.9406 13.1164\\nQ 26.492 13.6874, 25.5598 14.3632\\nL 27.4649 14.3632\\nL 27.4649 14.8293\\nL 24.6859 14.8293\\nL 24.6859 14.4389\\nQ 25.4549 13.8913, 25.9094 13.4835\\nQ 26.3696 13.0756, 26.591 12.7086\\nQ 26.8124 12.3415, 26.8124 11.9628\\nQ 26.8124 11.5667, 26.6143 11.3453\\nQ 26.4162 11.1239, 26.0725 11.1239\\nQ 25.7404 11.1239, 25.519 11.2579\\nQ 25.2976 11.3919, 25.1403 11.689\\nL 24.6975 11.4851\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 29.1863 5.45455\\nL 31.2342 8.76483\\nQ 31.4373 9.09145, 31.7639 9.68289\\nQ 32.0905 10.2743, 32.1082 10.3096\\nL 32.1082 5.45455\\nL 32.9379 5.45455\\nL 32.9379 11.7044\\nL 32.0817 11.7044\\nL 29.8837 8.08512\\nQ 29.6277 7.6614, 29.354 7.1759\\nQ 29.0892 6.69039, 29.0097 6.54032\\nL 29.0097 11.7044\\nL 28.1976 11.7044\\nL 28.1976 5.45455\\nL 29.1863 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.66, "data-ID": 822, "mols2grid-id": 163, "mols2grid-tooltip": "<strong>Name</strong>: asulam<br><strong>SMILES</strong>: COC(=O)NS(=O)(=O)c1ccc(N)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.66</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COP(=O)(OC)C(O)C(Cl)(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.8048 L 16.7503,53.3366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.7503,53.3366 L 26.2279,47.8683' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.8766,47.9691 L 47.3628,54.0188' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.3628,54.0188 L 57.849,60.0685' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.2309,67.9449 L 58.2309,76.3106' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 58.2309,76.3106 L 58.2309,84.6763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.2134,67.9449 L 65.2134,76.3106' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.2134,76.3106 L 65.2134,84.6763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 57.6758,64.647 L 46.9481,70.8613' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 46.9481,70.8613 L 36.2204,77.0755' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 65.7516,59.9784 L 78.8656,52.4126' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 78.8656,52.4126 L 91.9796,44.8468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 30.9128,86.004 L 30.9211,97.0433' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 30.9211,97.0433 L 30.9294,108.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.9796,44.8468 L 91.9796,33.8075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.9796,33.8075 L 91.9796,22.7682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 91.9796,44.8468 L 122.237,62.3031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.237,62.3031 L 132.078,56.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 132.078,56.6253 L 141.918,50.9476' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 122.237,62.3031 L 132.074,67.9852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 132.074,67.9852 L 141.911,73.6673' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 122.237,62.3031 L 122.237,73.5693' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-11' d='M 122.237,73.5693 L 122.237,84.8355' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 26.9261 44.8748\\nQ 26.9261 42.5007, 28.0992 41.174\\nQ 29.2722 39.8474, 31.4647 39.8474\\nQ 33.6572 39.8474, 34.8303 41.174\\nQ 36.0033 42.5007, 36.0033 44.8748\\nQ 36.0033 47.2767, 34.8163 48.6453\\nQ 33.6293 49.9999, 31.4647 49.9999\\nQ 29.2862 49.9999, 28.0992 48.6453\\nQ 26.9261 47.2907, 26.9261 44.8748\\nM 31.4647 48.8827\\nQ 32.9729 48.8827, 33.7829 47.8772\\nQ 34.6068 46.8578, 34.6068 44.8748\\nQ 34.6068 42.9336, 33.7829 41.9561\\nQ 32.9729 40.9646, 31.4647 40.9646\\nQ 29.9565 40.9646, 29.1326 41.9421\\nQ 28.3226 42.9197, 28.3226 44.8748\\nQ 28.3226 46.8718, 29.1326 47.8772\\nQ 29.9565 48.8827, 31.4647 48.8827\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 61.4848 57.3595\\nQ 63.1745 57.3595, 64.0264 58.1275\\nQ 64.8783 58.8816, 64.8783 60.2642\\nQ 64.8783 61.6327, 63.9985 62.4148\\nQ 63.1326 63.1829, 61.4848 63.1829\\nL 59.9067 63.1829\\nL 59.9067 67.2467\\nL 58.5661 67.2467\\nL 58.5661 57.3595\\nL 61.4848 57.3595\\nM 61.4848 62.0657\\nQ 62.4484 62.0657, 62.9651 61.6048\\nQ 63.4818 61.144, 63.4818 60.2642\\nQ 63.4818 59.3844, 62.9651 58.9375\\nQ 62.4623 58.4767, 61.4848 58.4767\\nL 59.9067 58.4767\\nL 59.9067 62.0657\\nL 61.4848 62.0657\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 57.1836 90.2609\\nQ 57.1836 87.8869, 58.3566 86.5602\\nQ 59.5297 85.2335, 61.7222 85.2335\\nQ 63.9147 85.2335, 65.0877 86.5602\\nQ 66.2608 87.8869, 66.2608 90.2609\\nQ 66.2608 92.6629, 65.0738 94.0315\\nQ 63.8867 95.3861, 61.7222 95.3861\\nQ 59.5436 95.3861, 58.3566 94.0315\\nQ 57.1836 92.6769, 57.1836 90.2609\\nM 61.7222 94.2689\\nQ 63.2304 94.2689, 64.0404 93.2634\\nQ 64.8643 92.244, 64.8643 90.2609\\nQ 64.8643 88.3198, 64.0404 87.3423\\nQ 63.2304 86.3507, 61.7222 86.3507\\nQ 60.214 86.3507, 59.39 87.3283\\nQ 58.5801 88.3058, 58.5801 90.2609\\nQ 58.5801 92.2579, 59.39 93.2634\\nQ 60.214 94.2689, 61.7222 94.2689\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 26.3698 80.1806\\nQ 26.3698 77.8065, 27.5429 76.4798\\nQ 28.7159 75.1532, 30.9085 75.1532\\nQ 33.101 75.1532, 34.274 76.4798\\nQ 35.4471 77.8065, 35.4471 80.1806\\nQ 35.4471 82.5825, 34.26 83.9511\\nQ 33.073 85.3057, 30.9085 85.3057\\nQ 28.7299 85.3057, 27.5429 83.9511\\nQ 26.3698 82.5965, 26.3698 80.1806\\nM 30.9085 84.1885\\nQ 32.4167 84.1885, 33.2266 83.183\\nQ 34.0506 82.1636, 34.0506 80.1806\\nQ 34.0506 78.2394, 33.2266 77.2619\\nQ 32.4167 76.2704, 30.9085 76.2704\\nQ 29.4002 76.2704, 28.5763 77.2479\\nQ 27.7663 78.2255, 27.7663 80.1806\\nQ 27.7663 82.1775, 28.5763 83.183\\nQ 29.4002 84.1885, 30.9085 84.1885\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 87.441 16.9448\\nQ 87.441 14.5708, 88.6141 13.2441\\nQ 89.7871 11.9174, 91.9796 11.9174\\nQ 94.1721 11.9174, 95.3452 13.2441\\nQ 96.5182 14.5708, 96.5182 16.9448\\nQ 96.5182 19.3468, 95.3312 20.7154\\nQ 94.1442 22.07, 91.9796 22.07\\nQ 89.8011 22.07, 88.6141 20.7154\\nQ 87.441 19.3608, 87.441 16.9448\\nM 91.9796 20.9528\\nQ 93.4878 20.9528, 94.2978 19.9473\\nQ 95.1217 18.9278, 95.1217 16.9448\\nQ 95.1217 15.0037, 94.2978 14.0261\\nQ 93.4878 13.0346, 91.9796 13.0346\\nQ 90.4714 13.0346, 89.6475 14.0122\\nQ 88.8375 14.9897, 88.8375 16.9448\\nQ 88.8375 18.9418, 89.6475 19.9473\\nQ 90.4714 20.9528, 91.9796 20.9528\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 97.7053 12.0291\\nL 99.0459 12.0291\\nL 99.0459 16.2326\\nL 104.101 16.2326\\nL 104.101 12.0291\\nL 105.442 12.0291\\nL 105.442 21.9163\\nL 104.101 21.9163\\nL 104.101 17.3498\\nL 99.0459 17.3498\\nL 99.0459 21.9163\\nL 97.7053 21.9163\\nL 97.7053 12.0291\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 142.617 48.6872\\nQ 142.617 46.2294, 143.762 44.9446\\nQ 144.921 43.6458, 147.113 43.6458\\nQ 149.152 43.6458, 150.242 45.0842\\nL 149.32 45.8383\\nQ 148.524 44.791, 147.113 44.791\\nQ 145.619 44.791, 144.823 45.7965\\nQ 144.041 46.788, 144.041 48.6872\\nQ 144.041 50.6423, 144.851 51.6478\\nQ 145.675 52.6533, 147.267 52.6533\\nQ 148.356 52.6533, 149.627 51.9969\\nL 150.018 53.0443\\nQ 149.501 53.3794, 148.719 53.5749\\nQ 147.937 53.7705, 147.071 53.7705\\nQ 144.921 53.7705, 143.762 52.4577\\nQ 142.617 51.145, 142.617 48.6872\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 151.442 43.0454\\nL 152.727 43.0454\\nL 152.727 53.6448\\nL 151.442 53.6448\\nL 151.442 43.0454\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 142.61 76.6148\\nQ 142.61 74.157, 143.755 72.8722\\nQ 144.914 71.5735, 147.106 71.5735\\nQ 149.145 71.5735, 150.235 73.0119\\nL 149.313 73.766\\nQ 148.517 72.7186, 147.106 72.7186\\nQ 145.612 72.7186, 144.816 73.7241\\nQ 144.034 74.7156, 144.034 76.6148\\nQ 144.034 78.5699, 144.844 79.5754\\nQ 145.668 80.5809, 147.26 80.5809\\nQ 148.349 80.5809, 149.62 79.9245\\nL 150.011 80.9719\\nQ 149.494 81.3071, 148.712 81.5026\\nQ 147.93 81.6981, 147.064 81.6981\\nQ 144.914 81.6981, 143.755 80.3854\\nQ 142.61 79.0727, 142.61 76.6148\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 151.436 70.973\\nL 152.72 70.973\\nL 152.72 81.5724\\nL 151.436 81.5724\\nL 151.436 70.973\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 118.425 90.5752\\nQ 118.425 88.1173, 119.57 86.8325\\nQ 120.729 85.5338, 122.921 85.5338\\nQ 124.96 85.5338, 126.05 86.9722\\nL 125.128 87.7263\\nQ 124.332 86.6789, 122.921 86.6789\\nQ 121.427 86.6789, 120.631 87.6844\\nQ 119.849 88.6759, 119.849 90.5752\\nQ 119.849 92.5303, 120.659 93.5357\\nQ 121.483 94.5412, 123.075 94.5412\\nQ 124.164 94.5412, 125.435 93.8849\\nL 125.826 94.9322\\nQ 125.309 95.2674, 124.527 95.4629\\nQ 123.745 95.6584, 122.879 95.6584\\nQ 120.729 95.6584, 119.57 94.3457\\nQ 118.425 93.033, 118.425 90.5752\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 127.25 84.9333\\nL 128.535 84.9333\\nL 128.535 95.5327\\nL 127.25 95.5327\\nL 127.25 84.9333\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -0.22, "data-ID": 827, "mols2grid-id": 164, "mols2grid-tooltip": "<strong>Name</strong>: trichlorfon<br><strong>SMILES</strong>: COP(=O)(OC)C(O)C(Cl)(Cl)Cl<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.22</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COP(=S)(OC)Oc1ccc(SC)c(C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.757,112.12 L 124.766,105.515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.766,105.515 L 124.776,98.9107' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.543,93.5317 L 115.282,89.8996' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.282,89.8996 L 109.021,86.2674' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 103.356,84.4386 L 98.3903,87.2942' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.3903,87.2942 L 93.4242,90.1498' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.439,88.06 L 100.473,90.9156' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.473,90.9156 L 95.5066,93.7712' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 106.693,88.4135 L 106.67,95.6026' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 106.67,95.6026 L 106.647,102.792' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 106.709,81.4432 L 106.719,74.4933' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 106.719,74.4933 L 106.729,67.5434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.504,108.026 L 97.8237,111.286' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.8237,111.286 L 92.1438,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.496,62.1468 L 96.076,57.8425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 96.076,57.8425 L 88.6556,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 88.6556,53.5382 L 88.6556,32.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.4782,50.4051 L 84.4782,35.7841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-7' d='M 70.5674,63.9818 L 88.6556,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.6556,32.651 L 70.5674,22.2074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 70.5674,22.2074 L 52.4791,32.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 69.9429,27.3917 L 57.2811,34.7022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 52.4791,32.651 L 44.6493,28.1093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 44.6493,28.1093 L 36.8196,23.5675' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-13' d='M 52.4791,32.651 L 52.4791,53.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.4053,18.7973 L 34.4147,12.1259' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 34.4147,12.1259 L 34.4242,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 52.4791,53.5382 L 38.007,61.8931' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 52.4791,53.5382 L 70.5674,63.9818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-15' d='M 57.2811,51.487 L 69.9429,58.7975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 122.065 95.4267\\nQ 122.065 94.0064, 122.767 93.2127\\nQ 123.469 92.419, 124.781 92.419\\nQ 126.092 92.419, 126.794 93.2127\\nQ 127.496 94.0064, 127.496 95.4267\\nQ 127.496 96.8638, 126.786 97.6825\\nQ 126.076 98.493, 124.781 98.493\\nQ 123.477 98.493, 122.767 97.6825\\nQ 122.065 96.8721, 122.065 95.4267\\nM 124.781 97.8246\\nQ 125.683 97.8246, 126.168 97.223\\nQ 126.661 96.6131, 126.661 95.4267\\nQ 126.661 94.2654, 126.168 93.6806\\nQ 125.683 93.0874, 124.781 93.0874\\nQ 123.878 93.0874, 123.385 93.6722\\nQ 122.901 94.257, 122.901 95.4267\\nQ 122.901 96.6215, 123.385 97.223\\nQ 123.878 97.8246, 124.781 97.8246\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 106.562 81.9656\\nQ 107.572 81.9656, 108.082 82.4252\\nQ 108.592 82.8763, 108.592 83.7035\\nQ 108.592 84.5222, 108.065 84.9901\\nQ 107.547 85.4496, 106.562 85.4496\\nL 105.617 85.4496\\nL 105.617 87.8809\\nL 104.815 87.8809\\nL 104.815 81.9656\\nL 106.562 81.9656\\nM 106.562 84.7812\\nQ 107.138 84.7812, 107.447 84.5055\\nQ 107.756 84.2298, 107.756 83.7035\\nQ 107.756 83.1771, 107.447 82.9097\\nQ 107.146 82.634, 106.562 82.634\\nL 105.617 82.634\\nL 105.617 84.7812\\nL 106.562 84.7812\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 90.5466 95.2833\\nQ 90.6135 95.3084, 90.8892 95.4253\\nQ 91.1649 95.5423, 91.4657 95.6175\\nQ 91.7748 95.6843, 92.0756 95.6843\\nQ 92.6353 95.6843, 92.9612 95.417\\nQ 93.287 95.1413, 93.287 94.665\\nQ 93.287 94.3392, 93.1199 94.1387\\nQ 92.9612 93.9382, 92.7105 93.8296\\nQ 92.4599 93.7209, 92.0422 93.5956\\nQ 91.5158 93.4369, 91.1983 93.2865\\nQ 90.8892 93.1361, 90.6636 92.8186\\nQ 90.4464 92.5011, 90.4464 91.9664\\nQ 90.4464 91.2228, 90.9477 90.7633\\nQ 91.4573 90.3038, 92.4599 90.3038\\nQ 93.145 90.3038, 93.922 90.6296\\nL 93.7298 91.273\\nQ 93.0197 90.9805, 92.485 90.9805\\nQ 91.9085 90.9805, 91.591 91.2228\\nQ 91.2735 91.4568, 91.2819 91.8662\\nQ 91.2819 92.1836, 91.4406 92.3758\\nQ 91.6077 92.568, 91.8416 92.6766\\nQ 92.0839 92.7852, 92.485 92.9105\\nQ 93.0197 93.0776, 93.3372 93.2447\\nQ 93.6546 93.4118, 93.8802 93.7544\\nQ 94.1142 94.0886, 94.1142 94.665\\nQ 94.1142 95.4838, 93.5627 95.9266\\nQ 93.0197 96.3611, 92.109 96.3611\\nQ 91.5826 96.3611, 91.1816 96.2441\\nQ 90.7889 96.1355, 90.321 95.9433\\nL 90.5466 95.2833\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 103.921 106.245\\nQ 103.921 104.825, 104.623 104.031\\nQ 105.325 103.237, 106.637 103.237\\nQ 107.948 103.237, 108.65 104.031\\nQ 109.352 104.825, 109.352 106.245\\nQ 109.352 107.682, 108.642 108.501\\nQ 107.932 109.311, 106.637 109.311\\nQ 105.333 109.311, 104.623 108.501\\nQ 103.921 107.69, 103.921 106.245\\nM 106.637 108.643\\nQ 107.539 108.643, 108.024 108.041\\nQ 108.517 107.431, 108.517 106.245\\nQ 108.517 105.084, 108.024 104.499\\nQ 107.539 103.906, 106.637 103.906\\nQ 105.734 103.906, 105.241 104.49\\nQ 104.757 105.075, 104.757 106.245\\nQ 104.757 107.44, 105.241 108.041\\nQ 105.734 108.643, 106.637 108.643\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 104.019 64.0417\\nQ 104.019 62.6213, 104.721 61.8276\\nQ 105.422 61.0339, 106.734 61.0339\\nQ 108.046 61.0339, 108.748 61.8276\\nQ 109.45 62.6213, 109.45 64.0417\\nQ 109.45 65.4787, 108.739 66.2975\\nQ 108.029 67.1079, 106.734 67.1079\\nQ 105.431 67.1079, 104.721 66.2975\\nQ 104.019 65.4871, 104.019 64.0417\\nM 106.734 66.4395\\nQ 107.637 66.4395, 108.121 65.838\\nQ 108.614 65.2281, 108.614 64.0417\\nQ 108.614 62.8803, 108.121 62.2955\\nQ 107.637 61.7023, 106.734 61.7023\\nQ 105.832 61.7023, 105.339 62.2871\\nQ 104.854 62.872, 104.854 64.0417\\nQ 104.854 65.2364, 105.339 65.838\\nQ 105.832 66.4395, 106.734 66.4395\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 32.7295 24.1945\\nQ 32.7964 24.2196, 33.0721 24.3365\\nQ 33.3478 24.4535, 33.6486 24.5287\\nQ 33.9577 24.5955, 34.2585 24.5955\\nQ 34.8183 24.5955, 35.1441 24.3282\\nQ 35.4699 24.0525, 35.4699 23.5763\\nQ 35.4699 23.2504, 35.3028 23.0499\\nQ 35.1441 22.8494, 34.8935 22.7408\\nQ 34.6428 22.6322, 34.2251 22.5068\\nQ 33.6987 22.3481, 33.3812 22.1977\\nQ 33.0721 22.0473, 32.8465 21.7298\\nQ 32.6293 21.4123, 32.6293 20.8776\\nQ 32.6293 20.134, 33.1306 19.6745\\nQ 33.6402 19.215, 34.6428 19.215\\nQ 35.3279 19.215, 36.1049 19.5409\\nL 35.9128 20.1842\\nQ 35.2026 19.8918, 34.6679 19.8918\\nQ 34.0914 19.8918, 33.7739 20.134\\nQ 33.4564 20.368, 33.4648 20.7774\\nQ 33.4648 21.0949, 33.6235 21.287\\nQ 33.7906 21.4792, 34.0246 21.5878\\nQ 34.2668 21.6964, 34.6679 21.8217\\nQ 35.2026 21.9888, 35.5201 22.1559\\nQ 35.8376 22.323, 36.0631 22.6656\\nQ 36.2971 22.9998, 36.2971 23.5763\\nQ 36.2971 24.395, 35.7457 24.8378\\nQ 35.2026 25.2723, 34.2919 25.2723\\nQ 33.7656 25.2723, 33.3645 25.1553\\nQ 32.9718 25.0467, 32.504 24.8545\\nL 32.7295 24.1945\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -4.57, "data-ID": 832, "mols2grid-id": 165, "mols2grid-tooltip": "<strong>Name</strong>: fenthion<br><strong>SMILES</strong>: COP(=S)(OC)Oc1ccc(SC)c(C)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.57</span>", "style-Solubility": "color: red"}, {"data-SMILES": "COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.01,112.184 L 131.019,105.756' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.019,105.756 L 131.028,99.3279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.882,94.0925 L 121.788,90.5573' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.788,90.5573 L 115.694,87.0221' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.181,85.242 L 105.347,88.0214' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 105.347,88.0214 L 100.513,90.8008' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.207,88.7668 L 107.374,91.5462' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.374,91.5462 L 102.54,94.3256' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.428,89.1109 L 113.406,96.1082' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 113.406,96.1082 L 113.384,103.105' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 113.443,82.3266 L 113.453,75.5621' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 113.453,75.5621 L 113.463,68.7977' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 110.324,108.2 L 104.796,111.373' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.796,111.373 L 99.2672,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 110.317,63.5451 L 103.094,59.3557' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.094,59.3557 L 95.8721,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 95.8721,55.1663 L 95.8721,34.8365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 91.8062,52.1168 L 91.8062,37.886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-7' d='M 78.2665,65.3311 L 95.8721,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 95.8721,34.8365 L 78.2665,24.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 78.2665,24.6716 L 60.661,34.8365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 77.6587,29.7175 L 65.3348,36.8329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 60.661,34.8365 L 53.2089,30.5138' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 53.2089,30.5138 L 45.7568,26.1911' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-14' d='M 60.661,34.8365 L 60.661,55.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.0695,21.3443 L 43.0764,16.5176' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 43.0764,16.5176 L 43.0832,11.6909' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 39.4614,24.3567 L 35.1948,26.8104' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 35.1948,26.8104 L 30.9281,29.264' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 41.4884,27.8814 L 37.2217,30.335' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 37.2217,30.335 L 32.9551,32.7887' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 60.661,55.1663 L 46.5751,63.2982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 60.661,55.1663 L 78.2665,65.3311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 65.3348,53.1698 L 77.6587,60.2852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 128.39 95.9369\\nQ 128.39 94.5545, 129.073 93.782\\nQ 129.756 93.0094, 131.033 93.0094\\nQ 132.31 93.0094, 132.993 93.782\\nQ 133.676 94.5545, 133.676 95.9369\\nQ 133.676 97.3356, 132.985 98.1326\\nQ 132.294 98.9213, 131.033 98.9213\\nQ 129.765 98.9213, 129.073 98.1326\\nQ 128.39 97.3438, 128.39 95.9369\\nM 131.033 98.2708\\nQ 131.911 98.2708, 132.383 97.6853\\nQ 132.863 97.0917, 132.863 95.9369\\nQ 132.863 94.8066, 132.383 94.2374\\nQ 131.911 93.66, 131.033 93.66\\nQ 130.155 93.66, 129.675 94.2292\\nQ 129.203 94.7985, 129.203 95.9369\\nQ 129.203 97.0998, 129.675 97.6853\\nQ 130.155 98.2708, 131.033 98.2708\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 113.3 82.8351\\nQ 114.284 82.8351, 114.78 83.2823\\nQ 115.276 83.7215, 115.276 84.5265\\nQ 115.276 85.3234, 114.764 85.7788\\nQ 114.26 86.2261, 113.3 86.2261\\nL 112.381 86.2261\\nL 112.381 88.5925\\nL 111.601 88.5925\\nL 111.601 82.8351\\nL 113.3 82.8351\\nM 113.3 85.5755\\nQ 113.861 85.5755, 114.162 85.3072\\nQ 114.463 85.0388, 114.463 84.5265\\nQ 114.463 84.0142, 114.162 83.754\\nQ 113.869 83.4856, 113.3 83.4856\\nL 112.381 83.4856\\nL 112.381 85.5755\\nL 113.3 85.5755\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 97.7127 95.7973\\nQ 97.7777 95.8217, 98.0461 95.9356\\nQ 98.3144 96.0494, 98.6072 96.1226\\nQ 98.908 96.1877, 99.2008 96.1877\\nQ 99.7456 96.1877, 100.063 95.9274\\nQ 100.38 95.6591, 100.38 95.1956\\nQ 100.38 94.8784, 100.217 94.6833\\nQ 100.063 94.4881, 99.8188 94.3824\\nQ 99.5749 94.2767, 99.1683 94.1547\\nQ 98.656 94.0002, 98.3469 93.8538\\nQ 98.0461 93.7074, 97.8265 93.3984\\nQ 97.6151 93.0894, 97.6151 92.569\\nQ 97.6151 91.8452, 98.103 91.398\\nQ 98.599 90.9507, 99.5749 90.9507\\nQ 100.242 90.9507, 100.998 91.2679\\nL 100.811 91.894\\nQ 100.12 91.6094, 99.5993 91.6094\\nQ 99.0382 91.6094, 98.7291 91.8452\\nQ 98.4201 92.0729, 98.4283 92.4714\\nQ 98.4283 92.7804, 98.5828 92.9674\\nQ 98.7454 93.1545, 98.9731 93.2602\\nQ 99.2089 93.3659, 99.5993 93.4879\\nQ 100.12 93.6505, 100.429 93.8132\\nQ 100.738 93.9758, 100.957 94.3092\\nQ 101.185 94.6345, 101.185 95.1956\\nQ 101.185 95.9925, 100.648 96.4235\\nQ 100.12 96.8464, 99.2333 96.8464\\nQ 98.721 96.8464, 98.3307 96.7325\\nQ 97.9485 96.6268, 97.4931 96.4398\\nL 97.7127 95.7973\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 110.73 106.466\\nQ 110.73 105.084, 111.414 104.311\\nQ 112.097 103.539, 113.373 103.539\\nQ 114.65 103.539, 115.333 104.311\\nQ 116.016 105.084, 116.016 106.466\\nQ 116.016 107.865, 115.325 108.662\\nQ 114.634 109.451, 113.373 109.451\\nQ 112.105 109.451, 111.414 108.662\\nQ 110.73 107.873, 110.73 106.466\\nM 113.373 108.8\\nQ 114.252 108.8, 114.723 108.215\\nQ 115.203 107.621, 115.203 106.466\\nQ 115.203 105.336, 114.723 104.767\\nQ 114.252 104.189, 113.373 104.189\\nQ 112.495 104.189, 112.015 104.759\\nQ 111.544 105.328, 111.544 106.466\\nQ 111.544 107.629, 112.015 108.215\\nQ 112.495 108.8, 113.373 108.8\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 110.825 65.3894\\nQ 110.825 64.007, 111.508 63.2345\\nQ 112.192 62.4619, 113.468 62.4619\\nQ 114.745 62.4619, 115.428 63.2345\\nQ 116.111 64.007, 116.111 65.3894\\nQ 116.111 66.7881, 115.42 67.585\\nQ 114.729 68.3738, 113.468 68.3738\\nQ 112.2 68.3738, 111.508 67.585\\nQ 110.825 66.7962, 110.825 65.3894\\nM 113.468 67.7233\\nQ 114.346 67.7233, 114.818 67.1378\\nQ 115.298 66.5442, 115.298 65.3894\\nQ 115.298 64.2591, 114.818 63.6899\\nQ 114.346 63.1125, 113.468 63.1125\\nQ 112.59 63.1125, 112.11 63.6817\\nQ 111.639 64.251, 111.639 65.3894\\nQ 111.639 66.5523, 112.11 67.1378\\nQ 112.59 67.7233, 113.468 67.7233\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 41.7922 21.7509\\nL 43.6788 24.8004\\nQ 43.8659 25.1012, 44.1667 25.6461\\nQ 44.4676 26.1909, 44.4839 26.2234\\nL 44.4839 21.7509\\nL 45.2483 21.7509\\nL 45.2483 27.5083\\nL 44.4595 27.5083\\nL 42.4346 24.1742\\nQ 42.1988 23.7839, 41.9467 23.3366\\nQ 41.7028 22.8894, 41.6296 22.7511\\nL 41.6296 27.5083\\nL 40.8815 27.5083\\nL 40.8815 21.7509\\nL 41.7922 21.7509\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 45.7313 22.7887\\nL 46.7457 22.7887\\nL 46.7457 21.7206\\nL 47.1965 21.7206\\nL 47.1965 22.7887\\nL 48.2377 22.7887\\nL 48.2377 23.1751\\nL 47.1965 23.1751\\nL 47.1965 24.2485\\nL 46.7457 24.2485\\nL 46.7457 23.1751\\nL 45.7313 23.1751\\nL 45.7313 22.7887\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 40.445 8.38203\\nQ 40.445 6.99961, 41.1281 6.22708\\nQ 41.8112 5.45455, 43.0879 5.45455\\nQ 44.3646 5.45455, 45.0477 6.22708\\nQ 45.7308 6.99961, 45.7308 8.38203\\nQ 45.7308 9.78072, 45.0396 10.5776\\nQ 44.3484 11.3664, 43.0879 11.3664\\nQ 41.8193 11.3664, 41.1281 10.5776\\nQ 40.445 9.78885, 40.445 8.38203\\nM 43.0879 10.7159\\nQ 43.9662 10.7159, 44.4378 10.1304\\nQ 44.9176 9.53676, 44.9176 8.38203\\nQ 44.9176 7.2517, 44.4378 6.68246\\nQ 43.9662 6.1051, 43.0879 6.1051\\nQ 42.2097 6.1051, 41.7299 6.67433\\nQ 41.2582 7.24357, 41.2582 8.38203\\nQ 41.2582 9.5449, 41.7299 10.1304\\nQ 42.2097 10.7159, 43.0879 10.7159\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 45.9991 6.39427\\nL 47.9688 6.39427\\nL 47.9688 6.82363\\nL 45.9991 6.82363\\nL 45.9991 6.39427\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 26.324 32.7534\\nQ 26.324 31.3709, 27.0071 30.5984\\nQ 27.6901 29.8259, 28.9669 29.8259\\nQ 30.2436 29.8259, 30.9266 30.5984\\nQ 31.6097 31.3709, 31.6097 32.7534\\nQ 31.6097 34.1521, 30.9185 34.949\\nQ 30.2273 35.7378, 28.9669 35.7378\\nQ 27.6983 35.7378, 27.0071 34.949\\nQ 26.324 34.1602, 26.324 32.7534\\nM 28.9669 35.0872\\nQ 29.8451 35.0872, 30.3167 34.5017\\nQ 30.7965 33.9081, 30.7965 32.7534\\nQ 30.7965 31.623, 30.3167 31.0538\\nQ 29.8451 30.4764, 28.9669 30.4764\\nQ 28.0886 30.4764, 27.6088 31.0457\\nQ 27.1372 31.6149, 27.1372 32.7534\\nQ 27.1372 33.9162, 27.6088 34.5017\\nQ 28.0886 35.0872, 28.9669 35.0872\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.04, "data-ID": 837, "mols2grid-id": 166, "mols2grid-tooltip": "<strong>Name</strong>: fenitrothion<br><strong>SMILES</strong>: COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.04</span>", "style-Solubility": "color: red"}, {"data-SMILES": "COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 152.727,75.0263 L 145.853,79.0083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 145.853,79.0083 L 138.979,82.9902' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.246,82.935 L 123.619,78.5532' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.619,78.5532 L 115.993,74.1714' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.709,68.4536 L 115.698,62.4493' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.698,62.4493 L 115.688,56.445' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.638,68.4625 L 110.627,62.4582' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.627,62.4582 L 110.617,56.4539' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 116.119,70.8462 L 123.899,66.3217' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 123.899,66.3217 L 131.678,61.7972' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 110.254,74.25 L 102.665,78.6459' style='fill:none;fill-rule:evenodd;stroke:#FF7F00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 102.665,78.6459 L 95.0748,83.0419' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.525,55.416 L 135.504,47.3434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 135.504,47.3434 L 135.483,39.2708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 87.299,83.0111 L 78.2665,77.8211' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.2665,77.8211 L 69.2339,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.2339,72.6312 L 69.2339,47.2775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 64.1632,68.8282 L 64.1632,51.0805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-7' d='M 47.2776,85.3081 L 69.2339,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 69.2339,47.2775 L 47.2776,34.6006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 47.2776,34.6006 L 47.2776,26.6826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 47.2776,26.6826 L 47.2776,18.7646' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 47.2776,34.6006 L 25.3212,47.2775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 46.5196,40.8935 L 31.1501,49.7673' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 25.3212,47.2775 L 17.0322,42.4922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 17.0322,42.4922 L 8.74327,37.7068' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 25.3212,47.2775 L 25.3212,72.6312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 25.3212,72.6312 L 47.2776,85.3081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 31.1501,70.1414 L 46.5196,79.0152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 47.2776,85.3081 L 47.2776,93.4898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 47.2776,93.4898 L 47.2776,101.671' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 131.88 85.2135\\nQ 131.88 83.4894, 132.732 82.526\\nQ 133.583 81.5625, 135.176 81.5625\\nQ 136.768 81.5625, 137.62 82.526\\nQ 138.472 83.4894, 138.472 85.2135\\nQ 138.472 86.9578, 137.61 87.9517\\nQ 136.748 88.9354, 135.176 88.9354\\nQ 133.594 88.9354, 132.732 87.9517\\nQ 131.88 86.968, 131.88 85.2135\\nM 135.176 88.1241\\nQ 136.271 88.1241, 136.859 87.3939\\nQ 137.458 86.6536, 137.458 85.2135\\nQ 137.458 83.8038, 136.859 83.0939\\nQ 136.271 82.3739, 135.176 82.3739\\nQ 134.08 82.3739, 133.482 83.0838\\nQ 132.894 83.7937, 132.894 85.2135\\nQ 132.894 86.6637, 133.482 87.3939\\nQ 134.08 88.1241, 135.176 88.1241\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 113.008 68.9651\\nQ 114.235 68.9651, 114.854 69.5229\\nQ 115.472 70.0705, 115.472 71.0745\\nQ 115.472 72.0684, 114.834 72.6363\\nQ 114.205 73.1941, 113.008 73.1941\\nL 111.862 73.1941\\nL 111.862 76.1453\\nL 110.888 76.1453\\nL 110.888 68.9651\\nL 113.008 68.9651\\nM 113.008 72.3828\\nQ 113.708 72.3828, 114.083 72.0481\\nQ 114.458 71.7134, 114.458 71.0745\\nQ 114.458 70.4356, 114.083 70.1111\\nQ 113.718 69.7764, 113.008 69.7764\\nL 111.862 69.7764\\nL 111.862 72.3828\\nL 113.008 72.3828\\n' fill='#FF7F00'/>\\n<path class='atom-3' d='M 111.117 54.7366\\nQ 111.198 54.767, 111.532 54.909\\nQ 111.867 55.0509, 112.232 55.1422\\nQ 112.607 55.2234, 112.973 55.2234\\nQ 113.652 55.2234, 114.048 54.8988\\nQ 114.443 54.5642, 114.443 53.9861\\nQ 114.443 53.5906, 114.24 53.3472\\nQ 114.048 53.1038, 113.743 52.9719\\nQ 113.439 52.8401, 112.932 52.688\\nQ 112.293 52.4953, 111.908 52.3127\\nQ 111.532 52.1302, 111.259 51.7448\\nQ 110.995 51.3594, 110.995 50.7104\\nQ 110.995 49.8078, 111.603 49.25\\nQ 112.222 48.6922, 113.439 48.6922\\nQ 114.271 48.6922, 115.214 49.0877\\nL 114.981 49.8686\\nQ 114.119 49.5137, 113.47 49.5137\\nQ 112.77 49.5137, 112.384 49.8078\\nQ 111.999 50.0917, 112.009 50.5887\\nQ 112.009 50.9741, 112.202 51.2073\\nQ 112.405 51.4406, 112.689 51.5724\\nQ 112.983 51.7042, 113.47 51.8564\\nQ 114.119 52.0592, 114.504 52.262\\nQ 114.889 52.4649, 115.163 52.8807\\nQ 115.447 53.2863, 115.447 53.9861\\nQ 115.447 54.98, 114.778 55.5175\\nQ 114.119 56.0448, 113.013 56.0448\\nQ 112.374 56.0448, 111.887 55.9028\\nQ 111.411 55.771, 110.843 55.5377\\nL 111.117 54.7366\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 132.24 59.5741\\nQ 132.24 57.85, 133.092 56.8866\\nQ 133.944 55.9231, 135.536 55.9231\\nQ 137.128 55.9231, 137.98 56.8866\\nQ 138.832 57.85, 138.832 59.5741\\nQ 138.832 61.3184, 137.97 62.3123\\nQ 137.108 63.296, 135.536 63.296\\nQ 133.954 63.296, 133.092 62.3123\\nQ 132.24 61.3285, 132.24 59.5741\\nM 135.536 62.4847\\nQ 136.631 62.4847, 137.219 61.7545\\nQ 137.818 61.0142, 137.818 59.5741\\nQ 137.818 58.1644, 137.219 57.4545\\nQ 136.631 56.7344, 135.536 56.7344\\nQ 134.44 56.7344, 133.842 57.4443\\nQ 133.254 58.1542, 133.254 59.5741\\nQ 133.254 61.0243, 133.842 61.7545\\nQ 134.44 62.4847, 135.536 62.4847\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 87.9332 85.2895\\nQ 87.9332 83.5655, 88.7851 82.602\\nQ 89.637 81.6386, 91.2292 81.6386\\nQ 92.8214 81.6386, 93.6733 82.602\\nQ 94.5252 83.5655, 94.5252 85.2895\\nQ 94.5252 87.0339, 93.6631 88.0277\\nQ 92.8011 89.0115, 91.2292 89.0115\\nQ 89.6471 89.0115, 88.7851 88.0277\\nQ 87.9332 87.044, 87.9332 85.2895\\nM 91.2292 88.2001\\nQ 92.3245 88.2001, 92.9127 87.47\\nQ 93.511 86.7296, 93.511 85.2895\\nQ 93.511 83.8799, 92.9127 83.17\\nQ 92.3245 82.4499, 91.2292 82.4499\\nQ 90.1339 82.4499, 89.5356 83.1598\\nQ 88.9473 83.8697, 88.9473 85.2895\\nQ 88.9473 86.7398, 89.5356 87.47\\nQ 90.1339 88.2001, 91.2292 88.2001\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 44.509 14.5661\\nQ 44.509 12.7811, 45.3406 11.8481\\nQ 46.1823 10.905, 47.7745 10.905\\nQ 49.2552 10.905, 50.0462 11.9495\\nL 49.3769 12.4972\\nQ 48.7988 11.7366, 47.7745 11.7366\\nQ 46.6894 11.7366, 46.1113 12.4668\\nQ 45.5434 13.1868, 45.5434 14.5661\\nQ 45.5434 15.9859, 46.1316 16.7161\\nQ 46.7299 17.4462, 47.8861 17.4462\\nQ 48.6771 17.4462, 49.6 16.9696\\nL 49.884 17.7302\\nQ 49.5087 17.9736, 48.9408 18.1156\\nQ 48.3729 18.2576, 47.7441 18.2576\\nQ 46.1823 18.2576, 45.3406 17.3043\\nQ 44.509 16.351, 44.509 14.5661\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 50.9184 10.4689\\nL 51.8514 10.4689\\nL 51.8514 18.1663\\nL 50.9184 18.1663\\nL 50.9184 10.4689\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 7.27273 33.5307\\nL 8.23617 33.5307\\nL 8.23617 40.7413\\nL 7.27273 40.7413\\nL 7.27273 33.5307\\n' fill='#A01EEF'/>\\n<path class='atom-15' d='M 44.509 105.84\\nQ 44.509 104.055, 45.3406 103.122\\nQ 46.1823 102.179, 47.7745 102.179\\nQ 49.2552 102.179, 50.0462 103.223\\nL 49.3769 103.771\\nQ 48.7988 103.01, 47.7745 103.01\\nQ 46.6894 103.01, 46.1113 103.74\\nQ 45.5434 104.46, 45.5434 105.84\\nQ 45.5434 107.259, 46.1316 107.99\\nQ 46.7299 108.72, 47.8861 108.72\\nQ 48.6771 108.72, 49.6 108.243\\nL 49.884 109.004\\nQ 49.5087 109.247, 48.9408 109.389\\nQ 48.3729 109.531, 47.7441 109.531\\nQ 46.1823 109.531, 45.3406 108.578\\nQ 44.509 107.625, 44.509 105.84\\n' fill='#00CC00'/>\\n<path class='atom-15' d='M 50.9184 101.742\\nL 51.8514 101.742\\nL 51.8514 109.44\\nL 50.9184 109.44\\nL 50.9184 101.742\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.62, "data-ID": 842, "mols2grid-id": 167, "mols2grid-tooltip": "<strong>Name</strong>: iodofenphos<br><strong>SMILES</strong>: COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.62</span>", "style-Solubility": "color: red"}, {"data-SMILES": "C1C(O)CC2C(O)C(O)C3C4CCC(C(C)CCC(=O)O)C4(C)CCC3C2(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 35.7843,83.1571 L 35.7843,95.7874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-0' d='M 46.4961,76.922 L 35.7843,83.1571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.7843,95.7874 L 32.3277,97.7644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 32.3277,97.7644 L 28.8711,99.7414' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.7843,95.7874 L 46.6564,102.183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 46.6564,102.183 L 57.6879,95.628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.6879,95.628 L 68.7203,102.023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-4' d='M 57.6879,82.9967 L 57.6879,95.628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.7203,102.023 L 68.7551,106.074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.7551,106.074 L 68.7898,110.124' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 68.7203,102.023 L 79.5915,95.4676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.5915,95.4676 L 83.0783,97.4079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.0783,97.4079 L 86.5651,99.3482' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 79.5915,95.4676 L 79.432,82.8373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 79.432,82.8373 L 90.3041,76.6023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-9' d='M 68.56,76.7617 L 79.432,82.8373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 90.3041,76.6023 L 112.368,76.7617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-10' d='M 90.3041,63.9711 L 90.3041,76.6023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.368,76.7617 L 112.368,63.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 112.368,63.8116 L 101.336,57.4163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 101.336,57.4163 L 101.314,44.2656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-21' d='M 101.336,57.4163 L 90.3041,63.9711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 101.314,44.2656 L 92.1999,39.0266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 101.314,44.2656 L 112.686,37.6661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 112.686,37.6661 L 112.665,24.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 112.665,24.518 L 124.037,17.9177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 125.351,17.9155 L 125.345,13.8974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 125.345,13.8974 L 125.338,9.87942' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 122.723,17.9199 L 122.716,13.9018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 122.716,13.9018 L 122.71,9.8838' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-20' d='M 124.037,17.9177 L 127.488,19.9011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-20' d='M 127.488,19.9011 L 130.938,21.8846' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 90.3041,63.9711 L 90.2804,53.4582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-23' d='M 90.3041,63.9711 L 79.432,57.5757' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 79.432,57.5757 L 68.4005,63.9711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 68.4005,63.9711 L 68.56,76.7617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-26' d='M 68.56,76.7617 L 57.6879,82.9967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 57.6879,82.9967 L 57.5652,72.4847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-26 atom-28' d='M 57.6879,82.9967 L 46.4961,76.922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 21.0843 98.907\\nL 21.6603 98.907\\nL 21.6603 100.713\\nL 23.8323 100.713\\nL 23.8323 98.907\\nL 24.4083 98.907\\nL 24.4083 103.155\\nL 23.8323 103.155\\nL 23.8323 101.193\\nL 21.6603 101.193\\nL 21.6603 103.155\\nL 21.0843 103.155\\nL 21.0843 98.907\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 24.7083 101.019\\nQ 24.7083 99.999, 25.2123 99.429\\nQ 25.7163 98.859, 26.6583 98.859\\nQ 27.6003 98.859, 28.1043 99.429\\nQ 28.6083 99.999, 28.6083 101.019\\nQ 28.6083 102.051, 28.0983 102.639\\nQ 27.5883 103.221, 26.6583 103.221\\nQ 25.7223 103.221, 25.2123 102.639\\nQ 24.7083 102.057, 24.7083 101.019\\nM 26.6583 102.741\\nQ 27.3063 102.741, 27.6543 102.309\\nQ 28.0083 101.871, 28.0083 101.019\\nQ 28.0083 100.185, 27.6543 99.765\\nQ 27.3063 99.339, 26.6583 99.339\\nQ 26.0103 99.339, 25.6563 99.759\\nQ 25.3083 100.179, 25.3083 101.019\\nQ 25.3083 101.877, 25.6563 102.309\\nQ 26.0103 102.741, 26.6583 102.741\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 66.8605 112.547\\nQ 66.8605 111.527, 67.3645 110.957\\nQ 67.8685 110.387, 68.8105 110.387\\nQ 69.7525 110.387, 70.2565 110.957\\nQ 70.7605 111.527, 70.7605 112.547\\nQ 70.7605 113.579, 70.2505 114.167\\nQ 69.7405 114.749, 68.8105 114.749\\nQ 67.8745 114.749, 67.3645 114.167\\nQ 66.8605 113.585, 66.8605 112.547\\nM 68.8105 114.269\\nQ 69.4585 114.269, 69.8065 113.837\\nQ 70.1605 113.399, 70.1605 112.547\\nQ 70.1605 111.713, 69.8065 111.293\\nQ 69.4585 110.867, 68.8105 110.867\\nQ 68.1625 110.867, 67.8085 111.287\\nQ 67.4605 111.707, 67.4605 112.547\\nQ 67.4605 113.405, 67.8085 113.837\\nQ 68.1625 114.269, 68.8105 114.269\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 71.2705 110.435\\nL 71.8465 110.435\\nL 71.8465 112.241\\nL 74.0185 112.241\\nL 74.0185 110.435\\nL 74.5945 110.435\\nL 74.5945 114.683\\nL 74.0185 114.683\\nL 74.0185 112.721\\nL 71.8465 112.721\\nL 71.8465 114.683\\nL 71.2705 114.683\\nL 71.2705 110.435\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 86.828 100.592\\nQ 86.828 99.5715, 87.332 99.0015\\nQ 87.836 98.4315, 88.778 98.4315\\nQ 89.72 98.4315, 90.224 99.0015\\nQ 90.728 99.5715, 90.728 100.592\\nQ 90.728 101.624, 90.218 102.212\\nQ 89.708 102.794, 88.778 102.794\\nQ 87.842 102.794, 87.332 102.212\\nQ 86.828 101.63, 86.828 100.592\\nM 88.778 102.314\\nQ 89.426 102.314, 89.774 101.882\\nQ 90.128 101.444, 90.128 100.592\\nQ 90.128 99.7575, 89.774 99.3375\\nQ 89.426 98.9115, 88.778 98.9115\\nQ 88.13 98.9115, 87.776 99.3315\\nQ 87.428 99.7515, 87.428 100.592\\nQ 87.428 101.45, 87.776 101.882\\nQ 88.13 102.314, 88.778 102.314\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 91.238 98.4795\\nL 91.814 98.4795\\nL 91.814 100.286\\nL 93.986 100.286\\nL 93.986 98.4795\\nL 94.562 98.4795\\nL 94.562 102.728\\nL 93.986 102.728\\nL 93.986 100.766\\nL 91.814 100.766\\nL 91.814 102.728\\nL 91.238 102.728\\nL 91.238 98.4795\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 122.07 7.41679\\nQ 122.07 6.39679, 122.574 5.82679\\nQ 123.078 5.25679, 124.02 5.25679\\nQ 124.962 5.25679, 125.466 5.82679\\nQ 125.97 6.39679, 125.97 7.41679\\nQ 125.97 8.44879, 125.46 9.03679\\nQ 124.95 9.61879, 124.02 9.61879\\nQ 123.084 9.61879, 122.574 9.03679\\nQ 122.07 8.45479, 122.07 7.41679\\nM 124.02 9.13879\\nQ 124.668 9.13879, 125.016 8.70679\\nQ 125.37 8.26879, 125.37 7.41679\\nQ 125.37 6.58279, 125.016 6.16279\\nQ 124.668 5.73679, 124.02 5.73679\\nQ 123.372 5.73679, 123.018 6.15679\\nQ 122.67 6.57679, 122.67 7.41679\\nQ 122.67 8.27479, 123.018 8.70679\\nQ 123.372 9.13879, 124.02 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 131.201 23.1686\\nQ 131.201 22.1486, 131.705 21.5786\\nQ 132.209 21.0086, 133.151 21.0086\\nQ 134.093 21.0086, 134.597 21.5786\\nQ 135.101 22.1486, 135.101 23.1686\\nQ 135.101 24.2006, 134.591 24.7886\\nQ 134.081 25.3706, 133.151 25.3706\\nQ 132.215 25.3706, 131.705 24.7886\\nQ 131.201 24.2066, 131.201 23.1686\\nM 133.151 24.8906\\nQ 133.799 24.8906, 134.147 24.4586\\nQ 134.501 24.0206, 134.501 23.1686\\nQ 134.501 22.3346, 134.147 21.9146\\nQ 133.799 21.4886, 133.151 21.4886\\nQ 132.503 21.4886, 132.149 21.9086\\nQ 131.801 22.3286, 131.801 23.1686\\nQ 131.801 24.0266, 132.149 24.4586\\nQ 132.503 24.8906, 133.151 24.8906\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 135.611 21.0566\\nL 136.187 21.0566\\nL 136.187 22.8626\\nL 138.359 22.8626\\nL 138.359 21.0566\\nL 138.935 21.0566\\nL 138.935 25.3046\\nL 138.359 25.3046\\nL 138.359 23.3426\\nL 136.187 23.3426\\nL 136.187 25.3046\\nL 135.611 25.3046\\nL 135.611 21.0566\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.35, "data-ID": 848, "mols2grid-id": 168, "mols2grid-tooltip": "<strong>Name</strong>: hyocholic_acid<br><strong>SMILES</strong>: C1C(O)CC2C(O)C(O)C3C4CCC(C(C)CCC(=O)O)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.35</span>", "style-Solubility": "color: red"}, {"data-SMILES": "N(CCNC1C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.66,72.5025 L 118.66,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.66,56.8762 L 118.66,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-0 atom-6' d='M 113.695,81.6166 L 99.94,89.5583' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-0 atom-6' d='M 99.94,89.5583 L 86.185,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.66,41.25 L 86.185,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.185,22.5 L 72.43,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.43,30.4417 L 58.675,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.71,47.4975 L 53.71,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.71,63.1237 L 53.71,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.71,78.75 L 27.7275,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-4' d='M 86.185,97.5 L 53.71,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.312 73.44\\nL 119.792 79.065\\nQ 120.137 79.62, 120.692 80.625\\nQ 121.247 81.63, 121.277 81.69\\nL 121.277 73.44\\nL 122.687 73.44\\nL 122.687 84.06\\nL 121.232 84.06\\nL 117.497 77.91\\nQ 117.062 77.19, 116.597 76.365\\nQ 116.147 75.54, 116.012 75.285\\nL 116.012 84.06\\nL 114.632 84.06\\nL 114.632 73.44\\nL 116.312 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 123.962 73.44\\nL 125.402 73.44\\nL 125.402 77.955\\nL 130.832 77.955\\nL 130.832 73.44\\nL 132.272 73.44\\nL 132.272 84.06\\nL 130.832 84.06\\nL 130.832 79.155\\nL 125.402 79.155\\nL 125.402 84.06\\nL 123.962 84.06\\nL 123.962 73.44\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 40.1275 35.94\\nL 41.5675 35.94\\nL 41.5675 40.455\\nL 46.9975 40.455\\nL 46.9975 35.94\\nL 48.4375 35.94\\nL 48.4375 46.56\\nL 46.9975 46.56\\nL 46.9975 41.655\\nL 41.5675 41.655\\nL 41.5675 46.56\\nL 40.1275 46.56\\nL 40.1275 35.94\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 51.3625 35.94\\nL 54.8425 41.565\\nQ 55.1875 42.12, 55.7425 43.125\\nQ 56.2975 44.13, 56.3275 44.19\\nL 56.3275 35.94\\nL 57.7375 35.94\\nL 57.7375 46.56\\nL 56.2825 46.56\\nL 52.5475 40.41\\nQ 52.1125 39.69, 51.6475 38.865\\nQ 51.1975 38.04, 51.0625 37.785\\nL 51.0625 46.56\\nL 49.6825 46.56\\nL 49.6825 35.94\\nL 51.3625 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.74, "data-ID": 853, "mols2grid-id": 169, "mols2grid-tooltip": "<strong>Name</strong>: 2-methylpiperazine<br><strong>SMILES</strong>: N(CCNC1C)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.74</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(Nc(ccc(c1)Cl)c1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.376,104.824 L 131.171,100.065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.171,100.065 L 122.967,95.306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 136.337,110.062 L 128.133,105.303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 128.133,105.303 L 119.929,100.544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.448,97.9248 L 121.466,85.3016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.466,85.3016 L 121.485,72.6783' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 121.448,97.9248 L 100.451,109.998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 117.483,65.3088 L 106.386,58.8716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 106.386,58.8716 L 95.2886,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.2886,52.4344 L 95.2886,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 89.2337,47.8933 L 89.2337,26.7011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 95.2886,52.4344 L 69.0709,67.5716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 95.2886,22.16 L 69.0709,7.02276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.0709,7.02276 L 42.8533,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 68.1658,14.537 L 49.8134,25.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 42.8533,22.16 L 42.8533,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 42.8533,22.16 L 32.9465,16.4407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 32.9465,16.4407 L 23.0397,10.7214' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 69.0709,67.5716 L 42.8533,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 68.1658,60.0574 L 49.8134,49.4614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 138.462 110.101\\nQ 138.462 108.043, 139.479 106.892\\nQ 140.496 105.742, 142.398 105.742\\nQ 144.299 105.742, 145.316 106.892\\nQ 146.333 108.043, 146.333 110.101\\nQ 146.333 112.184, 145.304 113.371\\nQ 144.275 114.545, 142.398 114.545\\nQ 140.509 114.545, 139.479 113.371\\nQ 138.462 112.196, 138.462 110.101\\nM 142.398 113.577\\nQ 143.705 113.577, 144.408 112.705\\nQ 145.122 111.821, 145.122 110.101\\nQ 145.122 108.418, 144.408 107.57\\nQ 143.705 106.71, 142.398 106.71\\nQ 141.09 106.71, 140.375 107.558\\nQ 139.673 108.406, 139.673 110.101\\nQ 139.673 111.833, 140.375 112.705\\nQ 141.09 113.577, 142.398 113.577\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 119.597 63.3473\\nL 122.406 67.8885\\nQ 122.685 68.3366, 123.133 69.1479\\nQ 123.581 69.9593, 123.605 70.0077\\nL 123.605 63.3473\\nL 124.744 63.3473\\nL 124.744 71.9211\\nL 123.569 71.9211\\nL 120.554 66.9561\\nQ 120.202 66.3748, 119.827 65.7087\\nQ 119.464 65.0427, 119.355 64.8368\\nL 119.355 71.9211\\nL 118.241 71.9211\\nL 118.241 63.3473\\nL 119.597 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.773 63.3473\\nL 126.935 63.3473\\nL 126.935 66.9924\\nL 131.319 66.9924\\nL 131.319 63.3473\\nL 132.482 63.3473\\nL 132.482 71.9211\\nL 131.319 71.9211\\nL 131.319 67.9612\\nL 126.935 67.9612\\nL 126.935 71.9211\\nL 125.773 71.9211\\nL 125.773 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 13.6667 10.3469\\nQ 13.6667 8.21557, 14.6597 7.10147\\nQ 15.6648 5.97527, 17.566 5.97527\\nQ 19.3341 5.97527, 20.2786 7.22257\\nL 19.4794 7.8765\\nQ 18.7891 6.96827, 17.566 6.96827\\nQ 16.2703 6.96827, 15.58 7.84017\\nQ 14.9019 8.69997, 14.9019 10.3469\\nQ 14.9019 12.0423, 15.6043 12.9142\\nQ 16.3187 13.7861, 17.6992 13.7861\\nQ 18.6438 13.7861, 19.7458 13.2169\\nL 20.0849 14.1251\\nQ 19.6368 14.4158, 18.9587 14.5853\\nQ 18.2805 14.7549, 17.5297 14.7549\\nQ 15.6648 14.7549, 14.6597 13.6165\\nQ 13.6667 12.4782, 13.6667 10.3469\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 21.3201 5.45455\\nL 22.4342 5.45455\\nL 22.4342 14.6459\\nL 21.3201 14.6459\\nL 21.3201 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.84, "data-ID": 858, "mols2grid-id": 170, "mols2grid-tooltip": "<strong>Name</strong>: 4-chloroacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(c1)Cl)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.84</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(Nc(ccc(c1)N(=O)=O)c1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 136.426,106.749 L 129.847,102.933' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 129.847,102.933 L 123.267,99.1163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 133.99,110.95 L 127.411,107.133' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.411,107.133 L 120.831,103.317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.049,101.216 L 122.064,91.0932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.064,91.0932 L 122.079,80.9699' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-1 atom-12' d='M 122.049,101.216 L 105.211,110.899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.87,75.0599 L 109.97,69.8975' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.97,69.8975 L 101.071,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 101.071,64.7352 L 101.071,40.4564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 96.215,61.0934 L 96.215,44.0982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-3 atom-11' d='M 101.071,64.7352 L 80.0453,76.8745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 101.071,40.4564 L 80.0453,28.317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.0453,28.317 L 59.0199,40.4564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 79.3194,34.3431 L 64.6017,42.8407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.0199,40.4564 L 59.0199,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 59.0199,40.4564 L 50.096,35.3289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 50.096,35.3289 L 41.1721,30.2014' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 80.0453,76.8745 L 59.0199,64.7352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 79.3194,70.8485 L 64.6017,62.3509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 34.8642,30.146 L 30.3814,32.7427' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 30.3814,32.7427 L 25.8986,35.3394' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 40.3783,24.4266 L 40.3682,18.6623' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 40.3682,18.6623 L 40.3581,12.898' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 35.5226,24.4351 L 35.5125,18.6708' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 35.5125,18.6708 L 35.5024,12.9065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.694 110.981\\nQ 135.694 109.33, 136.51 108.408\\nQ 137.325 107.485, 138.85 107.485\\nQ 140.375 107.485, 141.191 108.408\\nQ 142.006 109.33, 142.006 110.981\\nQ 142.006 112.652, 141.181 113.603\\nQ 140.355 114.545, 138.85 114.545\\nQ 137.335 114.545, 136.51 113.603\\nQ 135.694 112.661, 135.694 110.981\\nM 138.85 113.769\\nQ 139.899 113.769, 140.462 113.069\\nQ 141.035 112.36, 141.035 110.981\\nQ 141.035 109.631, 140.462 108.952\\nQ 139.899 108.262, 138.85 108.262\\nQ 137.801 108.262, 137.228 108.942\\nQ 136.665 109.622, 136.665 110.981\\nQ 136.665 112.37, 137.228 113.069\\nQ 137.801 113.769, 138.85 113.769\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 120.565 73.4868\\nL 122.818 77.1287\\nQ 123.041 77.488, 123.401 78.1387\\nQ 123.76 78.7893, 123.779 78.8282\\nL 123.779 73.4868\\nL 124.692 73.4868\\nL 124.692 80.3626\\nL 123.75 80.3626\\nL 121.332 76.3809\\nQ 121.051 75.9147, 120.749 75.3806\\nQ 120.458 74.8465, 120.371 74.6814\\nL 120.371 80.3626\\nL 119.477 80.3626\\nL 119.477 73.4868\\nL 120.565 73.4868\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 125.518 73.4868\\nL 126.45 73.4868\\nL 126.45 76.41\\nL 129.966 76.41\\nL 129.966 73.4868\\nL 130.898 73.4868\\nL 130.898 80.3626\\nL 129.966 80.3626\\nL 129.966 77.1869\\nL 126.45 77.1869\\nL 126.45 80.3626\\nL 125.518 80.3626\\nL 125.518 73.4868\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 36.4374 24.9164\\nL 38.6905 28.5582\\nQ 38.9139 28.9175, 39.2732 29.5682\\nQ 39.6325 30.2189, 39.652 30.2577\\nL 39.652 24.9164\\nL 40.5648 24.9164\\nL 40.5648 31.7921\\nL 39.6228 31.7921\\nL 37.2047 27.8104\\nQ 36.923 27.3443, 36.622 26.8101\\nQ 36.3306 26.276, 36.2432 26.1109\\nL 36.2432 31.7921\\nL 35.3498 31.7921\\nL 35.3498 24.9164\\nL 36.4374 24.9164\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 41.1417 26.1558\\nL 42.3531 26.1558\\nL 42.3531 24.8803\\nL 42.8915 24.8803\\nL 42.8915 26.1558\\nL 44.135 26.1558\\nL 44.135 26.6173\\nL 42.8915 26.6173\\nL 42.8915 27.8992\\nL 42.3531 27.8992\\nL 42.3531 26.6173\\nL 41.1417 26.6173\\nL 41.1417 26.1558\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 17.9937 38.1095\\nQ 17.9937 36.4585, 18.8095 35.5359\\nQ 19.6252 34.6133, 21.1499 34.6133\\nQ 22.6746 34.6133, 23.4904 35.5359\\nQ 24.3062 36.4585, 24.3062 38.1095\\nQ 24.3062 39.7798, 23.4807 40.7316\\nQ 22.6552 41.6736, 21.1499 41.6736\\nQ 19.6349 41.6736, 18.8095 40.7316\\nQ 17.9937 39.7896, 17.9937 38.1095\\nM 21.1499 40.8967\\nQ 22.1988 40.8967, 22.762 40.1974\\nQ 23.335 39.4885, 23.335 38.1095\\nQ 23.335 36.7596, 22.762 36.0798\\nQ 22.1988 35.3902, 21.1499 35.3902\\nQ 20.1011 35.3902, 19.5281 36.0701\\nQ 18.9648 36.7499, 18.9648 38.1095\\nQ 18.9648 39.4982, 19.5281 40.1974\\nQ 20.1011 40.8967, 21.1499 40.8967\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 24.6266 35.7356\\nL 26.979 35.7356\\nL 26.979 36.2484\\nL 24.6266 36.2484\\nL 24.6266 35.7356\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 34.7671 8.95069\\nQ 34.7671 7.29973, 35.5828 6.37714\\nQ 36.3986 5.45455, 37.9233 5.45455\\nQ 39.448 5.45455, 40.2638 6.37714\\nQ 41.0795 7.29973, 41.0795 8.95069\\nQ 41.0795 10.6211, 40.2541 11.5728\\nQ 39.4286 12.5148, 37.9233 12.5148\\nQ 36.4083 12.5148, 35.5828 11.5728\\nQ 34.7671 10.6308, 34.7671 8.95069\\nM 37.9233 11.7379\\nQ 38.9721 11.7379, 39.5354 11.0387\\nQ 40.1084 10.3297, 40.1084 8.95069\\nQ 40.1084 7.60079, 39.5354 6.92098\\nQ 38.9721 6.23147, 37.9233 6.23147\\nQ 36.8745 6.23147, 36.3015 6.91127\\nQ 35.7382 7.59108, 35.7382 8.95069\\nQ 35.7382 10.3394, 36.3015 11.0387\\nQ 36.8745 11.7379, 37.9233 11.7379\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.69, "data-ID": 863, "mols2grid-id": 171, "mols2grid-tooltip": "<strong>Name</strong>: 4-nitroacetanilide<br><strong>SMILES</strong>: O=C(Nc(ccc(c1)N(=O)=O)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.69</span>", "style-Solubility": "color: black"}, {"data-SMILES": "COc2ccc1C(OC(=O)c1c2OC)C4N(C)CCc5cc3OCOc3cc45", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 43.1869,95.7122 L 48.2342,96.7874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 48.2342,96.7874 L 53.2814,97.8625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 58.0979,95.6875 L 62.2358,91.1006' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 62.2358,91.1006 L 66.3736,86.5137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 66.3736,86.5137 L 61.3391,71.422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 68.6468,83.2397 L 65.1227,72.6755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-2' d='M 82.2038,89.8232 L 66.3736,86.5137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 61.3391,71.422 L 72.0125,59.2716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.0125,59.2716 L 87.6576,62.6428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.6868,62.8981 L 84.6384,65.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 87.6576,62.6428 L 100.485,53.4858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 92.6921,77.7345 L 87.6576,62.6428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 100.485,53.4858 L 105.72,57.1878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 105.72,57.1878 L 110.955,60.8898' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-6 atom-14' d='M 100.485,53.4858 L 100.453,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 112.533,65.3854 L 110.558,71.4663' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.558,71.4663 L 108.583,77.5472' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 107.297,78.4931 L 110.123,82.3336' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 110.123,82.3336 L 112.948,86.1741' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 109.869,76.6013 L 112.694,80.4418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 112.694,80.4418 L 115.519,84.2823' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 108.583,77.5472 L 92.6921,77.7345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 92.6921,77.7345 L 82.2038,89.8232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 88.7075,77.4557 L 81.3657,85.9178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 82.2038,89.8232 L 84.3054,96.0447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 84.3054,96.0447 L 86.4069,102.266' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 84.9638,107.626 L 81.9248,111.086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 81.9248,111.086 L 78.8858,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 100.453,37.5162 L 106.312,34.1211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 106.312,34.1211 L 112.172,30.726' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-27 atom-14' d='M 86.4913,29.501 L 100.453,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 116.319,30.673 L 120.834,33.2752' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 120.834,33.2752 L 125.35,35.8774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 114.286,26.84 L 114.286,20.1554' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 114.286,20.1554 L 114.286,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 114.286,13.4708 L 100.453,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 100.453,5.45455 L 86.4913,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 86.4913,13.4708 L 72.917,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 82.8318,15.0172 L 73.3298,9.40587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-19' d='M 86.4913,29.501 L 86.4913,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 72.917,5.45455 L 59.0842,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 59.0842,13.4708 L 52.7577,11.4158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 52.7577,11.4158 L 46.4311,9.36077' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-21' d='M 59.0842,29.501 L 59.0842,13.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-21' d='M 62.2767,27.0965 L 62.2767,15.8753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-23' d='M 41.9754,11.3119 L 38.3129,16.3989' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-23' d='M 38.3129,16.3989 L 34.6504,21.4859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-24' d='M 34.6504,21.4859 L 38.3381,26.6075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-23 atom-24' d='M 38.3381,26.6075 L 42.0258,31.7291' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 46.4311,33.6101 L 52.7577,31.5556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 52.7577,31.5556 L 59.0842,29.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 59.0842,29.501 L 72.917,37.5162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 72.917,37.5162 L 86.4913,29.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-27' d='M 73.33,33.5649 L 82.832,27.9543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 53.6007 98.3853\\nQ 53.6007 97.2999, 54.137 96.6933\\nQ 54.6733 96.0868, 55.6758 96.0868\\nQ 56.6782 96.0868, 57.2145 96.6933\\nQ 57.7508 97.2999, 57.7508 98.3853\\nQ 57.7508 99.4835, 57.2081 100.109\\nQ 56.6654 100.729, 55.6758 100.729\\nQ 54.6797 100.729, 54.137 100.109\\nQ 53.6007 99.4899, 53.6007 98.3853\\nM 55.6758 100.218\\nQ 56.3653 100.218, 56.7356 99.7581\\nQ 57.1124 99.292, 57.1124 98.3853\\nQ 57.1124 97.4978, 56.7356 97.0509\\nQ 56.3653 96.5976, 55.6758 96.5976\\nQ 54.9862 96.5976, 54.6095 97.0445\\nQ 54.2392 97.4915, 54.2392 98.3853\\nQ 54.2392 99.2984, 54.6095 99.7581\\nQ 54.9862 100.218, 55.6758 100.218\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 111.351 62.6503\\nQ 111.351 61.5648, 111.887 60.9583\\nQ 112.423 60.3517, 113.426 60.3517\\nQ 114.428 60.3517, 114.965 60.9583\\nQ 115.501 61.5648, 115.501 62.6503\\nQ 115.501 63.7485, 114.958 64.3742\\nQ 114.416 64.9935, 113.426 64.9935\\nQ 112.43 64.9935, 111.887 64.3742\\nQ 111.351 63.7548, 111.351 62.6503\\nM 113.426 64.4827\\nQ 114.115 64.4827, 114.486 64.023\\nQ 114.862 63.5569, 114.862 62.6503\\nQ 114.862 61.7628, 114.486 61.3158\\nQ 114.115 60.8625, 113.426 60.8625\\nQ 112.736 60.8625, 112.36 61.3094\\nQ 111.989 61.7564, 111.989 62.6503\\nQ 111.989 63.5633, 112.36 64.023\\nQ 112.736 64.4827, 113.426 64.4827\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 114.075 87.846\\nQ 114.075 86.7606, 114.611 86.154\\nQ 115.148 85.5475, 116.15 85.5475\\nQ 117.153 85.5475, 117.689 86.154\\nQ 118.225 86.7606, 118.225 87.846\\nQ 118.225 88.9442, 117.682 89.57\\nQ 117.14 90.1893, 116.15 90.1893\\nQ 115.154 90.1893, 114.611 89.57\\nQ 114.075 88.9506, 114.075 87.846\\nM 116.15 89.6785\\nQ 116.84 89.6785, 117.21 89.2188\\nQ 117.587 88.7527, 117.587 87.846\\nQ 117.587 86.9585, 117.21 86.5116\\nQ 116.84 86.0583, 116.15 86.0583\\nQ 115.461 86.0583, 115.084 86.5052\\nQ 114.714 86.9522, 114.714 87.846\\nQ 114.714 88.7591, 115.084 89.2188\\nQ 115.461 89.6785, 116.15 89.6785\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 85.2388 104.964\\nQ 85.2388 103.878, 85.7751 103.272\\nQ 86.3114 102.665, 87.3139 102.665\\nQ 88.3163 102.665, 88.8526 103.272\\nQ 89.389 103.878, 89.389 104.964\\nQ 89.389 106.062, 88.8462 106.688\\nQ 88.3035 107.307, 87.3139 107.307\\nQ 86.3178 107.307, 85.7751 106.688\\nQ 85.2388 106.068, 85.2388 104.964\\nM 87.3139 106.796\\nQ 88.0034 106.796, 88.3738 106.337\\nQ 88.7505 105.871, 88.7505 104.964\\nQ 88.7505 104.076, 88.3738 103.629\\nQ 88.0034 103.176, 87.3139 103.176\\nQ 86.6243 103.176, 86.2476 103.623\\nQ 85.8773 104.07, 85.8773 104.964\\nQ 85.8773 105.877, 86.2476 106.337\\nQ 86.6243 106.796, 87.3139 106.796\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 113.286 27.2408\\nL 114.768 29.6351\\nQ 114.915 29.8714, 115.151 30.2992\\nQ 115.387 30.7269, 115.4 30.7525\\nL 115.4 27.2408\\nL 116 27.2408\\nL 116 31.7613\\nL 115.381 31.7613\\nL 113.791 29.1435\\nQ 113.606 28.837, 113.408 28.4859\\nQ 113.216 28.1347, 113.159 28.0261\\nL 113.159 31.7613\\nL 112.571 31.7613\\nL 112.571 27.2408\\nL 113.286 27.2408\\n' fill='#0000FF'/>\\n<path class='atom-22' d='M 41.8834 8.57036\\nQ 41.8834 7.48494, 42.4197 6.87837\\nQ 42.956 6.27181, 43.9584 6.27181\\nQ 44.9609 6.27181, 45.4972 6.87837\\nQ 46.0335 7.48494, 46.0335 8.57036\\nQ 46.0335 9.66856, 45.4908 10.2943\\nQ 44.9481 10.9136, 43.9584 10.9136\\nQ 42.9624 10.9136, 42.4197 10.2943\\nQ 41.8834 9.67495, 41.8834 8.57036\\nM 43.9584 10.4028\\nQ 44.648 10.4028, 45.0183 9.94311\\nQ 45.395 9.47702, 45.395 8.57036\\nQ 45.395 7.68287, 45.0183 7.23593\\nQ 44.648 6.7826, 43.9584 6.7826\\nQ 43.2689 6.7826, 42.8922 7.22954\\nQ 42.5218 7.67648, 42.5218 8.57036\\nQ 42.5218 9.4834, 42.8922 9.94311\\nQ 43.2689 10.4028, 43.9584 10.4028\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 41.8834 34.4259\\nQ 41.8834 33.3405, 42.4197 32.7339\\nQ 42.956 32.1274, 43.9584 32.1274\\nQ 44.9609 32.1274, 45.4972 32.7339\\nQ 46.0335 33.3405, 46.0335 34.4259\\nQ 46.0335 35.5241, 45.4908 36.1498\\nQ 44.9481 36.7692, 43.9584 36.7692\\nQ 42.9624 36.7692, 42.4197 36.1498\\nQ 41.8834 35.5305, 41.8834 34.4259\\nM 43.9584 36.2584\\nQ 44.648 36.2584, 45.0183 35.7987\\nQ 45.395 35.3326, 45.395 34.4259\\nQ 45.395 33.5384, 45.0183 33.0915\\nQ 44.648 32.6382, 43.9584 32.6382\\nQ 43.2689 32.6382, 42.8922 33.0851\\nQ 42.5218 33.532, 42.5218 34.4259\\nQ 42.5218 35.339, 42.8922 35.7987\\nQ 43.2689 36.2584, 43.9584 36.2584\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.11, "data-ID": 868, "mols2grid-id": 172, "mols2grid-tooltip": "<strong>Name</strong>: hydrastine<br><strong>SMILES</strong>: COc2ccc1C(OC(=O)c1c2OC)C4N(C)CCc5cc3OCOc3cc45<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.11</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C3CN=C(c1ccccc1)c2cc(ccc2N3)N(=O)=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.023,107.464 L 127.643,102.849' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.643,102.849 L 124.262,98.2341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.935,109.727 L 124.554,105.112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.554,105.112 L 121.173,100.497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.718,99.3654 L 131.752,81.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-1' d='M 106.26,101.974 L 114.489,100.67' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-1' d='M 114.489,100.67 L 122.718,99.3654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.752,81.2959 L 128.143,73.9814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 128.143,73.9814 L 124.533,66.6668' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.787,61.08 L 112.301,61.3553' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.301,61.3553 L 103.815,61.6305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.045,64.8363 L 112.301,61.3553' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.301,61.3553 L 104.557,57.8743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.186,59.7524 L 97.8404,41.6803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-4 atom-11' d='M 104.186,59.7524 L 94.2247,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 97.8404,41.6803 L 79.06,37.9919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.7612,37.37 L 82.615,34.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 110.433,27.2572 L 97.8404,41.6803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.06,37.9919 L 72.8624,19.879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.8624,19.879 L 85.4503,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 77.6354,20.2328 L 86.447,10.1357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 85.4503,5.45455 L 104.236,9.14426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 104.236,9.14426 L 110.433,27.2572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 101.543,13.1007 L 105.881,25.7798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 94.2247,71.5669 L 75.2286,61.8366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 89.6298,73.5151 L 76.3325,66.7039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-11' d='M 94.2247,91.025 L 94.2247,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 75.2286,61.8366 L 58.087,71.5669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 58.087,71.5669 L 58.087,91.025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 61.9158,74.4856 L 61.9158,88.1063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-18' d='M 58.087,71.5669 L 51.0535,67.523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-13 atom-18' d='M 51.0535,67.523 L 44.02,63.479' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 58.087,91.025 L 75.2286,100.755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 75.2286,100.755 L 94.2247,91.025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 76.3325,95.888 L 89.6298,89.0767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 94.2247,91.025 L 97.6848,95.1602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 97.6848,95.1602 L 101.145,99.2953' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 39.0462,63.4342 L 35.5118,65.4812' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 35.5118,65.4812 L 31.9773,67.5282' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 43.3947,58.9249 L 43.3875,54.3797' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 43.3875,54.3797 L 43.3803,49.8345' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 39.5659,58.931 L 39.5587,54.3858' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-20' d='M 39.5587,54.3858 L 39.5515,49.8406' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 129.279 111.735\\nQ 129.279 110.433, 129.922 109.706\\nQ 130.565 108.978, 131.768 108.978\\nQ 132.97 108.978, 133.613 109.706\\nQ 134.256 110.433, 134.256 111.735\\nQ 134.256 113.052, 133.605 113.803\\nQ 132.955 114.545, 131.768 114.545\\nQ 130.573 114.545, 129.922 113.803\\nQ 129.279 113.06, 129.279 111.735\\nM 131.768 113.933\\nQ 132.595 113.933, 133.039 113.381\\nQ 133.491 112.822, 133.491 111.735\\nQ 133.491 110.671, 133.039 110.135\\nQ 132.595 109.591, 131.768 109.591\\nQ 130.941 109.591, 130.489 110.127\\nQ 130.045 110.663, 130.045 111.735\\nQ 130.045 112.83, 130.489 113.381\\nQ 130.941 113.933, 131.768 113.933\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 121.751 60.7479\\nL 123.528 63.6195\\nQ 123.704 63.9028, 123.987 64.4159\\nQ 124.271 64.929, 124.286 64.9596\\nL 124.286 60.7479\\nL 125.006 60.7479\\nL 125.006 66.1695\\nL 124.263 66.1695\\nL 122.356 63.0299\\nQ 122.134 62.6623, 121.897 62.2411\\nQ 121.667 61.82, 121.598 61.6898\\nL 121.598 66.1695\\nL 120.894 66.1695\\nL 120.894 60.7479\\nL 121.751 60.7479\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 96.7888 99.6654\\nL 97.5239 99.6654\\nL 97.5239 101.97\\nL 100.296 101.97\\nL 100.296 99.6654\\nL 101.031 99.6654\\nL 101.031 105.087\\nL 100.296 105.087\\nL 100.296 102.583\\nL 97.5239 102.583\\nL 97.5239 105.087\\nL 96.7888 105.087\\nL 96.7888 99.6654\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 102.524 99.6654\\nL 104.301 102.537\\nQ 104.477 102.82, 104.76 103.333\\nQ 105.044 103.846, 105.059 103.877\\nL 105.059 99.6654\\nL 105.779 99.6654\\nL 105.779 105.087\\nL 105.036 105.087\\nL 103.129 101.947\\nQ 102.907 101.58, 102.67 101.159\\nQ 102.44 100.737, 102.371 100.607\\nL 102.371 105.087\\nL 101.667 105.087\\nL 101.667 99.6654\\nL 102.524 99.6654\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 40.2868 59.3108\\nL 42.0634 62.1824\\nQ 42.2395 62.4658, 42.5228 62.9788\\nQ 42.8061 63.4919, 42.8215 63.5225\\nL 42.8215 59.3108\\nL 43.5413 59.3108\\nL 43.5413 64.7324\\nL 42.7985 64.7324\\nL 40.8917 61.5928\\nQ 40.6697 61.2252, 40.4323 60.8041\\nQ 40.2025 60.3829, 40.1336 60.2527\\nL 40.1336 64.7324\\nL 39.4291 64.7324\\nL 39.4291 59.3108\\nL 40.2868 59.3108\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 43.9961 60.2881\\nL 44.9514 60.2881\\nL 44.9514 59.2823\\nL 45.3759 59.2823\\nL 45.3759 60.2881\\nL 46.3564 60.2881\\nL 46.3564 60.652\\nL 45.3759 60.652\\nL 45.3759 61.6628\\nL 44.9514 61.6628\\nL 44.9514 60.652\\nL 43.9961 60.652\\nL 43.9961 60.2881\\n' fill='#0000FF'/>\\n<path class='atom-19' d='M 25.7436 69.7125\\nQ 25.7436 68.4107, 26.3869 67.6832\\nQ 27.0301 66.9557, 28.2324 66.9557\\nQ 29.4346 66.9557, 30.0779 67.6832\\nQ 30.7211 68.4107, 30.7211 69.7125\\nQ 30.7211 71.0296, 30.0702 71.78\\nQ 29.4193 72.5228, 28.2324 72.5228\\nQ 27.0378 72.5228, 26.3869 71.78\\nQ 25.7436 71.0372, 25.7436 69.7125\\nM 28.2324 71.9102\\nQ 29.0594 71.9102, 29.5035 71.3589\\nQ 29.9553 70.7998, 29.9553 69.7125\\nQ 29.9553 68.648, 29.5035 68.112\\nQ 29.0594 67.5683, 28.2324 67.5683\\nQ 27.4053 67.5683, 26.9535 68.1043\\nQ 26.5094 68.6404, 26.5094 69.7125\\nQ 26.5094 70.8075, 26.9535 71.3589\\nQ 27.4053 71.9102, 28.2324 71.9102\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 30.9738 67.8406\\nL 32.8286 67.8406\\nL 32.8286 68.2449\\nL 30.9738 68.2449\\nL 30.9738 67.8406\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 38.9722 46.7216\\nQ 38.9722 45.4198, 39.6155 44.6924\\nQ 40.2587 43.9649, 41.461 43.9649\\nQ 42.6632 43.9649, 43.3064 44.6924\\nQ 43.9497 45.4198, 43.9497 46.7216\\nQ 43.9497 48.0387, 43.2988 48.7892\\nQ 42.6479 49.532, 41.461 49.532\\nQ 40.2664 49.532, 39.6155 48.7892\\nQ 38.9722 48.0464, 38.9722 46.7216\\nM 41.461 48.9194\\nQ 42.288 48.9194, 42.7321 48.368\\nQ 43.1839 47.809, 43.1839 46.7216\\nQ 43.1839 45.6572, 42.7321 45.1212\\nQ 42.288 44.5775, 41.461 44.5775\\nQ 40.6339 44.5775, 40.1821 45.1135\\nQ 39.738 45.6496, 39.738 46.7216\\nQ 39.738 47.8167, 40.1821 48.368\\nQ 40.6339 48.9194, 41.461 48.9194\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.8, "data-ID": 873, "mols2grid-id": 173, "mols2grid-tooltip": "<strong>Name</strong>: nitrazepam<br><strong>SMILES</strong>: O=C3CN=C(c1ccccc1)c2cc(ccc2N3)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Oc(c(cc(c1)Cl)Cc(c(O)ccc2Cl)c2)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 90.4203,109.533 L 84.6105,106.179' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.6105,106.179 L 78.8006,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 78.8006,102.824 L 78.8006,81.4201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 74.5198,99.6138 L 74.5198,84.6307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-1 atom-16' d='M 78.8006,102.824 L 60.2645,113.527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 78.8006,81.4201 L 60.2645,70.7179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 78.8006,81.4201 L 97.3254,70.6736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 60.2645,70.7179 L 41.7283,81.4201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.6245,76.0305 L 46.6492,83.5221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 41.7283,81.4201 L 41.7283,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 41.7283,81.4201 L 34.7241,77.3764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 34.7241,77.3764 L 27.7199,73.3328' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 60.2645,113.527 L 41.7283,102.824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-5' d='M 59.6245,108.214 L 46.6492,100.722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 97.3254,70.6736 L 97.2954,49.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.2954,49.2579 L 115.795,38.49' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.9168,43.9429 L 110.866,36.4055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 97.2954,49.2579 L 78.7207,38.6185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 115.795,38.49 L 121.619,41.8252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 121.619,41.8252 L 127.443,45.1604' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 115.795,38.49 L 115.72,17.0857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.72,17.0857 L 97.147,6.44771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 110.807,19.2047 L 97.8054,11.7581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 97.147,6.44771 L 78.648,17.2141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 78.648,17.2141 L 71.6295,13.1943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 71.6295,13.1943 L 64.611,9.17448' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 78.7207,38.6185 L 78.648,17.2141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-13' d='M 82.9907,35.3933 L 82.9397,20.4102' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 90.8484 111.403\\nQ 90.8484 109.948, 91.5676 109.134\\nQ 92.2868 108.321, 93.631 108.321\\nQ 94.9752 108.321, 95.6944 109.134\\nQ 96.4136 109.948, 96.4136 111.403\\nQ 96.4136 112.876, 95.6858 113.715\\nQ 94.9581 114.545, 93.631 114.545\\nQ 92.2954 114.545, 91.5676 113.715\\nQ 90.8484 112.884, 90.8484 111.403\\nM 93.631 113.861\\nQ 94.5557 113.861, 95.0523 113.244\\nQ 95.5574 112.619, 95.5574 111.403\\nQ 95.5574 110.213, 95.0523 109.614\\nQ 94.5557 109.006, 93.631 109.006\\nQ 92.7063 109.006, 92.2012 109.605\\nQ 91.7046 110.205, 91.7046 111.403\\nQ 91.7046 112.628, 92.2012 113.244\\nQ 92.7063 113.861, 93.631 113.861\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 97.1413 108.39\\nL 97.9633 108.39\\nL 97.9633 110.967\\nL 101.063 110.967\\nL 101.063 108.39\\nL 101.885 108.39\\nL 101.885 114.451\\nL 101.063 114.451\\nL 101.063 111.652\\nL 97.9633 111.652\\nL 97.9633 114.451\\nL 97.1413 114.451\\nL 97.1413 108.39\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 21.093 73.0681\\nQ 21.093 71.5612, 21.7951 70.7735\\nQ 22.5057 69.9773, 23.8499 69.9773\\nQ 25.0999 69.9773, 25.7678 70.8591\\nL 25.2027 71.3215\\nQ 24.7147 70.6794, 23.8499 70.6794\\nQ 22.9338 70.6794, 22.4458 71.2958\\nQ 21.9663 71.9037, 21.9663 73.0681\\nQ 21.9663 74.2667, 22.4629 74.8832\\nQ 22.9681 75.4996, 23.9441 75.4996\\nQ 24.6119 75.4996, 25.391 75.0972\\nL 25.6308 75.7393\\nQ 25.314 75.9448, 24.8345 76.0647\\nQ 24.3551 76.1846, 23.8242 76.1846\\nQ 22.5057 76.1846, 21.7951 75.3797\\nQ 21.093 74.5749, 21.093 73.0681\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 26.5041 69.6091\\nL 27.2918 69.6091\\nL 27.2918 76.1075\\nL 26.5041 76.1075\\nL 26.5041 69.6091\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 127.871 47.0161\\nQ 127.871 45.5606, 128.59 44.7473\\nQ 129.309 43.9339, 130.653 43.9339\\nQ 131.998 43.9339, 132.717 44.7473\\nQ 133.436 45.5606, 133.436 47.0161\\nQ 133.436 48.4887, 132.708 49.3278\\nQ 131.98 50.1583, 130.653 50.1583\\nQ 129.318 50.1583, 128.59 49.3278\\nQ 127.871 48.4973, 127.871 47.0161\\nM 130.653 49.4733\\nQ 131.578 49.4733, 132.075 48.8569\\nQ 132.58 48.2319, 132.58 47.0161\\nQ 132.58 45.826, 132.075 45.2267\\nQ 131.578 44.6188, 130.653 44.6188\\nQ 129.729 44.6188, 129.224 45.2181\\nQ 128.727 45.8175, 128.727 47.0161\\nQ 128.727 48.2404, 129.224 48.8569\\nQ 129.729 49.4733, 130.653 49.4733\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 134.164 44.0024\\nL 134.986 44.0024\\nL 134.986 46.5795\\nL 138.085 46.5795\\nL 138.085 44.0024\\nL 138.907 44.0024\\nL 138.907 50.0641\\nL 138.085 50.0641\\nL 138.085 47.2644\\nL 134.986 47.2644\\nL 134.986 50.0641\\nL 134.164 50.0641\\nL 134.164 44.0024\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 57.9842 8.91349\\nQ 57.9842 7.40662, 58.6862 6.61894\\nQ 59.3969 5.8227, 60.7411 5.8227\\nQ 61.9911 5.8227, 62.6589 6.70456\\nL 62.0938 7.16689\\nQ 61.6058 6.52476, 60.7411 6.52476\\nQ 59.825 6.52476, 59.3369 7.14121\\nQ 58.8575 7.74909, 58.8575 8.91349\\nQ 58.8575 10.1121, 59.3541 10.7286\\nQ 59.8592 11.345, 60.8352 11.345\\nQ 61.5031 11.345, 62.2822 10.9426\\nL 62.5219 11.5848\\nQ 62.2051 11.7902, 61.7257 11.9101\\nQ 61.2462 12.03, 60.7154 12.03\\nQ 59.3969 12.03, 58.6862 11.2252\\nQ 57.9842 10.4204, 57.9842 8.91349\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 63.3952 5.45455\\nL 64.1829 5.45455\\nL 64.1829 11.9529\\nL 63.3952 11.9529\\nL 63.3952 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -3.95, "data-ID": 878, "mols2grid-id": 174, "mols2grid-tooltip": "<strong>Name</strong>: dichlorphen<br><strong>SMILES</strong>: Oc(c(cc(c1)Cl)Cc(c(O)ccc2Cl)c2)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.95</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Nc1c(Cl)c(Cl)nc(C(O)=O)c1Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 126.875,83.0246 L 118.981,78.4673' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.981,78.4673 L 111.087,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.087,73.91 L 111.087,45.9895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.503,69.7219 L 105.503,50.1776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-1' d='M 86.9076,87.8702 L 111.087,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.087,45.9895 L 118.956,41.4467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 118.956,41.4467 L 126.825,36.9039' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 111.087,45.9895 L 86.9076,32.0293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.9076,32.0293 L 86.9076,23.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 86.9076,23.3097 L 86.9076,14.5901' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 86.9076,32.0293 L 76.6664,37.9422' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 76.6664,37.9422 L 66.4251,43.8552' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 86.6273,38.6391 L 79.4585,42.7782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 79.4585,42.7782 L 72.2896,46.9172' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 62.7285,50.6411 L 62.7285,62.2755' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 62.7285,62.2755 L 62.7285,73.91' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 62.7285,73.91 L 38.5065,87.8293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 62.7285,73.91 L 86.9076,87.8702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-11' d='M 69.1474,71.1681 L 86.0728,80.9403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 38.5065,87.8293 L 38.491,96.7192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 38.491,96.7192 L 38.4754,105.609' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 39.906,85.4133 L 32.3358,81.0282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 32.3358,81.0282 L 24.7657,76.6432' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 37.107,90.2453 L 29.5369,85.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 29.5369,85.8602 L 21.9667,81.4751' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.9076,87.8702 L 86.9076,96.8802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.9076,96.8802 L 86.9076,105.89' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.684 81.1246\\nL 131.275 85.3127\\nQ 131.532 85.7259, 131.945 86.4742\\nQ 132.358 87.2225, 132.381 87.2671\\nL 132.381 81.1246\\nL 133.431 81.1246\\nL 133.431 89.0317\\nL 132.347 89.0317\\nL 129.566 84.4528\\nQ 129.242 83.9167, 128.896 83.3024\\nQ 128.561 82.6882, 128.461 82.4983\\nL 128.461 89.0317\\nL 127.433 89.0317\\nL 127.433 81.1246\\nL 128.684 81.1246\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 134.38 81.1246\\nL 135.452 81.1246\\nL 135.452 84.4863\\nL 139.495 84.4863\\nL 139.495 81.1246\\nL 140.567 81.1246\\nL 140.567 89.0317\\nL 139.495 89.0317\\nL 139.495 85.3797\\nL 135.452 85.3797\\nL 135.452 89.0317\\nL 134.38 89.0317\\nL 134.38 81.1246\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 140.95 88.7543\\nQ 141.142 88.2604, 141.599 87.9877\\nQ 142.056 87.7076, 142.69 87.7076\\nQ 143.479 87.7076, 143.921 88.1351\\nQ 144.363 88.5627, 144.363 89.3219\\nQ 144.363 90.0958, 143.788 90.8182\\nQ 143.221 91.5405, 142.041 92.3956\\nL 144.452 92.3956\\nL 144.452 92.9853\\nL 140.936 92.9853\\nL 140.936 92.4914\\nQ 141.909 91.7985, 142.484 91.2826\\nQ 143.066 90.7666, 143.346 90.3022\\nQ 143.626 89.8378, 143.626 89.3587\\nQ 143.626 88.8575, 143.375 88.5774\\nQ 143.125 88.2973, 142.69 88.2973\\nQ 142.27 88.2973, 141.99 88.4668\\nQ 141.71 88.6364, 141.511 89.0123\\nL 140.95 88.7543\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 127.383 35.0949\\nQ 127.383 33.1293, 128.299 32.1019\\nQ 129.226 31.0632, 130.979 31.0632\\nQ 132.61 31.0632, 133.481 32.2135\\nL 132.744 32.8166\\nQ 132.107 31.979, 130.979 31.979\\nQ 129.784 31.979, 129.148 32.7831\\nQ 128.522 33.5761, 128.522 35.0949\\nQ 128.522 36.6585, 129.17 37.4626\\nQ 129.829 38.2667, 131.102 38.2667\\nQ 131.973 38.2667, 132.989 37.7418\\nL 133.302 38.5794\\nQ 132.889 38.8474, 132.263 39.0038\\nQ 131.638 39.1602, 130.946 39.1602\\nQ 129.226 39.1602, 128.299 38.1103\\nQ 127.383 37.0605, 127.383 35.0949\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 134.441 30.583\\nL 135.469 30.583\\nL 135.469 39.0596\\nL 134.441 39.0596\\nL 134.441 30.583\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 83.8587 9.9665\\nQ 83.8587 8.00089, 84.7745 6.97342\\nQ 85.7014 5.93478, 87.4548 5.93478\\nQ 89.0854 5.93478, 89.9565 7.0851\\nL 89.2194 7.68818\\nQ 88.5828 6.85057, 87.4548 6.85057\\nQ 86.2598 6.85057, 85.6233 7.65468\\nQ 84.9978 8.44762, 84.9978 9.9665\\nQ 84.9978 11.53, 85.6456 12.3342\\nQ 86.3045 13.1383, 87.5777 13.1383\\nQ 88.4488 13.1383, 89.4651 12.6134\\nL 89.7778 13.451\\nQ 89.3646 13.719, 88.7392 13.8754\\nQ 88.1138 14.0317, 87.4213 14.0317\\nQ 85.7014 14.0317, 84.7745 12.9819\\nQ 83.8587 11.9321, 83.8587 9.9665\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 90.917 5.45455\\nL 91.9445 5.45455\\nL 91.9445 13.9312\\nL 90.917 13.9312\\nL 90.917 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 60.9806 42.036\\nL 63.5717 46.224\\nQ 63.8285 46.6373, 64.2418 47.3855\\nQ 64.655 48.1338, 64.6773 48.1785\\nL 64.6773 42.036\\nL 65.7271 42.036\\nL 65.7271 49.943\\nL 64.6438 49.943\\nL 61.8629 45.3641\\nQ 61.5391 44.828, 61.1928 44.2138\\nQ 60.8578 43.5995, 60.7573 43.4096\\nL 60.7573 49.943\\nL 59.7298 49.943\\nL 59.7298 42.036\\nL 60.9806 42.036\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 34.8378 110.188\\nQ 34.8378 108.289, 35.7759 107.228\\nQ 36.714 106.167, 38.4674 106.167\\nQ 40.2208 106.167, 41.159 107.228\\nQ 42.0971 108.289, 42.0971 110.188\\nQ 42.0971 112.109, 41.1478 113.203\\nQ 40.1985 114.287, 38.4674 114.287\\nQ 36.7252 114.287, 35.7759 113.203\\nQ 34.8378 112.12, 34.8378 110.188\\nM 38.4674 113.393\\nQ 39.6736 113.393, 40.3213 112.589\\nQ 40.9803 111.774, 40.9803 110.188\\nQ 40.9803 108.636, 40.3213 107.854\\nQ 39.6736 107.061, 38.4674 107.061\\nQ 37.2613 107.061, 36.6023 107.843\\nQ 35.9546 108.624, 35.9546 110.188\\nQ 35.9546 111.785, 36.6023 112.589\\nQ 37.2613 113.393, 38.4674 113.393\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 43.0464 106.257\\nL 44.1185 106.257\\nL 44.1185 109.618\\nL 48.1614 109.618\\nL 48.1614 106.257\\nL 49.2336 106.257\\nL 49.2336 114.164\\nL 48.1614 114.164\\nL 48.1614 110.512\\nL 44.1185 110.512\\nL 44.1185 114.164\\nL 43.0464 114.164\\nL 43.0464 106.257\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 15.5484 76.6555\\nQ 15.5484 74.7569, 16.4866 73.6959\\nQ 17.4247 72.6349, 19.1781 72.6349\\nQ 20.9315 72.6349, 21.8696 73.6959\\nQ 22.8078 74.7569, 22.8078 76.6555\\nQ 22.8078 78.5764, 21.8585 79.6709\\nQ 20.9092 80.7542, 19.1781 80.7542\\nQ 17.4359 80.7542, 16.4866 79.6709\\nQ 15.5484 78.5876, 15.5484 76.6555\\nM 19.1781 79.8608\\nQ 20.3843 79.8608, 21.032 79.0567\\nQ 21.6909 78.2414, 21.6909 76.6555\\nQ 21.6909 75.1031, 21.032 74.3213\\nQ 20.3843 73.5284, 19.1781 73.5284\\nQ 17.9719 73.5284, 17.313 74.3102\\nQ 16.6653 75.092, 16.6653 76.6555\\nQ 16.6653 78.2526, 17.313 79.0567\\nQ 17.9719 79.8608, 19.1781 79.8608\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 83.8587 110.48\\nQ 83.8587 108.515, 84.7745 107.487\\nQ 85.7014 106.449, 87.4548 106.449\\nQ 89.0854 106.449, 89.9565 107.599\\nL 89.2194 108.202\\nQ 88.5828 107.364, 87.4548 107.364\\nQ 86.2598 107.364, 85.6233 108.168\\nQ 84.9978 108.961, 84.9978 110.48\\nQ 84.9978 112.044, 85.6456 112.848\\nQ 86.3045 113.652, 87.5777 113.652\\nQ 88.4488 113.652, 89.4651 113.127\\nL 89.7778 113.965\\nQ 89.3646 114.233, 88.7392 114.389\\nQ 88.1138 114.545, 87.4213 114.545\\nQ 85.7014 114.545, 84.7745 113.496\\nQ 83.8587 112.446, 83.8587 110.48\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 90.917 105.968\\nL 91.9445 105.968\\nL 91.9445 114.445\\nL 90.917 114.445\\nL 90.917 105.968\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.75, "data-ID": 883, "mols2grid-id": 175, "mols2grid-tooltip": "<strong>Name</strong>: picloram<br><strong>SMILES</strong>: Nc1c(Cl)c(Cl)nc(C(O)=O)c1Cl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)C(N)Cc(ccc(O)c1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.227,107.007 L 124.238,99.2802' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.238,99.2802 L 124.249,91.5536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.374,107 L 119.385,99.2733' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.385,99.2733 L 119.396,91.5467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.822,91.5502 L 128.417,87.7579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.417,87.7579 L 135.012,83.9657' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 121.822,91.5502 L 100.82,79.3666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.82,79.3666 L 93.951,83.3165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 93.951,83.3165 L 87.0819,87.2665' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 100.82,79.3666 L 100.856,55.0868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.856,55.0868 L 79.852,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.852,42.9032 L 79.852,18.6363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.9986,39.2631 L 74.9986,22.2763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-6 atom-12' d='M 79.852,42.9032 L 58.8369,55.0366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 79.852,18.6363 L 58.8369,6.50287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.8369,6.50287 L 37.8218,18.6363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.1113,12.526 L 43.4008,21.0194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 37.8218,18.6363 L 31.2349,14.8337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 31.2349,14.8337 L 24.6481,11.031' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 37.8218,18.6363 L 37.8218,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-11' d='M 58.8369,55.0366 L 37.8218,42.9032' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-11' d='M 58.1113,49.0135 L 43.4008,40.5201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.64 110.983\\nQ 118.64 109.333, 119.456 108.411\\nQ 120.271 107.489, 121.795 107.489\\nQ 123.319 107.489, 124.134 108.411\\nQ 124.95 109.333, 124.95 110.983\\nQ 124.95 112.653, 124.124 113.604\\nQ 123.299 114.545, 121.795 114.545\\nQ 120.281 114.545, 119.456 113.604\\nQ 118.64 112.662, 118.64 110.983\\nM 121.795 113.769\\nQ 122.843 113.769, 123.406 113.07\\nQ 123.979 112.361, 123.979 110.983\\nQ 123.979 109.634, 123.406 108.954\\nQ 122.843 108.265, 121.795 108.265\\nQ 120.747 108.265, 120.174 108.945\\nQ 119.611 109.624, 119.611 110.983\\nQ 119.611 112.371, 120.174 113.07\\nQ 120.747 113.769, 121.795 113.769\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.498 81.892\\nQ 135.498 80.2418, 136.313 79.3197\\nQ 137.128 78.3975, 138.652 78.3975\\nQ 140.176 78.3975, 140.992 79.3197\\nQ 141.807 80.2418, 141.807 81.892\\nQ 141.807 83.5615, 140.982 84.5128\\nQ 140.157 85.4543, 138.652 85.4543\\nQ 137.138 85.4543, 136.313 84.5128\\nQ 135.498 83.5712, 135.498 81.892\\nM 138.652 84.6778\\nQ 139.701 84.6778, 140.264 83.9789\\nQ 140.836 83.2703, 140.836 81.892\\nQ 140.836 80.5427, 140.264 79.8632\\nQ 139.701 79.1741, 138.652 79.1741\\nQ 137.604 79.1741, 137.031 79.8535\\nQ 136.468 80.533, 136.468 81.892\\nQ 136.468 83.28, 137.031 83.9789\\nQ 137.604 84.6778, 138.652 84.6778\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 142.632 78.4752\\nL 143.564 78.4752\\nL 143.564 81.3969\\nL 147.078 81.3969\\nL 147.078 78.4752\\nL 148.01 78.4752\\nL 148.01 85.3476\\nL 147.078 85.3476\\nL 147.078 82.1734\\nL 143.564 82.1734\\nL 143.564 85.3476\\nL 142.632 85.3476\\nL 142.632 78.4752\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 71.8246 85.608\\nL 72.7565 85.608\\nL 72.7565 88.5298\\nL 76.2703 88.5298\\nL 76.2703 85.608\\nL 77.2022 85.608\\nL 77.2022 92.4804\\nL 76.2703 92.4804\\nL 76.2703 89.3063\\nL 72.7565 89.3063\\nL 72.7565 92.4804\\nL 71.8246 92.4804\\nL 71.8246 85.608\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 77.5353 92.2393\\nQ 77.7019 91.81, 78.0991 91.573\\nQ 78.4963 91.3296, 79.0472 91.3296\\nQ 79.7327 91.3296, 80.1171 91.7011\\nQ 80.5015 92.0727, 80.5015 92.7326\\nQ 80.5015 93.4053, 80.0018 94.0331\\nQ 79.5085 94.6609, 78.4834 95.4041\\nL 80.5784 95.4041\\nL 80.5784 95.9166\\nL 77.5225 95.9166\\nL 77.5225 95.4874\\nQ 78.3681 94.8851, 78.8678 94.4367\\nQ 79.3739 93.9882, 79.6174 93.5846\\nQ 79.8608 93.181, 79.8608 92.7646\\nQ 79.8608 92.329, 79.643 92.0855\\nQ 79.4252 91.8421, 79.0472 91.8421\\nQ 78.6821 91.8421, 78.4386 91.9894\\nQ 78.1952 92.1368, 78.0222 92.4635\\nL 77.5353 92.2393\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 82.4712 85.608\\nL 84.7231 89.2481\\nQ 84.9464 89.6072, 85.3055 90.2576\\nQ 85.6647 90.9079, 85.6841 90.9467\\nL 85.6841 85.608\\nL 86.5965 85.608\\nL 86.5965 92.4804\\nL 85.655 92.4804\\nL 83.238 88.5006\\nQ 82.9565 88.0347, 82.6556 87.5008\\nQ 82.3644 86.967, 82.277 86.8019\\nL 82.277 92.4804\\nL 81.384 92.4804\\nL 81.384 85.608\\nL 82.4712 85.608\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 11.9905 5.5322\\nL 12.9223 5.5322\\nL 12.9223 8.45393\\nL 16.4362 8.45393\\nL 16.4362 5.5322\\nL 17.368 5.5322\\nL 17.368 12.4046\\nL 16.4362 12.4046\\nL 16.4362 9.23047\\nL 12.9223 9.23047\\nL 12.9223 12.4046\\nL 11.9905 12.4046\\nL 11.9905 5.5322\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 17.8534 8.94897\\nQ 17.8534 7.29883, 18.6687 6.37669\\nQ 19.4841 5.45455, 21.008 5.45455\\nQ 22.532 5.45455, 23.3474 6.37669\\nQ 24.1627 7.29883, 24.1627 8.94897\\nQ 24.1627 10.6185, 23.3377 11.5698\\nQ 22.5126 12.5114, 21.008 12.5114\\nQ 19.4938 12.5114, 18.6687 11.5698\\nQ 17.8534 10.6282, 17.8534 8.94897\\nM 21.008 11.7348\\nQ 22.0564 11.7348, 22.6194 11.0359\\nQ 23.1921 10.3273, 23.1921 8.94897\\nQ 23.1921 7.59974, 22.6194 6.92026\\nQ 22.0564 6.23109, 21.008 6.23109\\nQ 19.9597 6.23109, 19.387 6.91056\\nQ 18.824 7.59003, 18.824 8.94897\\nQ 18.824 10.337, 19.387 11.0359\\nQ 19.9597 11.7348, 21.008 11.7348\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.57, "data-ID": 888, "mols2grid-id": 176, "mols2grid-tooltip": "<strong>Name</strong>: L-tyrosine<br><strong>SMILES</strong>: O=C(O)C(N)Cc(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,58.2917 L 22.1687,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.1687,49.6972 L 22.1687,32.4996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 22.1687,49.6972 L 30.0608,54.2503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 30.0608,54.2503 L 37.953,58.8035' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8069,64.0274 L 40.8254,72.9908' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8254,72.9908 L 40.8439,81.9542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-3 atom-7' d='M 43.646,58.8035 L 51.5381,54.2503' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-3 atom-7' d='M 51.5381,54.2503 L 59.4302,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8439,81.9542 L 55.7499,90.5329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 40.8439,81.9542 L 25.9651,90.5788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 61.5799,49.6972 L 61.5799,42.8998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 61.5799,42.8998 L 61.5799,36.1025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.2805,49.6972 L 57.2805,42.8998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.2805,42.8998 L 57.2805,36.1025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 59.4302,49.6972 L 67.5008,54.3533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 67.5008,54.3533 L 75.5713,59.0094' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 80.5506,59.0094 L 88.6212,54.3533' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 88.6212,54.3533 L 96.6917,49.6972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 96.6917,49.6972 L 115.321,60.4457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.321,60.4457 L 115.321,67.3828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 115.321,67.3828 L 115.321,74.3199' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 116.395,62.3077 L 132.878,47.8352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 114.247,58.5837 L 135.026,51.5592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.952,49.6972 L 140.012,53.1933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 140.012,53.1933 L 146.072,56.6894' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 39.4538 57.4017\\nL 41.4487 60.6263\\nQ 41.6465 60.9444, 41.9646 61.5206\\nQ 42.2828 62.0967, 42.3 62.1311\\nL 42.3 57.4017\\nL 43.1083 57.4017\\nL 43.1083 63.4897\\nL 42.2742 63.4897\\nL 40.1331 59.9642\\nQ 39.8837 59.5514, 39.6171 59.0785\\nQ 39.3592 58.6056, 39.2818 58.4594\\nL 39.2818 63.4897\\nL 38.4907 63.4897\\nL 38.4907 57.4017\\nL 39.4538 57.4017\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 56.6356 32.5168\\nQ 56.6356 31.055, 57.3579 30.2381\\nQ 58.0802 29.4212, 59.4302 29.4212\\nQ 60.7802 29.4212, 61.5025 30.2381\\nQ 62.2248 31.055, 62.2248 32.5168\\nQ 62.2248 33.9958, 61.4939 34.8385\\nQ 60.763 35.6725, 59.4302 35.6725\\nQ 58.0888 35.6725, 57.3579 34.8385\\nQ 56.6356 34.0044, 56.6356 32.5168\\nM 59.4302 34.9846\\nQ 60.3589 34.9846, 60.8576 34.3655\\nQ 61.365 33.7378, 61.365 32.5168\\nQ 61.365 31.3215, 60.8576 30.7196\\nQ 60.3589 30.1091, 59.4302 30.1091\\nQ 58.5016 30.1091, 57.9942 30.711\\nQ 57.4955 31.3129, 57.4955 32.5168\\nQ 57.4955 33.7464, 57.9942 34.3655\\nQ 58.5016 34.9846, 59.4302 34.9846\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 76.3412 62.5352\\nQ 76.41 62.561, 76.6938 62.6814\\nQ 76.9775 62.8018, 77.2871 62.8792\\nQ 77.6052 62.948, 77.9148 62.948\\nQ 78.4909 62.948, 78.8263 62.6728\\nQ 79.1616 62.389, 79.1616 61.8989\\nQ 79.1616 61.5635, 78.9896 61.3572\\nQ 78.8263 61.1508, 78.5683 61.039\\nQ 78.3103 60.9272, 77.8804 60.7983\\nQ 77.3387 60.6349, 77.0119 60.4801\\nQ 76.6938 60.3253, 76.4616 59.9986\\nQ 76.238 59.6718, 76.238 59.1215\\nQ 76.238 58.3562, 76.754 57.8833\\nQ 77.2785 57.4103, 78.3103 57.4103\\nQ 79.0154 57.4103, 79.8151 57.7457\\nL 79.6174 58.4078\\nQ 78.8865 58.1068, 78.3361 58.1068\\nQ 77.7428 58.1068, 77.4161 58.3562\\nQ 77.0893 58.597, 77.0979 59.0183\\nQ 77.0979 59.3451, 77.2613 59.5428\\nQ 77.4333 59.7406, 77.674 59.8524\\nQ 77.9234 59.9642, 78.3361 60.0932\\nQ 78.8865 60.2651, 79.2132 60.4371\\nQ 79.54 60.6091, 79.7721 60.9616\\nQ 80.0129 61.3056, 80.0129 61.8989\\nQ 80.0129 62.7416, 79.4454 63.1973\\nQ 78.8865 63.6445, 77.9492 63.6445\\nQ 77.4075 63.6445, 76.9947 63.5241\\nQ 76.5906 63.4123, 76.109 63.2145\\nL 76.3412 62.5352\\n' fill='#CCCC00'/>\\n<path class='atom-12' d='M 112.974 77.854\\nQ 112.974 76.3406, 113.679 75.5495\\nQ 114.392 74.7498, 115.742 74.7498\\nQ 116.998 74.7498, 117.669 75.6355\\nL 117.101 76.0998\\nQ 116.611 75.4549, 115.742 75.4549\\nQ 114.822 75.4549, 114.332 76.074\\nQ 113.851 76.6846, 113.851 77.854\\nQ 113.851 79.0578, 114.349 79.6769\\nQ 114.857 80.296, 115.837 80.296\\nQ 116.508 80.296, 117.29 79.8919\\nL 117.531 80.5368\\nQ 117.213 80.7432, 116.731 80.8636\\nQ 116.25 80.984, 115.717 80.984\\nQ 114.392 80.984, 113.679 80.1757\\nQ 112.974 79.3674, 112.974 77.854\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 118.408 74.3801\\nL 119.199 74.3801\\nL 119.199 80.9066\\nL 118.408 80.9066\\nL 118.408 74.3801\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 146.502 58.5024\\nQ 146.502 56.989, 147.207 56.1979\\nQ 147.921 55.3982, 149.271 55.3982\\nQ 150.526 55.3982, 151.197 56.2839\\nL 150.629 56.7482\\nQ 150.139 56.1033, 149.271 56.1033\\nQ 148.35 56.1033, 147.86 56.7224\\nQ 147.379 57.3329, 147.379 58.5024\\nQ 147.379 59.7062, 147.878 60.3253\\nQ 148.385 60.9444, 149.365 60.9444\\nQ 150.036 60.9444, 150.818 60.5403\\nL 151.059 61.1852\\nQ 150.741 61.3916, 150.259 61.512\\nQ 149.778 61.6323, 149.245 61.6323\\nQ 147.921 61.6323, 147.207 60.8241\\nQ 146.502 60.0158, 146.502 58.5024\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 151.936 55.0285\\nL 152.727 55.0285\\nL 152.727 61.555\\nL 151.936 61.555\\nL 151.936 55.0285\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -4.08, "data-ID": 893, "mols2grid-id": 177, "mols2grid-tooltip": "<strong>Name</strong>: diallate<br><strong>SMILES</strong>: CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.08</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(OCCCC)c(ccc(O)c1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 107.235,36.1475 L 102.168,39.0614' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 102.168,39.0614 L 97.101,41.9753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.094,39.3803 L 104.027,42.2942' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.027,42.2942 L 98.9601,45.2081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.0306,43.5917 L 98.0192,51.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.0192,51.3516 L 98.0078,59.1116' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-1 atom-7' d='M 98.0306,43.5917 L 81.8914,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 100.894,63.9249 L 107.517,67.7674' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 107.517,67.7674 L 114.141,71.61' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.141,71.61 L 114.115,90.2664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.115,90.2664 L 130.253,99.6282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 130.253,99.6282 L 130.232,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 81.8914,34.2299 L 81.8914,15.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.1621,31.4329 L 78.1621,18.3803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-13' d='M 81.8914,34.2299 L 65.7435,43.5531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 81.8914,15.5833 L 65.7435,6.26008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.7435,6.26008 L 49.5956,15.5833' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 65.186,10.8882 L 53.8825,17.4145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 49.5956,15.5833 L 44.5343,12.6614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 44.5343,12.6614 L 39.473,9.73947' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 49.5956,15.5833 L 49.5956,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-12' d='M 65.7435,43.5531 L 49.5956,34.2299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-12' d='M 65.186,38.925 L 53.8825,32.3987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 108.537 36.1704\\nQ 108.537 34.9024, 109.164 34.1938\\nQ 109.79 33.4853, 110.961 33.4853\\nQ 112.132 33.4853, 112.759 34.1938\\nQ 113.385 34.9024, 113.385 36.1704\\nQ 113.385 37.4532, 112.751 38.1842\\nQ 112.117 38.9077, 110.961 38.9077\\nQ 109.798 38.9077, 109.164 38.1842\\nQ 108.537 37.4607, 108.537 36.1704\\nM 110.961 38.311\\nQ 111.767 38.311, 112.199 37.774\\nQ 112.64 37.2295, 112.64 36.1704\\nQ 112.64 35.1336, 112.199 34.6115\\nQ 111.767 34.0819, 110.961 34.0819\\nQ 110.156 34.0819, 109.716 34.604\\nQ 109.283 35.1261, 109.283 36.1704\\nQ 109.283 37.2369, 109.716 37.774\\nQ 110.156 38.311, 110.961 38.311\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 95.5792 62.2631\\nQ 95.5792 60.9951, 96.2057 60.2865\\nQ 96.8322 59.578, 98.0032 59.578\\nQ 99.1742 59.578, 99.8008 60.2865\\nQ 100.427 60.9951, 100.427 62.2631\\nQ 100.427 63.5459, 99.7933 64.2769\\nQ 99.1593 65.0004, 98.0032 65.0004\\nQ 96.8397 65.0004, 96.2057 64.2769\\nQ 95.5792 63.5534, 95.5792 62.2631\\nM 98.0032 64.4037\\nQ 98.8088 64.4037, 99.2414 63.8667\\nQ 99.6814 63.3222, 99.6814 62.2631\\nQ 99.6814 61.2263, 99.2414 60.7042\\nQ 98.8088 60.1747, 98.0032 60.1747\\nQ 97.1977 60.1747, 96.7576 60.6968\\nQ 96.325 61.2189, 96.325 62.2631\\nQ 96.325 63.3296, 96.7576 63.8667\\nQ 97.1977 64.4037, 98.0032 64.4037\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 29.747 5.51421\\nL 30.463 5.51421\\nL 30.463 7.75926\\nL 33.163 7.75926\\nL 33.163 5.51421\\nL 33.879 5.51421\\nL 33.879 10.7949\\nL 33.163 10.7949\\nL 33.163 8.35595\\nL 30.463 8.35595\\nL 30.463 10.7949\\nL 29.747 10.7949\\nL 29.747 5.51421\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 34.252 8.13965\\nQ 34.252 6.87168, 34.8785 6.16311\\nQ 35.505 5.45455, 36.676 5.45455\\nQ 37.847 5.45455, 38.4736 6.16311\\nQ 39.1001 6.87168, 39.1001 8.13965\\nQ 39.1001 9.42253, 38.4661 10.1535\\nQ 37.8321 10.877, 36.676 10.877\\nQ 35.5125 10.877, 34.8785 10.1535\\nQ 34.252 9.42999, 34.252 8.13965\\nM 36.676 10.2803\\nQ 37.4816 10.2803, 37.9142 9.74325\\nQ 38.3542 9.19877, 38.3542 8.13965\\nQ 38.3542 7.1029, 37.9142 6.5808\\nQ 37.4816 6.05123, 36.676 6.05123\\nQ 35.8705 6.05123, 35.4304 6.57334\\nQ 34.9978 7.09544, 34.9978 8.13965\\nQ 34.9978 9.20623, 35.4304 9.74325\\nQ 35.8705 10.2803, 36.676 10.2803\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.72, "data-ID": 898, "mols2grid-id": 178, "mols2grid-tooltip": "<strong>Name</strong>: butyl-p-hydroxybenzoate<br><strong>SMILES</strong>: O=C(OCCCC)c(ccc(O)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.72</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OCCC)c(cc(O)c(O)c1O)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.855,52.9342 L 103.788,55.8484' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.788,55.8484 L 98.7202,58.7626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 110.714,56.1674 L 105.647,59.0816' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.647,59.0816 L 100.58,61.9958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6499,60.3792 L 99.6385,68.1399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.6385,68.1399 L 99.6271,75.9007' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 99.6499,60.3792 L 83.509,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.513,80.7145 L 109.138,84.5574' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 109.138,84.5574 L 115.762,88.4003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.762,88.4003 L 115.736,107.059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 115.736,107.059 L 128.641,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 83.509,51.0164 L 83.509,32.368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 79.7793,48.2192 L 79.7793,35.1652' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-6 atom-14' d='M 83.509,51.0164 L 67.3595,60.3406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.509,32.368 L 67.3595,23.0438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 67.3595,23.0438 L 67.3595,17.1471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 67.3595,17.1471 L 67.3595,11.2505' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 67.3595,23.0438 L 51.2099,32.368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 66.8019,27.6724 L 55.4972,34.1993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 51.2099,32.368 L 46.1481,29.4457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 46.1481,29.4457 L 41.0863,26.5235' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 51.2099,32.368 L 51.2099,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 51.2099,51.0164 L 46.1481,53.9387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 46.1481,53.9387 L 41.0863,56.8609' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-12' d='M 67.3595,60.3406 L 51.2099,51.0164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-12' d='M 66.8019,55.712 L 55.4972,49.1851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.158 52.9571\\nQ 110.158 51.689, 110.784 50.9804\\nQ 111.411 50.2717, 112.582 50.2717\\nQ 113.753 50.2717, 114.38 50.9804\\nQ 115.006 51.689, 115.006 52.9571\\nQ 115.006 54.2401, 114.372 54.9711\\nQ 113.738 55.6947, 112.582 55.6947\\nQ 111.418 55.6947, 110.784 54.9711\\nQ 110.158 54.2476, 110.158 52.9571\\nM 112.582 55.0979\\nQ 113.388 55.0979, 113.82 54.5609\\nQ 114.26 54.0163, 114.26 52.9571\\nQ 114.26 51.9203, 113.82 51.3981\\nQ 113.388 50.8685, 112.582 50.8685\\nQ 111.776 50.8685, 111.336 51.3906\\nQ 110.904 51.9128, 110.904 52.9571\\nQ 110.904 54.0238, 111.336 54.5609\\nQ 111.776 55.0979, 112.582 55.0979\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 97.1982 79.0525\\nQ 97.1982 77.7844, 97.8248 77.0758\\nQ 98.4514 76.3671, 99.6225 76.3671\\nQ 100.794 76.3671, 101.42 77.0758\\nQ 102.047 77.7844, 102.047 79.0525\\nQ 102.047 80.3355, 101.413 81.0665\\nQ 100.779 81.7901, 99.6225 81.7901\\nQ 98.4589 81.7901, 97.8248 81.0665\\nQ 97.1982 80.343, 97.1982 79.0525\\nM 99.6225 81.1933\\nQ 100.428 81.1933, 100.861 80.6563\\nQ 101.301 80.1117, 101.301 79.0525\\nQ 101.301 78.0156, 100.861 77.4935\\nQ 100.428 76.9639, 99.6225 76.9639\\nQ 98.8169 76.9639, 98.3768 77.486\\nQ 97.9442 78.0082, 97.9442 79.0525\\nQ 97.9442 80.1192, 98.3768 80.6563\\nQ 98.8169 81.1933, 99.6225 81.1933\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 64.9352 8.13992\\nQ 64.9352 6.87183, 65.5618 6.16319\\nQ 66.1883 5.45455, 67.3595 5.45455\\nQ 68.5306 5.45455, 69.1572 6.16319\\nQ 69.7838 6.87183, 69.7838 8.13992\\nQ 69.7838 9.42293, 69.1497 10.154\\nQ 68.5157 10.8775, 67.3595 10.8775\\nQ 66.1958 10.8775, 65.5618 10.154\\nQ 64.9352 9.43039, 64.9352 8.13992\\nM 67.3595 10.2808\\nQ 68.1651 10.2808, 68.5977 9.74369\\nQ 69.0378 9.19915, 69.0378 8.13992\\nQ 69.0378 7.10307, 68.5977 6.58091\\nQ 68.1651 6.0513, 67.3595 6.0513\\nQ 66.5539 6.0513, 66.1137 6.57345\\nQ 65.6811 7.09561, 65.6811 8.13992\\nQ 65.6811 9.20661, 66.1137 9.74369\\nQ 66.5539 10.2808, 67.3595 10.2808\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 70.4178 5.51422\\nL 71.1339 5.51422\\nL 71.1339 7.75949\\nL 73.8342 7.75949\\nL 73.8342 5.51422\\nL 74.5503 5.51422\\nL 74.5503 10.7955\\nL 73.8342 10.7955\\nL 73.8342 8.35624\\nL 71.1339 8.35624\\nL 71.1339 10.7955\\nL 70.4178 10.7955\\nL 70.4178 5.51422\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 31.3593 22.2978\\nL 32.0754 22.2978\\nL 32.0754 24.5431\\nL 34.7757 24.5431\\nL 34.7757 22.2978\\nL 35.4918 22.2978\\nL 35.4918 27.5791\\nL 34.7757 27.5791\\nL 34.7757 25.1398\\nL 32.0754 25.1398\\nL 32.0754 27.5791\\nL 31.3593 27.5791\\nL 31.3593 22.2978\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 35.8647 24.9235\\nQ 35.8647 23.6554, 36.4913 22.9468\\nQ 37.1179 22.2381, 38.289 22.2381\\nQ 39.4601 22.2381, 40.0867 22.9468\\nQ 40.7133 23.6554, 40.7133 24.9235\\nQ 40.7133 26.2065, 40.0793 26.9376\\nQ 39.4452 27.6611, 38.289 27.6611\\nQ 37.1254 27.6611, 36.4913 26.9376\\nQ 35.8647 26.214, 35.8647 24.9235\\nM 38.289 27.0644\\nQ 39.0946 27.0644, 39.5273 26.5273\\nQ 39.9674 25.9828, 39.9674 24.9235\\nQ 39.9674 23.8867, 39.5273 23.3645\\nQ 39.0946 22.8349, 38.289 22.8349\\nQ 37.4834 22.8349, 37.0433 23.3571\\nQ 36.6107 23.8792, 36.6107 24.9235\\nQ 36.6107 25.9902, 37.0433 26.5273\\nQ 37.4834 27.0644, 38.289 27.0644\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 31.3593 55.865\\nL 32.0754 55.865\\nL 32.0754 58.1103\\nL 34.7757 58.1103\\nL 34.7757 55.865\\nL 35.4918 55.865\\nL 35.4918 61.1463\\nL 34.7757 61.1463\\nL 34.7757 58.707\\nL 32.0754 58.707\\nL 32.0754 61.1463\\nL 31.3593 61.1463\\nL 31.3593 55.865\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 35.8647 58.4907\\nQ 35.8647 57.2226, 36.4913 56.514\\nQ 37.1179 55.8053, 38.289 55.8053\\nQ 39.4601 55.8053, 40.0867 56.514\\nQ 40.7133 57.2226, 40.7133 58.4907\\nQ 40.7133 59.7737, 40.0793 60.5048\\nQ 39.4452 61.2283, 38.289 61.2283\\nQ 37.1254 61.2283, 36.4913 60.5048\\nQ 35.8647 59.7812, 35.8647 58.4907\\nM 38.289 60.6316\\nQ 39.0946 60.6316, 39.5273 60.0945\\nQ 39.9674 59.55, 39.9674 58.4907\\nQ 39.9674 57.4539, 39.5273 56.9317\\nQ 39.0946 56.4021, 38.289 56.4021\\nQ 37.4834 56.4021, 37.0433 56.9243\\nQ 36.6107 57.4464, 36.6107 58.4907\\nQ 36.6107 59.5574, 37.0433 60.0945\\nQ 37.4834 60.6316, 38.289 60.6316\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.78, "data-ID": 903, "mols2grid-id": 179, "mols2grid-tooltip": "<strong>Name</strong>: propyl_gallate<br><strong>SMILES</strong>: O=C(OCCC)c(cc(O)c(O)c1O)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.78</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCCCCOC(=O)c1ccc(N)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.512,114.545 L 120.81,107.756' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.81,107.756 L 120.833,90.8362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 120.833,90.8362 L 106.197,82.3457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 106.197,82.3457 L 106.221,65.4256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.221,65.4256 L 100.214,61.9408' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.214,61.9408 L 94.2066,58.4559' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5893,54.0905 L 91.5996,47.0528' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5996,47.0528 L 91.61,40.0151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 92.453,41.4811 L 97.0483,38.8384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 97.0483,38.8384 L 101.644,36.1957' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.7669,38.5491 L 95.3622,35.9064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 95.3622,35.9064 L 99.9575,33.2638' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 91.61,40.0151 L 76.9729,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 76.9729,31.5246 L 76.9729,14.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 73.5907,28.988 L 73.5907,17.1502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-8' d='M 62.3279,39.9801 L 76.9729,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 76.9729,14.6136 L 62.3279,6.15805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 62.3279,6.15805 L 47.6829,14.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 61.8223,10.3554 L 51.5708,16.2743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 47.6829,14.6136 L 42.9016,11.8533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 42.9016,11.8533 L 38.1203,9.09296' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 47.6829,14.6136 L 47.6829,31.5246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 47.6829,31.5246 L 62.3279,39.9801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 51.5708,29.8639 L 61.8223,35.7828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 89.3867 56.9487\\nQ 89.3867 55.7987, 89.9549 55.1561\\nQ 90.5231 54.5135, 91.5851 54.5135\\nQ 92.6472 54.5135, 93.2154 55.1561\\nQ 93.7836 55.7987, 93.7836 56.9487\\nQ 93.7836 58.1122, 93.2086 58.7751\\nQ 92.6336 59.4312, 91.5851 59.4312\\nQ 90.5299 59.4312, 89.9549 58.7751\\nQ 89.3867 58.1189, 89.3867 56.9487\\nM 91.5851 58.8901\\nQ 92.3157 58.8901, 92.708 58.403\\nQ 93.1071 57.9092, 93.1071 56.9487\\nQ 93.1071 56.0084, 92.708 55.5349\\nQ 92.3157 55.0546, 91.5851 55.0546\\nQ 90.8546 55.0546, 90.4555 55.5282\\nQ 90.0632 56.0017, 90.0632 56.9487\\nQ 90.0632 57.916, 90.4555 58.403\\nQ 90.8546 58.8901, 91.5851 58.8901\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 101.139 33.2845\\nQ 101.139 32.1345, 101.707 31.4919\\nQ 102.275 30.8493, 103.337 30.8493\\nQ 104.399 30.8493, 104.967 31.4919\\nQ 105.536 32.1345, 105.536 33.2845\\nQ 105.536 34.448, 104.961 35.1109\\nQ 104.386 35.767, 103.337 35.767\\nQ 102.282 35.767, 101.707 35.1109\\nQ 101.139 34.4547, 101.139 33.2845\\nM 103.337 35.2259\\nQ 104.068 35.2259, 104.46 34.7388\\nQ 104.859 34.245, 104.859 33.2845\\nQ 104.859 32.3442, 104.46 31.8707\\nQ 104.068 31.3905, 103.337 31.3905\\nQ 102.607 31.3905, 102.208 31.864\\nQ 101.815 32.3375, 101.815 33.2845\\nQ 101.815 34.2518, 102.208 34.7388\\nQ 102.607 35.2259, 103.337 35.2259\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 27.4879 5.45455\\nL 28.1372 5.45455\\nL 28.1372 7.49064\\nL 30.586 7.49064\\nL 30.586 5.45455\\nL 31.2354 5.45455\\nL 31.2354 10.2438\\nL 30.586 10.2438\\nL 30.586 8.03179\\nL 28.1372 8.03179\\nL 28.1372 10.2438\\nL 27.4879 10.2438\\nL 27.4879 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 31.4675 10.0757\\nQ 31.5836 9.7766, 31.8604 9.61142\\nQ 32.1372 9.44176, 32.5211 9.44176\\nQ 32.9988 9.44176, 33.2667 9.70071\\nQ 33.5346 9.95965, 33.5346 10.4195\\nQ 33.5346 10.8883, 33.1863 11.3258\\nQ 32.8426 11.7633, 32.1283 12.2812\\nL 33.5882 12.2812\\nL 33.5882 12.6384\\nL 31.4586 12.6384\\nL 31.4586 12.3392\\nQ 32.0479 11.9196, 32.3961 11.6071\\nQ 32.7488 11.2945, 32.9185 11.0133\\nQ 33.0881 10.732, 33.0881 10.4418\\nQ 33.0881 10.1382, 32.9363 9.96858\\nQ 32.7845 9.79893, 32.5211 9.79893\\nQ 32.2667 9.79893, 32.097 9.90161\\nQ 31.9274 10.0043, 31.8068 10.232\\nL 31.4675 10.0757\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 34.9072 5.45455\\nL 36.4766 7.9912\\nQ 36.6321 8.24149, 36.8824 8.6947\\nQ 37.1327 9.14792, 37.1462 9.17498\\nL 37.1462 5.45455\\nL 37.7821 5.45455\\nL 37.7821 10.2438\\nL 37.1259 10.2438\\nL 35.4416 7.47034\\nQ 35.2454 7.14565, 35.0357 6.77361\\nQ 34.8328 6.40156, 34.7719 6.28657\\nL 34.7719 10.2438\\nL 34.1496 10.2438\\nL 34.1496 5.45455\\nL 34.9072 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -3.26, "data-ID": 908, "mols2grid-id": 180, "mols2grid-tooltip": "<strong>Name</strong>: pentyl-4-aminobenzoate<br><strong>SMILES</strong>: CCCCCOC(=O)c1ccc(N)cc1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.26</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c(c(cccc1)c1)(ccc(c(cccc2)c2)c3)c3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 61.8374,49.4285 L 43.6427,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-0 atom-7' d='M 61.8374,49.4285 L 80.042,38.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-0 atom-7' d='M 66.6619,51.4986 L 79.4051,44.1696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-0 atom-17' d='M 61.8374,49.4285 L 61.8066,70.4273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 43.6427,38.9235 L 43.6427,17.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 39.4429,35.7737 L 39.4429,21.0745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 43.6427,38.9235 L 25.4577,49.4229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 43.6427,17.9247 L 25.4577,7.42528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 25.4577,7.42528 L 7.27273,17.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 24.8299,12.6373 L 12.1004,19.9869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 7.27273,17.9247 L 7.27273,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 25.4577,49.4229 L 7.27273,38.9235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 24.8299,44.2109 L 12.1004,36.8613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.042,38.9585 L 98.2102,49.4859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 98.2102,49.4859 L 98.1766,70.4847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 94.0054,52.629 L 93.9819,67.3282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 98.1766,70.4847 L 116.355,81.0191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-16' d='M 98.1766,70.4847 L 79.9748,80.9561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 116.355,81.0191 L 134.575,70.5785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 121.176,83.0969 L 133.93,75.7885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-10 atom-15' d='M 116.355,81.0191 L 116.29,102.018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 134.575,70.5785 L 152.727,81.1353' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 152.727,81.1353 L 152.66,102.134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 148.517,84.2717 L 148.47,98.9708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 152.66,102.134 L 134.442,112.575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 116.29,102.018 L 134.442,112.575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-14' d='M 121.124,99.971 L 133.83,107.361' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-16' d='M 61.8066,70.4273 L 79.9748,80.9561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-16' d='M 66.6376,68.3729 L 79.3554,75.7431' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -7.11, "data-ID": 913, "mols2grid-id": 181, "mols2grid-tooltip": "<strong>Name</strong>: p-terphenyl<br><strong>SMILES</strong>: c(c(cccc1)c1)(ccc(c(cccc2)c2)c3)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.11</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(Nc(c(ccc1)Cl)c1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.782,104.824 L 116.578,100.065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.578,100.065 L 108.373,95.306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.744,110.062 L 113.54,105.303' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.54,105.303 L 105.335,100.544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.854,97.9248 L 106.873,85.3016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.873,85.3016 L 106.891,72.6783' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 106.854,97.9248 L 85.8581,109.998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 102.89,65.3088 L 91.7927,58.8716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 91.7927,58.8716 L 80.6953,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.6953,52.4344 L 80.6953,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 74.6404,47.8933 L 74.6404,26.7011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 80.6953,52.4344 L 54.4776,67.5716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.6953,22.16 L 54.4776,7.02276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-8' d='M 80.6953,22.16 L 89.2276,17.2342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-8' d='M 89.2276,17.2342 L 97.76,12.3084' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.4776,7.02276 L 28.26,22.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 53.5725,14.537 L 35.2201,25.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 28.26,22.16 L 28.26,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 54.4776,67.5716 L 28.26,52.4344' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 53.5725,60.0574 L 35.2201,49.4614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 123.869 110.101\\nQ 123.869 108.043, 124.886 106.892\\nQ 125.903 105.742, 127.804 105.742\\nQ 129.706 105.742, 130.723 106.892\\nQ 131.74 108.043, 131.74 110.101\\nQ 131.74 112.184, 130.711 113.371\\nQ 129.681 114.545, 127.804 114.545\\nQ 125.915 114.545, 124.886 113.371\\nQ 123.869 112.196, 123.869 110.101\\nM 127.804 113.577\\nQ 129.112 113.577, 129.815 112.705\\nQ 130.529 111.821, 130.529 110.101\\nQ 130.529 108.418, 129.815 107.57\\nQ 129.112 106.71, 127.804 106.71\\nQ 126.496 106.71, 125.782 107.558\\nQ 125.08 108.406, 125.08 110.101\\nQ 125.08 111.833, 125.782 112.705\\nQ 126.496 113.577, 127.804 113.577\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 105.004 63.3473\\nL 107.813 67.8885\\nQ 108.092 68.3366, 108.54 69.1479\\nQ 108.988 69.9593, 109.012 70.0077\\nL 109.012 63.3473\\nL 110.15 63.3473\\nL 110.15 71.9211\\nL 108.976 71.9211\\nL 105.96 66.9561\\nQ 105.609 66.3748, 105.234 65.7087\\nQ 104.87 65.0427, 104.761 64.8368\\nL 104.761 71.9211\\nL 103.647 71.9211\\nL 103.647 63.3473\\nL 105.004 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 111.18 63.3473\\nL 112.342 63.3473\\nL 112.342 66.9924\\nL 116.726 66.9924\\nL 116.726 63.3473\\nL 117.888 63.3473\\nL 117.888 71.9211\\nL 116.726 71.9211\\nL 116.726 67.9612\\nL 112.342 67.9612\\nL 112.342 71.9211\\nL 111.18 71.9211\\nL 111.18 63.3473\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 98.3655 10.3469\\nQ 98.3655 8.21557, 99.3585 7.10147\\nQ 100.364 5.97527, 102.265 5.97527\\nQ 104.033 5.97527, 104.977 7.22257\\nL 104.178 7.8765\\nQ 103.488 6.96827, 102.265 6.96827\\nQ 100.969 6.96827, 100.279 7.84017\\nQ 99.6007 8.69997, 99.6007 10.3469\\nQ 99.6007 12.0423, 100.303 12.9142\\nQ 101.018 13.7861, 102.398 13.7861\\nQ 103.343 13.7861, 104.445 13.2169\\nL 104.784 14.1251\\nQ 104.336 14.4158, 103.657 14.5853\\nQ 102.979 14.7549, 102.229 14.7549\\nQ 100.364 14.7549, 99.3585 13.6165\\nQ 98.3655 12.4782, 98.3655 10.3469\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 106.019 5.45455\\nL 107.133 5.45455\\nL 107.133 14.6459\\nL 106.019 14.6459\\nL 106.019 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -1.4, "data-ID": 918, "mols2grid-id": 182, "mols2grid-tooltip": "<strong>Name</strong>: 2-chloroacetanilide<br><strong>SMILES</strong>: O=C(Nc(c(ccc1)Cl)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.4</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N(C(CCC1)CC)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 96.2475,87.5413 L 96.2475,71.915' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.2475,71.915 L 96.2475,56.2888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 91.2825,96.6554 L 77.5275,104.597' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-0 atom-7' d='M 77.5275,104.597 L 63.7725,112.539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.2475,56.2888 L 63.7725,37.5388' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-1 atom-5' d='M 96.2475,56.2888 L 128.702,37.4613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 63.7725,37.5388 L 31.2975,56.2888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 31.2975,56.2888 L 31.2975,93.7888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-4' d='M 63.7725,112.539 L 31.2975,93.7888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 128.702,37.4613 L 128.66,7.46125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 93.9 88.4788\\nL 97.38 94.1038\\nQ 97.725 94.6588, 98.28 95.6638\\nQ 98.835 96.6688, 98.865 96.7288\\nL 98.865 88.4788\\nL 100.275 88.4788\\nL 100.275 99.0988\\nL 98.82 99.0988\\nL 95.085 92.9488\\nQ 94.65 92.2288, 94.185 91.4038\\nQ 93.735 90.5788, 93.6 90.3238\\nL 93.6 99.0988\\nL 92.22 99.0988\\nL 92.22 88.4788\\nL 93.9 88.4788\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 101.55 88.4788\\nL 102.99 88.4788\\nL 102.99 92.9938\\nL 108.42 92.9938\\nL 108.42 88.4788\\nL 109.86 88.4788\\nL 109.86 99.0988\\nL 108.42 99.0988\\nL 108.42 94.1938\\nL 102.99 94.1938\\nL 102.99 99.0988\\nL 101.55 99.0988\\nL 101.55 88.4788\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.5, "data-ID": 923, "mols2grid-id": 183, "mols2grid-tooltip": "<strong>Name</strong>: coniine<br><strong>SMILES</strong>: N(C(CCC1)CC)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.5</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O(c(ccc(c1)CC=C)c1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.684,74.423 L 134.66,68.6079' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.66,68.6079 L 124.635,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 149.052,81.6899 L 149.039,90.6127' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 149.039,90.6127 L 149.027,99.5354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 124.635,62.7927 L 124.635,34.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.991,58.5599 L 118.991,38.8068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 124.635,62.7927 L 100.197,76.9021' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.635,34.574 L 100.197,20.4646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 100.197,20.4646 L 75.7597,34.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.3534,27.4686 L 82.2472,37.3451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.7597,34.574 L 75.7597,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 75.7597,34.574 L 51.2789,20.5078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-5' d='M 100.197,76.9021 L 75.7597,62.7927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-5' d='M 99.3534,69.8981 L 82.2472,60.0215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 51.2789,20.5078 L 26.8471,34.6586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 28.2529,32.2118 L 8.67849,20.9657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 25.4414,37.1054 L 5.86697,25.8593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.39 76.983\\nQ 145.39 75.0641, 146.339 73.9918\\nQ 147.287 72.9195, 149.059 72.9195\\nQ 150.831 72.9195, 151.779 73.9918\\nQ 152.727 75.0641, 152.727 76.983\\nQ 152.727 78.9244, 151.768 80.0306\\nQ 150.808 81.1255, 149.059 81.1255\\nQ 147.298 81.1255, 146.339 80.0306\\nQ 145.39 78.9357, 145.39 76.983\\nM 149.059 80.2225\\nQ 150.278 80.2225, 150.933 79.4098\\nQ 151.599 78.5858, 151.599 76.983\\nQ 151.599 75.414, 150.933 74.6239\\nQ 150.278 73.8225, 149.059 73.8225\\nQ 147.84 73.8225, 147.174 74.6126\\nQ 146.519 75.4027, 146.519 76.983\\nQ 146.519 78.5971, 147.174 79.4098\\nQ 147.84 80.2225, 149.059 80.2225\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.92, "data-ID": 928, "mols2grid-id": 184, "mols2grid-tooltip": "<strong>Name</strong>: estragole<br><strong>SMILES</strong>: O(c(ccc(c1)CC=C)c1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.92</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Clc1c(Cl)c(Cl)c(Cl)c(O)c1OC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 118.239,75.0811 L 111.174,71.002' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.174,71.002 L 104.108,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 104.108,66.9229 L 104.108,41.8522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.0938,63.1622 L 99.0938,45.6128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-1' d='M 82.3968,79.4582 L 104.108,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 104.108,41.8522 L 111.174,37.773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 111.174,37.773 L 118.239,33.6939' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 104.108,41.8522 L 82.3968,29.3168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.3968,29.3168 L 82.3968,21.4872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.3968,21.4872 L 82.3968,13.6577' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 82.3968,29.3168 L 60.6855,41.8522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 81.6472,35.5395 L 66.4493,44.3142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 60.6855,41.8522 L 52.4816,37.1159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.4816,37.1159 L 44.2776,32.3797' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 60.6855,41.8522 L 60.6855,66.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 60.6855,66.9229 L 53.8805,70.8515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.8805,70.8515 L 47.0755,74.7801' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 60.6855,66.9229 L 82.3968,79.4582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 66.4493,64.4608 L 81.6472,73.2356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.3968,79.4582 L 82.4183,89.8916' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.4183,89.8916 L 82.4399,100.325' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 86.2092,106.706 L 93.0209,110.626' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 93.0209,110.626 L 99.8326,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 118.741 77.1968\\nQ 118.741 75.4318, 119.563 74.5092\\nQ 120.396 73.5766, 121.97 73.5766\\nQ 123.434 73.5766, 124.216 74.6095\\nL 123.554 75.1511\\nQ 122.983 74.3989, 121.97 74.3989\\nQ 120.897 74.3989, 120.325 75.121\\nQ 119.764 75.833, 119.764 77.1968\\nQ 119.764 78.6008, 120.345 79.3228\\nQ 120.937 80.0448, 122.08 80.0448\\nQ 122.863 80.0448, 123.775 79.5735\\nL 124.056 80.3256\\nQ 123.685 80.5663, 123.123 80.7067\\nQ 122.562 80.8471, 121.94 80.8471\\nQ 120.396 80.8471, 119.563 79.9045\\nQ 118.741 78.9618, 118.741 77.1968\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 125.079 73.1454\\nL 126.001 73.1454\\nL 126.001 80.7569\\nL 125.079 80.7569\\nL 125.079 73.1454\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 118.741 32.0696\\nQ 118.741 30.3046, 119.563 29.382\\nQ 120.396 28.4494, 121.97 28.4494\\nQ 123.434 28.4494, 124.216 29.4823\\nL 123.554 30.0238\\nQ 122.983 29.2717, 121.97 29.2717\\nQ 120.897 29.2717, 120.325 29.9937\\nQ 119.764 30.7057, 119.764 32.0696\\nQ 119.764 33.4735, 120.345 34.1956\\nQ 120.937 34.9176, 122.08 34.9176\\nQ 122.863 34.9176, 123.775 34.4463\\nL 124.056 35.1984\\nQ 123.685 35.4391, 123.123 35.5795\\nQ 122.562 35.7199, 121.94 35.7199\\nQ 120.396 35.7199, 119.563 34.7772\\nQ 118.741 33.8346, 118.741 32.0696\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 125.079 28.0182\\nL 126.001 28.0182\\nL 126.001 35.6296\\nL 125.079 35.6296\\nL 125.079 28.0182\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 79.659 9.50597\\nQ 79.659 7.74099, 80.4814 6.81839\\nQ 81.3137 5.88576, 82.8881 5.88576\\nQ 84.3523 5.88576, 85.1345 6.91867\\nL 84.4726 7.4602\\nQ 83.901 6.70808, 82.8881 6.70808\\nQ 81.8151 6.70808, 81.2435 7.43012\\nQ 80.6819 8.14212, 80.6819 9.50597\\nQ 80.6819 10.9099, 81.2636 11.632\\nQ 81.8552 12.354, 82.9985 12.354\\nQ 83.7807 12.354, 84.6932 11.8827\\nL 84.974 12.6348\\nQ 84.603 12.8755, 84.0414 13.0159\\nQ 83.4798 13.1563, 82.8581 13.1563\\nQ 81.3137 13.1563, 80.4814 12.2136\\nQ 79.659 11.2709, 79.659 9.50597\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 85.9969 5.45455\\nL 86.9195 5.45455\\nL 86.9195 13.066\\nL 85.9969 13.066\\nL 85.9969 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 36.5157 32.0696\\nQ 36.5157 30.3046, 37.3381 29.382\\nQ 38.1704 28.4494, 39.7448 28.4494\\nQ 41.209 28.4494, 41.9912 29.4823\\nL 41.3293 30.0238\\nQ 40.7577 29.2717, 39.7448 29.2717\\nQ 38.6718 29.2717, 38.1002 29.9937\\nQ 37.5386 30.7057, 37.5386 32.0696\\nQ 37.5386 33.4735, 38.1203 34.1956\\nQ 38.7119 34.9176, 39.8551 34.9176\\nQ 40.6374 34.9176, 41.5499 34.4463\\nL 41.8307 35.1984\\nQ 41.4597 35.4391, 40.8981 35.5795\\nQ 40.3365 35.7199, 39.7148 35.7199\\nQ 38.1704 35.7199, 37.3381 34.7772\\nQ 36.5157 33.8346, 36.5157 32.0696\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 42.8536 28.0182\\nL 43.7762 28.0182\\nL 43.7762 35.6296\\nL 42.8536 35.6296\\nL 42.8536 28.0182\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 33.9986 73.4412\\nL 34.9613 73.4412\\nL 34.9613 76.4597\\nL 38.5916 76.4597\\nL 38.5916 73.4412\\nL 39.5543 73.4412\\nL 39.5543 80.5412\\nL 38.5916 80.5412\\nL 38.5916 77.262\\nL 34.9613 77.262\\nL 34.9613 80.5412\\nL 33.9986 80.5412\\nL 33.9986 73.4412\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 40.0557 76.9712\\nQ 40.0557 75.2664, 40.8981 74.3137\\nQ 41.7405 73.361, 43.3149 73.361\\nQ 44.8893 73.361, 45.7317 74.3137\\nQ 46.5741 75.2664, 46.5741 76.9712\\nQ 46.5741 78.696, 45.7217 79.6788\\nQ 44.8693 80.6516, 43.3149 80.6516\\nQ 41.7505 80.6516, 40.8981 79.6788\\nQ 40.0557 78.7061, 40.0557 76.9712\\nM 43.3149 79.8493\\nQ 44.398 79.8493, 44.9796 79.1273\\nQ 45.5713 78.3952, 45.5713 76.9712\\nQ 45.5713 75.5773, 44.9796 74.8753\\nQ 44.398 74.1633, 43.3149 74.1633\\nQ 42.2318 74.1633, 41.6402 74.8652\\nQ 41.0585 75.5672, 41.0585 76.9712\\nQ 41.0585 78.4052, 41.6402 79.1273\\nQ 42.2318 79.8493, 43.3149 79.8493\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 79.1894 104.562\\nQ 79.1894 102.858, 80.0318 101.905\\nQ 80.8741 100.952, 82.4486 100.952\\nQ 84.023 100.952, 84.8654 101.905\\nQ 85.7078 102.858, 85.7078 104.562\\nQ 85.7078 106.287, 84.8554 107.27\\nQ 84.003 108.243, 82.4486 108.243\\nQ 80.8842 108.243, 80.0318 107.27\\nQ 79.1894 106.297, 79.1894 104.562\\nM 82.4486 107.44\\nQ 83.5316 107.44, 84.1133 106.718\\nQ 84.7049 105.986, 84.7049 104.562\\nQ 84.7049 103.168, 84.1133 102.466\\nQ 83.5316 101.754, 82.4486 101.754\\nQ 81.3655 101.754, 80.7738 102.456\\nQ 80.1922 103.158, 80.1922 104.562\\nQ 80.1922 105.996, 80.7738 106.718\\nQ 81.3655 107.44, 82.4486 107.44\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.02, "data-ID": 933, "mols2grid-id": 185, "mols2grid-tooltip": "<strong>Name</strong>: tetrachloroguaiacol<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c(Cl)c(O)c1OC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.02</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(NC(=S)S1)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.531,102.234 L 100.674,94.1729' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.674,94.1729 L 94.8171,86.1115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.141,106.15 L 95.2838,98.0888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.2838,98.0888 L 89.4271,90.0274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.1221,88.0694 L 96.3672,75.0035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.3672,75.0035 L 100.612,61.9376' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-1 atom-6' d='M 92.1221,88.0694 L 58.8105,88.0694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 98.0049,53.1834 L 86.7356,44.9954' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.7356,44.9954 L 75.4663,36.8074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.7975,36.8074 L 78.7975,26.2943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.7975,26.2943 L 78.7975,15.7811' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1351,36.8074 L 72.1351,26.2943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1351,26.2943 L 72.1351,15.7811' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 75.4663,36.8074 L 63.9205,45.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 63.9205,45.1963 L 52.3747,53.5852' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 58.8105,88.0694 L 54.6044,75.1234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 54.6044,75.1234 L 50.3983,62.1775' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 103.455 109.655\\nQ 103.455 107.39, 104.574 106.124\\nQ 105.693 104.858, 107.785 104.858\\nQ 109.877 104.858, 110.996 106.124\\nQ 112.116 107.39, 112.116 109.655\\nQ 112.116 111.947, 110.983 113.253\\nQ 109.85 114.545, 107.785 114.545\\nQ 105.707 114.545, 104.574 113.253\\nQ 103.455 111.96, 103.455 109.655\\nM 107.785 113.479\\nQ 109.224 113.479, 109.997 112.52\\nQ 110.783 111.547, 110.783 109.655\\nQ 110.783 107.803, 109.997 106.87\\nQ 109.224 105.924, 107.785 105.924\\nQ 106.346 105.924, 105.56 106.857\\nQ 104.787 107.79, 104.787 109.655\\nQ 104.787 111.561, 105.56 112.52\\nQ 106.346 113.479, 107.785 113.479\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 100.33 51.671\\nL 103.421 56.6677\\nQ 103.728 57.1607, 104.221 58.0535\\nQ 104.714 58.9462, 104.74 58.9995\\nL 104.74 51.671\\nL 105.993 51.671\\nL 105.993 61.1048\\nL 104.701 61.1048\\nL 101.383 55.6417\\nQ 100.996 55.0022, 100.583 54.2693\\nQ 100.183 53.5364, 100.064 53.3099\\nL 100.064 61.1048\\nL 98.8377 61.1048\\nL 98.8377 51.671\\nL 100.33 51.671\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 107.126 51.671\\nL 108.405 51.671\\nL 108.405 55.6817\\nL 113.228 55.6817\\nL 113.228 51.671\\nL 114.507 51.671\\nL 114.507 61.1048\\nL 113.228 61.1048\\nL 113.228 56.7477\\nL 108.405 56.7477\\nL 108.405 61.1048\\nL 107.126 61.1048\\nL 107.126 51.671\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 72.8014 13.396\\nQ 72.908 13.436, 73.3477 13.6225\\nQ 73.7874 13.8091, 74.2671 13.929\\nQ 74.7601 14.0356, 75.2398 14.0356\\nQ 76.1325 14.0356, 76.6522 13.6092\\nQ 77.1718 13.1695, 77.1718 12.41\\nQ 77.1718 11.8903, 76.9054 11.5705\\nQ 76.6522 11.2508, 76.2524 11.0775\\nQ 75.8527 10.9043, 75.1865 10.7044\\nQ 74.347 10.4513, 73.8407 10.2114\\nQ 73.3477 9.97159, 72.9879 9.46526\\nQ 72.6415 8.95892, 72.6415 8.10615\\nQ 72.6415 6.92025, 73.441 6.1874\\nQ 74.2538 5.45455, 75.8527 5.45455\\nQ 76.9453 5.45455, 78.1845 5.97421\\nL 77.8781 7.0002\\nQ 76.7455 6.53384, 75.8927 6.53384\\nQ 74.9733 6.53384, 74.467 6.92025\\nQ 73.9606 7.29334, 73.9739 7.94625\\nQ 73.9739 8.45259, 74.2271 8.75905\\nQ 74.4936 9.06552, 74.8667 9.23874\\nQ 75.2531 9.41196, 75.8927 9.61183\\nQ 76.7455 9.87832, 77.2518 10.1448\\nQ 77.7581 10.4113, 78.1179 10.9576\\nQ 78.491 11.4906, 78.491 12.41\\nQ 78.491 13.7158, 77.6116 14.422\\nQ 76.7455 15.1149, 75.2931 15.1149\\nQ 74.4536 15.1149, 73.814 14.9284\\nQ 73.1878 14.7551, 72.4416 14.4487\\nL 72.8014 13.396\\n' fill='#CCCC00'/>\\n<path class='atom-5' d='M 45.8523 59.6258\\nQ 45.9589 59.6658, 46.3986 59.8523\\nQ 46.8383 60.0389, 47.318 60.1588\\nQ 47.811 60.2654, 48.2907 60.2654\\nQ 49.1835 60.2654, 49.7031 59.839\\nQ 50.2228 59.3993, 50.2228 58.6398\\nQ 50.2228 58.1201, 49.9563 57.8003\\nQ 49.7031 57.4805, 49.3034 57.3073\\nQ 48.9037 57.1341, 48.2374 56.9342\\nQ 47.398 56.6811, 46.8916 56.4412\\nQ 46.3986 56.2014, 46.0389 55.695\\nQ 45.6924 55.1887, 45.6924 54.3359\\nQ 45.6924 53.15, 46.4919 52.4172\\nQ 47.3047 51.6843, 48.9037 51.6843\\nQ 49.9963 51.6843, 51.2355 52.204\\nL 50.929 53.23\\nQ 49.7964 52.7636, 48.9436 52.7636\\nQ 48.0242 52.7636, 47.5179 53.15\\nQ 47.0116 53.5231, 47.0249 54.176\\nQ 47.0249 54.6824, 47.2781 54.9888\\nQ 47.5445 55.2953, 47.9176 55.4685\\nQ 48.3041 55.6417, 48.9436 55.8416\\nQ 49.7964 56.1081, 50.3027 56.3746\\nQ 50.8091 56.6411, 51.1688 57.1874\\nQ 51.5419 57.7204, 51.5419 58.6398\\nQ 51.5419 59.9456, 50.6625 60.6518\\nQ 49.7964 61.3447, 48.344 61.3447\\nQ 47.5046 61.3447, 46.865 61.1581\\nQ 46.2387 60.9849, 45.4926 60.6784\\nL 45.8523 59.6258\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -1.77, "data-ID": 938, "mols2grid-id": 186, "mols2grid-tooltip": "<strong>Name</strong>: Rhodanine<br><strong>SMILES</strong>: O=C(NC(=S)S1)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.77</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Ic1c(nc(c1I)I)I", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 114.92,104.805 L 106.835,93.677' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 106.835,93.677 L 98.75,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 98.75,82.5485 L 110.338,46.8835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 93.3552,74.8813 L 101.466,49.9158' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-1' d='M 61.25,82.5485 L 98.75,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.338,46.8835 L 97.6512,37.666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.6512,37.666 L 84.965,28.4484' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-8' d='M 110.338,46.8835 L 123.872,42.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-8' d='M 123.872,42.4861 L 137.407,38.0887' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.035,28.4484 L 62.3488,37.666' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.3488,37.666 L 49.6625,46.8835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.6625,46.8835 L 61.25,82.5485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.5336,49.9158 L 66.6448,74.8813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 49.6625,46.8835 L 36.1275,42.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 36.1275,42.4861 L 22.5925,38.0887' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 61.25,82.5485 L 53.165,93.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 53.165,93.677 L 45.08,104.805' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 115.67 101.486\\nL 117.095 101.486\\nL 117.095 112.151\\nL 115.67 112.151\\nL 115.67 101.486\\n' fill='#A01EEF'/>\\n<path class='atom-3' d='M 77.6525 19.531\\nL 81.1325 25.156\\nQ 81.4775 25.711, 82.0325 26.716\\nQ 82.5875 27.721, 82.6175 27.781\\nL 82.6175 19.531\\nL 84.0275 19.531\\nL 84.0275 30.151\\nL 82.5725 30.151\\nL 78.8375 24.001\\nQ 78.4025 23.281, 77.9375 22.456\\nQ 77.4875 21.631, 77.3525 21.376\\nL 77.3525 30.151\\nL 75.9725 30.151\\nL 75.9725 19.531\\nL 77.6525 19.531\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 75.845 7.849\\nL 77.285 7.849\\nL 77.285 12.364\\nL 82.715 12.364\\nL 82.715 7.849\\nL 84.155 7.849\\nL 84.155 18.469\\nL 82.715 18.469\\nL 82.715 13.564\\nL 77.285 13.564\\nL 77.285 18.469\\nL 75.845 18.469\\nL 75.845 7.849\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 42.905 101.486\\nL 44.33 101.486\\nL 44.33 112.151\\nL 42.905 112.151\\nL 42.905 101.486\\n' fill='#A01EEF'/>\\n<path class='atom-7' d='M 20.4175 32.281\\nL 21.8425 32.281\\nL 21.8425 42.946\\nL 20.4175 42.946\\nL 20.4175 32.281\\n' fill='#A01EEF'/>\\n<path class='atom-8' d='M 138.157 32.281\\nL 139.583 32.281\\nL 139.583 42.946\\nL 138.157 42.946\\nL 138.157 32.281\\n' fill='#A01EEF'/>\\n</svg>\\n", "data-Solubility": -3.46, "data-ID": 943, "mols2grid-id": 187, "mols2grid-tooltip": "<strong>Name</strong>: 2,3,4,5-Tetraiodpyrrol<br><strong>SMILES</strong>: Ic1c(nc(c1I)I)I<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.46</span>", "style-Solubility": "color: red"}, {"data-SMILES": "N1C(=O)N=C(N)C=C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.437,75.1575 L 119.437,59.5313' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.437,59.5313 L 119.437,43.905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 86.9624,100.155 L 100.717,92.2133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 100.717,92.2133 L 114.472,84.2716' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.312,47.1526 L 131.491,41.2763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.491,41.2763 L 141.67,35.4' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 117.562,40.6574 L 127.741,34.7811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.741,34.7811 L 137.92,28.9048' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 119.437,43.905 L 105.682,35.9633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 105.682,35.9633 L 91.9274,28.0216' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.1224,24.774 L 68.2424,35.9633' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.2424,35.9633 L 56.3624,47.1526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 83.8725,31.2692 L 68.2424,35.9633' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.2424,35.9633 L 52.6124,40.6574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 54.4874,43.905 L 43.8849,37.7841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.8849,37.7841 L 33.2824,31.6631' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 54.4874,43.905 L 54.4874,81.405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.6124,84.6526 L 88.8374,96.9074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 56.3624,78.1574 L 85.0874,103.403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.09 76.095\\nL 120.57 81.72\\nQ 120.915 82.275, 121.47 83.28\\nQ 122.025 84.285, 122.055 84.345\\nL 122.055 76.095\\nL 123.465 76.095\\nL 123.465 86.715\\nL 122.01 86.715\\nL 118.275 80.565\\nQ 117.84 79.845, 117.375 79.02\\nQ 116.925 78.195, 116.79 77.94\\nL 116.79 86.715\\nL 115.41 86.715\\nL 115.41 76.095\\nL 117.09 76.095\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 124.74 76.095\\nL 126.18 76.095\\nL 126.18 80.61\\nL 131.61 80.61\\nL 131.61 76.095\\nL 133.05 76.095\\nL 133.05 86.715\\nL 131.61 86.715\\nL 131.61 81.81\\nL 126.18 81.81\\nL 126.18 86.715\\nL 124.74 86.715\\nL 124.74 76.095\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 140.545 28.935\\nQ 140.545 26.385, 141.805 24.96\\nQ 143.065 23.535, 145.42 23.535\\nQ 147.775 23.535, 149.035 24.96\\nQ 150.295 26.385, 150.295 28.935\\nQ 150.295 31.515, 149.02 32.985\\nQ 147.745 34.44, 145.42 34.44\\nQ 143.08 34.44, 141.805 32.985\\nQ 140.545 31.53, 140.545 28.935\\nM 145.42 33.24\\nQ 147.04 33.24, 147.91 32.16\\nQ 148.795 31.065, 148.795 28.935\\nQ 148.795 26.85, 147.91 25.8\\nQ 147.04 24.735, 145.42 24.735\\nQ 143.8 24.735, 142.915 25.785\\nQ 142.045 26.835, 142.045 28.935\\nQ 142.045 31.08, 142.915 32.16\\nQ 143.8 33.24, 145.42 33.24\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 84.6149 19.845\\nL 88.0949 25.47\\nQ 88.4399 26.025, 88.9949 27.03\\nQ 89.5499 28.035, 89.5799 28.095\\nL 89.5799 19.845\\nL 90.9899 19.845\\nL 90.9899 30.465\\nL 89.5349 30.465\\nL 85.7999 24.315\\nQ 85.3649 23.595, 84.8999 22.77\\nQ 84.4499 21.945, 84.3149 21.69\\nL 84.3149 30.465\\nL 82.9349 30.465\\nL 82.9349 19.845\\nL 84.6149 19.845\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 9.7051 23.595\\nL 11.1451 23.595\\nL 11.1451 28.11\\nL 16.5751 28.11\\nL 16.5751 23.595\\nL 18.0151 23.595\\nL 18.0151 34.215\\nL 16.5751 34.215\\nL 16.5751 29.31\\nL 11.1451 29.31\\nL 11.1451 34.215\\nL 9.7051 34.215\\nL 9.7051 23.595\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 18.5299 33.8424\\nQ 18.7873 33.1791, 19.4011 32.8128\\nQ 20.0149 32.4366, 20.8663 32.4366\\nQ 21.9256 32.4366, 22.5196 33.0108\\nQ 23.1136 33.585, 23.1136 34.6047\\nQ 23.1136 35.6442, 22.3414 36.6144\\nQ 21.5791 37.5846, 19.9951 38.733\\nL 23.2324 38.733\\nL 23.2324 39.525\\nL 18.5101 39.525\\nL 18.5101 38.8617\\nQ 19.8169 37.9311, 20.5891 37.2381\\nQ 21.3712 36.5451, 21.7474 35.9214\\nQ 22.1236 35.2977, 22.1236 34.6542\\nQ 22.1236 33.981, 21.787 33.6048\\nQ 21.4504 33.2286, 20.8663 33.2286\\nQ 20.302 33.2286, 19.9258 33.4563\\nQ 19.5496 33.684, 19.2823 34.1889\\nL 18.5299 33.8424\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 26.1574 23.595\\nL 29.6374 29.22\\nQ 29.9824 29.775, 30.5374 30.78\\nQ 31.0924 31.785, 31.1224 31.845\\nL 31.1224 23.595\\nL 32.5324 23.595\\nL 32.5324 34.215\\nL 31.0774 34.215\\nL 27.3424 28.065\\nQ 26.9074 27.345, 26.4424 26.52\\nQ 25.9924 25.695, 25.8574 25.44\\nL 25.8574 34.215\\nL 24.4774 34.215\\nL 24.4774 23.595\\nL 26.1574 23.595\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.14, "data-ID": 948, "mols2grid-id": 188, "mols2grid-tooltip": "<strong>Name</strong>: Cytosine<br><strong>SMILES</strong>: N1C(=O)N=C(N)C=C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.14</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)C(N)CC(=O)N", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.577,62.7362 L 27.8769,57.3705' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 27.8769,57.3705 L 37.1768,52.0048' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 15.1529,56.8016 L 24.4528,51.4359' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 24.4528,51.4359 L 33.7527,46.0702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,49.0375 L 35.4647,38.2051' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 35.4647,38.2051 L 35.4647,27.3728' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 35.4647,49.0375 L 65.1549,66.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,66.1664 L 65.1549,77.1016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1549,77.1016 L 65.1549,88.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 65.1549,66.1664 L 94.8451,49.0375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.8451,49.0375 L 124.535,66.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 126.247,69.1337 L 135.547,63.768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 135.547,63.768 L 144.847,58.4023' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 122.823,63.1991 L 132.123,57.8334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 132.123,57.8334 L 141.423,52.4677' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 124.535,66.1664 L 124.535,77.1016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 124.535,77.1016 L 124.535,88.0367' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 62.7612\\nQ 7.27273 60.4316, 8.42379 59.1298\\nQ 9.57486 57.828, 11.7263 57.828\\nQ 13.8777 57.828, 15.0287 59.1298\\nQ 16.1798 60.4316, 16.1798 62.7612\\nQ 16.1798 65.1181, 15.015 66.461\\nQ 13.8502 67.7903, 11.7263 67.7903\\nQ 9.58856 67.7903, 8.42379 66.461\\nQ 7.27273 65.1318, 7.27273 62.7612\\nM 11.7263 66.694\\nQ 13.2062 66.694, 14.001 65.7074\\nQ 14.8095 64.707, 14.8095 62.7612\\nQ 14.8095 60.8564, 14.001 59.8972\\nQ 13.2062 58.9243, 11.7263 58.9243\\nQ 10.2463 58.9243, 9.43783 59.8835\\nQ 8.64304 60.8427, 8.64304 62.7612\\nQ 8.64304 64.7207, 9.43783 65.7074\\nQ 10.2463 66.694, 11.7263 66.694\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 31.0112 21.6585\\nQ 31.0112 19.329, 32.1622 18.0272\\nQ 33.3133 16.7254, 35.4647 16.7254\\nQ 37.6161 16.7254, 38.7672 18.0272\\nQ 39.9182 19.329, 39.9182 21.6585\\nQ 39.9182 24.0155, 38.7535 25.3584\\nQ 37.5887 26.6876, 35.4647 26.6876\\nQ 33.327 26.6876, 32.1622 25.3584\\nQ 31.0112 24.0292, 31.0112 21.6585\\nM 35.4647 25.5913\\nQ 36.9447 25.5913, 37.7394 24.6047\\nQ 38.5479 23.6044, 38.5479 21.6585\\nQ 38.5479 19.7538, 37.7394 18.7946\\nQ 36.9447 17.8217, 35.4647 17.8217\\nQ 33.9848 17.8217, 33.1763 18.7809\\nQ 32.3815 19.7401, 32.3815 21.6585\\nQ 32.3815 23.6181, 33.1763 24.6047\\nQ 33.9848 25.5913, 35.4647 25.5913\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 41.083 16.835\\nL 42.3985 16.835\\nL 42.3985 20.9597\\nL 47.3591 20.9597\\nL 47.3591 16.835\\nL 48.6746 16.835\\nL 48.6746 26.5369\\nL 47.3591 26.5369\\nL 47.3591 22.0559\\nL 42.3985 22.0559\\nL 42.3985 26.5369\\nL 41.083 26.5369\\nL 41.083 16.835\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 63.0104 88.7218\\nL 66.1895 93.8605\\nQ 66.5047 94.3675, 67.0117 95.2857\\nQ 67.5187 96.2038, 67.5461 96.2586\\nL 67.5461 88.7218\\nL 68.8342 88.7218\\nL 68.8342 98.4237\\nL 67.505 98.4237\\nL 64.0929 92.8054\\nQ 63.6955 92.1476, 63.2707 91.394\\nQ 62.8596 90.6403, 62.7363 90.4073\\nL 62.7363 98.4237\\nL 61.4756 98.4237\\nL 61.4756 88.7218\\nL 63.0104 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 69.999 88.7218\\nL 71.3145 88.7218\\nL 71.3145 92.8465\\nL 76.275 92.8465\\nL 76.275 88.7218\\nL 77.5905 88.7218\\nL 77.5905 98.4237\\nL 76.275 98.4237\\nL 76.275 93.9427\\nL 71.3145 93.9427\\nL 71.3145 98.4237\\nL 69.999 98.4237\\nL 69.999 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 78.0608 98.0833\\nQ 78.296 97.4773, 78.8567 97.1427\\nQ 79.4174 96.799, 80.1952 96.799\\nQ 81.1629 96.799, 81.7056 97.3236\\nQ 82.2482 97.8481, 82.2482 98.7797\\nQ 82.2482 99.7293, 81.5428 100.616\\nQ 80.8464 101.502, 79.3993 102.551\\nL 82.3568 102.551\\nL 82.3568 103.275\\nL 78.0427 103.275\\nL 78.0427 102.669\\nQ 79.2366 101.819, 79.942 101.185\\nQ 80.6565 100.552, 81.0001 99.9826\\nQ 81.3438 99.4128, 81.3438 98.8249\\nQ 81.3438 98.2099, 81.0363 97.8662\\nQ 80.7288 97.5226, 80.1952 97.5226\\nQ 79.6797 97.5226, 79.336 97.7306\\nQ 78.9924 97.9386, 78.7482 98.3998\\nL 78.0608 98.0833\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 143.82 52.4975\\nQ 143.82 50.168, 144.971 48.8662\\nQ 146.122 47.5644, 148.274 47.5644\\nQ 150.425 47.5644, 151.576 48.8662\\nQ 152.727 50.168, 152.727 52.4975\\nQ 152.727 54.8545, 151.563 56.1974\\nQ 150.398 57.5266, 148.274 57.5266\\nQ 146.136 57.5266, 144.971 56.1974\\nQ 143.82 54.8682, 143.82 52.4975\\nM 148.274 56.4303\\nQ 149.754 56.4303, 150.548 55.4437\\nQ 151.357 54.4434, 151.357 52.4975\\nQ 151.357 50.5928, 150.548 49.6336\\nQ 149.754 48.6606, 148.274 48.6606\\nQ 146.794 48.6606, 145.985 49.6199\\nQ 145.191 50.5791, 145.191 52.4975\\nQ 145.191 54.4571, 145.985 55.4437\\nQ 146.794 56.4303, 148.274 56.4303\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 122.391 88.7218\\nL 125.57 93.8605\\nQ 125.885 94.3675, 126.392 95.2857\\nQ 126.899 96.2038, 126.926 96.2586\\nL 126.926 88.7218\\nL 128.215 88.7218\\nL 128.215 98.4237\\nL 126.885 98.4237\\nL 123.473 92.8054\\nQ 123.076 92.1476, 122.651 91.394\\nQ 122.24 90.6403, 122.117 90.4073\\nL 122.117 98.4237\\nL 120.856 98.4237\\nL 120.856 88.7218\\nL 122.391 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 129.379 88.7218\\nL 130.695 88.7218\\nL 130.695 92.8465\\nL 135.655 92.8465\\nL 135.655 88.7218\\nL 136.971 88.7218\\nL 136.971 98.4237\\nL 135.655 98.4237\\nL 135.655 93.9427\\nL 130.695 93.9427\\nL 130.695 98.4237\\nL 129.379 98.4237\\nL 129.379 88.7218\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 137.441 98.0833\\nQ 137.676 97.4773, 138.237 97.1427\\nQ 138.798 96.799, 139.576 96.799\\nQ 140.543 96.799, 141.086 97.3236\\nQ 141.629 97.8481, 141.629 98.7797\\nQ 141.629 99.7293, 140.923 100.616\\nQ 140.227 101.502, 138.78 102.551\\nL 141.737 102.551\\nL 141.737 103.275\\nL 137.423 103.275\\nL 137.423 102.669\\nQ 138.617 101.819, 139.322 101.185\\nQ 140.037 100.552, 140.381 99.9826\\nQ 140.724 99.4128, 140.724 98.8249\\nQ 140.724 98.2099, 140.417 97.8662\\nQ 140.109 97.5226, 139.576 97.5226\\nQ 139.06 97.5226, 138.716 97.7306\\nQ 138.373 97.9386, 138.129 98.3998\\nL 137.441 98.0833\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -0.74, "data-ID": 953, "mols2grid-id": 189, "mols2grid-tooltip": "<strong>Name</strong>: L-Asparagine<br><strong>SMILES</strong>: O=C(O)C(N)CC(=O)N<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.74</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCS(=O)(=O)CC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.515,47.85 L 47.5,32.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 47.5,32.8575 L 61.5785,40.9797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 61.5785,40.9797 L 75.657,49.1019' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.25,57.9375 L 76.25,66.7916' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 76.25,66.7916 L 76.25,75.6457' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 83.75,57.9375 L 83.75,66.7916' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 83.75,66.7916 L 83.75,75.6457' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9694,50.76 L 65.8095,55.4728' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 65.8095,55.4728 L 57.6496,60.1857' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 77.7205,57.2546 L 69.5605,61.9674' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 69.5605,61.9674 L 61.4006,66.6803' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 84.343,49.1019 L 98.4215,40.9797' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 98.4215,40.9797 L 112.5,32.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.5,32.8575 L 138.485,47.85' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 77 55.2525\\nQ 77.12 55.2975, 77.615 55.5075\\nQ 78.11 55.7175, 78.65 55.8525\\nQ 79.205 55.9725, 79.745 55.9725\\nQ 80.75 55.9725, 81.335 55.4925\\nQ 81.92 54.9975, 81.92 54.1425\\nQ 81.92 53.5575, 81.62 53.1975\\nQ 81.335 52.8375, 80.885 52.6425\\nQ 80.435 52.4475, 79.685 52.2225\\nQ 78.74 51.9375, 78.17 51.6675\\nQ 77.615 51.3975, 77.21 50.8275\\nQ 76.82 50.2575, 76.82 49.2975\\nQ 76.82 47.9625, 77.72 47.1375\\nQ 78.635 46.3125, 80.435 46.3125\\nQ 81.665 46.3125, 83.06 46.8975\\nL 82.715 48.0525\\nQ 81.44 47.5275, 80.48 47.5275\\nQ 79.445 47.5275, 78.875 47.9625\\nQ 78.305 48.3825, 78.32 49.1175\\nQ 78.32 49.6875, 78.605 50.0325\\nQ 78.905 50.3775, 79.325 50.5725\\nQ 79.76 50.7675, 80.48 50.9925\\nQ 81.44 51.2925, 82.01 51.5925\\nQ 82.58 51.8925, 82.985 52.5075\\nQ 83.405 53.1075, 83.405 54.1425\\nQ 83.405 55.6125, 82.415 56.4075\\nQ 81.44 57.1875, 79.805 57.1875\\nQ 78.86 57.1875, 78.14 56.9775\\nQ 77.435 56.7825, 76.595 56.4375\\nL 77 55.2525\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 75.125 81.6375\\nQ 75.125 79.0875, 76.385 77.6625\\nQ 77.645 76.2375, 80 76.2375\\nQ 82.355 76.2375, 83.615 77.6625\\nQ 84.875 79.0875, 84.875 81.6375\\nQ 84.875 84.2175, 83.6 85.6875\\nQ 82.325 87.1425, 80 87.1425\\nQ 77.66 87.1425, 76.385 85.6875\\nQ 75.125 84.2325, 75.125 81.6375\\nM 80 85.9425\\nQ 81.62 85.9425, 82.49 84.8625\\nQ 83.375 83.7675, 83.375 81.6375\\nQ 83.375 79.5525, 82.49 78.5025\\nQ 81.62 77.4375, 80 77.4375\\nQ 78.38 77.4375, 77.495 78.4875\\nQ 76.625 79.5375, 76.625 81.6375\\nQ 76.625 83.7825, 77.495 84.8625\\nQ 78.38 85.9425, 80 85.9425\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 49.145 66.6425\\nQ 49.145 64.0925, 50.405 62.6675\\nQ 51.665 61.2425, 54.02 61.2425\\nQ 56.375 61.2425, 57.635 62.6675\\nQ 58.895 64.0925, 58.895 66.6425\\nQ 58.895 69.2225, 57.62 70.6925\\nQ 56.345 72.1475, 54.02 72.1475\\nQ 51.68 72.1475, 50.405 70.6925\\nQ 49.145 69.2375, 49.145 66.6425\\nM 54.02 70.9475\\nQ 55.64 70.9475, 56.51 69.8675\\nQ 57.395 68.7725, 57.395 66.6425\\nQ 57.395 64.5575, 56.51 63.5075\\nQ 55.64 62.4425, 54.02 62.4425\\nQ 52.4 62.4425, 51.515 63.4925\\nQ 50.645 64.5425, 50.645 66.6425\\nQ 50.645 68.7875, 51.515 69.8675\\nQ 52.4 70.9475, 54.02 70.9475\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 0.04, "data-ID": 958, "mols2grid-id": 190, "mols2grid-tooltip": "<strong>Name</strong>: Diethyl_Sulfone<br><strong>SMILES</strong>: CCS(=O)(=O)CC<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.04</span>", "style-Solubility": "color: black"}, {"data-SMILES": "n1ccc(O)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 130.42,73.3125 L 130.42,57.6862' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 130.42,57.6862 L 130.42,42.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.92,68.6246 L 122.92,57.6863' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.92,57.6863 L 122.92,46.7479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 97.945,98.31 L 111.7,90.3683' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 111.7,90.3683 L 125.455,82.4266' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 130.42,42.06 L 97.945,23.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 97.945,23.31 L 65.47,42.06' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.8238,32.6176 L 74.0913,45.7426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.47,42.06 L 55.2913,36.1837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 55.2913,36.1837 L 45.1125,30.3074' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 65.47,42.06 L 65.47,79.56' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.47,79.56 L 97.945,98.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.0913,75.8774 L 96.8238,89.0024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 128.073 74.25\\nL 131.553 79.875\\nQ 131.898 80.43, 132.453 81.435\\nQ 133.008 82.44, 133.038 82.5\\nL 133.038 74.25\\nL 134.448 74.25\\nL 134.448 84.87\\nL 132.993 84.87\\nL 129.258 78.72\\nQ 128.823 78, 128.358 77.175\\nQ 127.908 76.35, 127.773 76.095\\nL 127.773 84.87\\nL 126.393 84.87\\nL 126.393 74.25\\nL 128.073 74.25\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 25.5525 21.81\\nL 26.9925 21.81\\nL 26.9925 26.325\\nL 32.4225 26.325\\nL 32.4225 21.81\\nL 33.8625 21.81\\nL 33.8625 32.43\\nL 32.4225 32.43\\nL 32.4225 27.525\\nL 26.9925 27.525\\nL 26.9925 32.43\\nL 25.5525 32.43\\nL 25.5525 21.81\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 34.6125 27.09\\nQ 34.6125 24.54, 35.8725 23.115\\nQ 37.1325 21.69, 39.4875 21.69\\nQ 41.8425 21.69, 43.1025 23.115\\nQ 44.3625 24.54, 44.3625 27.09\\nQ 44.3625 29.67, 43.0875 31.14\\nQ 41.8125 32.595, 39.4875 32.595\\nQ 37.1475 32.595, 35.8725 31.14\\nQ 34.6125 29.685, 34.6125 27.09\\nM 39.4875 31.395\\nQ 41.1075 31.395, 41.9775 30.315\\nQ 42.8625 29.22, 42.8625 27.09\\nQ 42.8625 25.005, 41.9775 23.955\\nQ 41.1075 22.89, 39.4875 22.89\\nQ 37.8675 22.89, 36.9825 23.94\\nQ 36.1125 24.99, 36.1125 27.09\\nQ 36.1125 29.235, 36.9825 30.315\\nQ 37.8675 31.395, 39.4875 31.395\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 1.02, "data-ID": 963, "mols2grid-id": 191, "mols2grid-tooltip": "<strong>Name</strong>: 4-Hydroxypyridine<br><strong>SMILES</strong>: n1ccc(O)cc1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">1.02</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N1C(=O)NC(=O)C=C1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 109.041,65.3641 L 109.041,51.3904' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.041,51.3904 L 109.041,37.4167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,87.7181 L 92.3004,80.6162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 92.3004,80.6162 L 104.601,73.5144' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.717,40.3209 L 119.82,35.066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 119.82,35.066 L 128.922,29.8112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 107.364,34.5125 L 116.466,29.2576' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.466,29.2576 L 125.569,24.0028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.041,37.4167 L 96.7403,30.3149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 96.7403,30.3149 L 84.4399,23.213' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.5601,23.213 L 63.2597,30.3149' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 63.2597,30.3149 L 50.9593,37.4167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 52.636,34.5125 L 43.5337,29.2576' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.5337,29.2576 L 34.4314,24.0028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.2827,40.3209 L 40.1804,35.066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.1804,35.066 L 31.0781,29.8112' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 50.9593,37.4167 L 50.9593,70.9509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 49.2826,73.8551 L 81.6767,84.8139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.6361,68.0468 L 78.3233,90.6222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80,87.7181 L 80,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.941 66.2025\\nL 110.053 71.2326\\nQ 110.362 71.7289, 110.858 72.6277\\nQ 111.355 73.5264, 111.381 73.58\\nL 111.381 66.2025\\nL 112.642 66.2025\\nL 112.642 75.6994\\nL 111.341 75.6994\\nL 108.001 70.1998\\nQ 107.612 69.5559, 107.196 68.8182\\nQ 106.794 68.0804, 106.673 67.8524\\nL 106.673 75.6994\\nL 105.439 75.6994\\nL 105.439 66.2025\\nL 106.941 66.2025\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 113.782 66.2025\\nL 115.07 66.2025\\nL 115.07 70.24\\nL 119.926 70.24\\nL 119.926 66.2025\\nL 121.214 66.2025\\nL 121.214 75.6994\\nL 119.926 75.6994\\nL 119.926 71.3131\\nL 115.07 71.3131\\nL 115.07 75.6994\\nL 113.782 75.6994\\nL 113.782 66.2025\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 127.916 24.0298\\nQ 127.916 21.7495, 129.043 20.4752\\nQ 130.169 19.2009, 132.275 19.2009\\nQ 134.381 19.2009, 135.508 20.4752\\nQ 136.635 21.7495, 136.635 24.0298\\nQ 136.635 26.337, 135.495 27.6515\\nQ 134.355 28.9527, 132.275 28.9527\\nQ 130.183 28.9527, 129.043 27.6515\\nQ 127.916 26.3504, 127.916 24.0298\\nM 132.275 27.8796\\nQ 133.724 27.8796, 134.502 26.9138\\nQ 135.293 25.9346, 135.293 24.0298\\nQ 135.293 22.1653, 134.502 21.2264\\nQ 133.724 20.274, 132.275 20.274\\nQ 130.827 20.274, 130.035 21.213\\nQ 129.257 22.1519, 129.257 24.0298\\nQ 129.257 25.948, 130.035 26.9138\\nQ 130.827 27.8796, 132.275 27.8796\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 77.9008 15.9011\\nL 81.0127 20.9313\\nQ 81.3212 21.4276, 81.8176 22.3263\\nQ 82.3139 23.225, 82.3407 23.2787\\nL 82.3407 15.9011\\nL 83.6016 15.9011\\nL 83.6016 25.398\\nL 82.3004 25.398\\nL 78.9604 19.8984\\nQ 78.5714 19.2546, 78.1556 18.5168\\nQ 77.7532 17.779, 77.6325 17.551\\nL 77.6325 25.398\\nL 76.3984 25.398\\nL 76.3984 15.9011\\nL 77.9008 15.9011\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 76.2844 5.45455\\nL 77.5721 5.45455\\nL 77.5721 9.49207\\nL 82.4279 9.49207\\nL 82.4279 5.45455\\nL 83.7156 5.45455\\nL 83.7156 14.9514\\nL 82.4279 14.9514\\nL 82.4279 10.5652\\nL 77.5721 10.5652\\nL 77.5721 14.9514\\nL 76.2844 14.9514\\nL 76.2844 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 23.3651 24.0298\\nQ 23.3651 21.7495, 24.4919 20.4752\\nQ 25.6186 19.2009, 27.7246 19.2009\\nQ 29.8305 19.2009, 30.9573 20.4752\\nQ 32.084 21.7495, 32.084 24.0298\\nQ 32.084 26.337, 30.9439 27.6515\\nQ 29.8037 28.9527, 27.7246 28.9527\\nQ 25.6321 28.9527, 24.4919 27.6515\\nQ 23.3651 26.3504, 23.3651 24.0298\\nM 27.7246 27.8796\\nQ 29.1733 27.8796, 29.9513 26.9138\\nQ 30.7427 25.9346, 30.7427 24.0298\\nQ 30.7427 22.1653, 29.9513 21.2264\\nQ 29.1733 20.274, 27.7246 20.274\\nQ 26.2759 20.274, 25.4845 21.213\\nQ 24.7065 22.1519, 24.7065 24.0298\\nQ 24.7065 25.948, 25.4845 26.9138\\nQ 26.2759 27.8796, 27.7246 27.8796\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.26, "data-ID": 968, "mols2grid-id": 192, "mols2grid-tooltip": "<strong>Name</strong>: 6-Methyluracil<br><strong>SMILES</strong>: N1C(=O)NC(=O)C=C1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.26</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O(C(O)C(O)C(O)C1O)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 111.332,88.4363 L 111.332,73.2661' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 111.332,73.2661 L 111.332,58.096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 105.679,97.8357 L 92.7117,105.322' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-0 atom-9' d='M 92.7117,105.322 L 79.7447,112.809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 111.332,58.096 L 121.233,52.3802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.233,52.3802 L 131.134,46.6645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 111.332,58.096 L 79.7447,39.8582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 79.7447,39.8582 L 79.7447,28.3247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 79.7447,28.3247 L 79.7447,16.7911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 79.7447,39.8582 L 48.1569,58.096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 48.1569,58.096 L 38.2562,52.3802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 38.2562,52.3802 L 28.3556,46.6645' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 48.1569,58.096 L 48.1569,94.5715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 48.1569,94.5715 L 38.2562,100.287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 38.2562,100.287 L 28.3556,106.003' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 79.7447,112.809 L 48.1569,94.5715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 106.591 94.6007\\nQ 106.591 92.1203, 107.816 90.7343\\nQ 109.042 89.3482, 111.332 89.3482\\nQ 113.623 89.3482, 114.849 90.7343\\nQ 116.074 92.1203, 116.074 94.6007\\nQ 116.074 97.1102, 114.834 98.54\\nQ 113.594 99.9553, 111.332 99.9553\\nQ 109.056 99.9553, 107.816 98.54\\nQ 106.591 97.1248, 106.591 94.6007\\nM 111.332 98.788\\nQ 112.908 98.788, 113.754 97.7375\\nQ 114.615 96.6725, 114.615 94.6007\\nQ 114.615 92.5726, 113.754 91.5513\\nQ 112.908 90.5154, 111.332 90.5154\\nQ 109.757 90.5154, 108.896 91.5367\\nQ 108.05 92.558, 108.05 94.6007\\nQ 108.05 96.6871, 108.896 97.7375\\nQ 109.757 98.788, 111.332 98.788\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 131.863 43.535\\nQ 131.863 41.0546, 133.089 39.6686\\nQ 134.314 38.2825, 136.605 38.2825\\nQ 138.896 38.2825, 140.121 39.6686\\nQ 141.347 41.0546, 141.347 43.535\\nQ 141.347 46.0445, 140.107 47.4743\\nQ 138.867 48.8896, 136.605 48.8896\\nQ 134.329 48.8896, 133.089 47.4743\\nQ 131.863 46.0591, 131.863 43.535\\nM 136.605 47.7223\\nQ 138.181 47.7223, 139.027 46.6719\\nQ 139.888 45.6068, 139.888 43.535\\nQ 139.888 41.5069, 139.027 40.4856\\nQ 138.181 39.4497, 136.605 39.4497\\nQ 135.029 39.4497, 134.169 40.471\\nQ 133.322 41.4923, 133.322 43.535\\nQ 133.322 45.6214, 134.169 46.6719\\nQ 135.029 47.7223, 136.605 47.7223\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 142.587 38.3992\\nL 143.988 38.3992\\nL 143.988 42.7909\\nL 149.269 42.7909\\nL 149.269 38.3992\\nL 150.67 38.3992\\nL 150.67 48.7291\\nL 149.269 48.7291\\nL 149.269 43.9581\\nL 143.988 43.9581\\nL 143.988 48.7291\\nL 142.587 48.7291\\nL 142.587 38.3992\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 75.0029 10.707\\nQ 75.0029 8.22668, 76.2284 6.84061\\nQ 77.454 5.45455, 79.7447 5.45455\\nQ 82.0353 5.45455, 83.2609 6.84061\\nQ 84.4865 8.22668, 84.4865 10.707\\nQ 84.4865 13.2165, 83.2463 14.6464\\nQ 82.0062 16.0616, 79.7447 16.0616\\nQ 77.4686 16.0616, 76.2284 14.6464\\nQ 75.0029 13.2311, 75.0029 10.707\\nM 79.7447 14.8944\\nQ 81.3204 14.8944, 82.1666 13.8439\\nQ 83.0275 12.7788, 83.0275 10.707\\nQ 83.0275 8.67898, 82.1666 7.65767\\nQ 81.3204 6.62176, 79.7447 6.62176\\nQ 78.1689 6.62176, 77.3081 7.64308\\nQ 76.4619 8.66439, 76.4619 10.707\\nQ 76.4619 12.7934, 77.3081 13.8439\\nQ 78.1689 14.8944, 79.7447 14.8944\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 85.7267 5.57127\\nL 87.1273 5.57127\\nL 87.1273 9.96292\\nL 92.409 9.96292\\nL 92.409 5.57127\\nL 93.8096 5.57127\\nL 93.8096 15.9011\\nL 92.409 15.9011\\nL 92.409 11.1301\\nL 87.1273 11.1301\\nL 87.1273 15.9011\\nL 85.7267 15.9011\\nL 85.7267 5.57127\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 9.32995 38.3992\\nL 10.7306 38.3992\\nL 10.7306 42.7909\\nL 16.0123 42.7909\\nL 16.0123 38.3992\\nL 17.4129 38.3992\\nL 17.4129 48.7291\\nL 16.0123 48.7291\\nL 16.0123 43.9581\\nL 10.7306 43.9581\\nL 10.7306 48.7291\\nL 9.32995 48.7291\\nL 9.32995 38.3992\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 18.1424 43.535\\nQ 18.1424 41.0546, 19.368 39.6686\\nQ 20.5936 38.2825, 22.8842 38.2825\\nQ 25.1749 38.2825, 26.4005 39.6686\\nQ 27.6261 41.0546, 27.6261 43.535\\nQ 27.6261 46.0445, 26.3859 47.4743\\nQ 25.1457 48.8896, 22.8842 48.8896\\nQ 20.6082 48.8896, 19.368 47.4743\\nQ 18.1424 46.0591, 18.1424 43.535\\nM 22.8842 47.7223\\nQ 24.46 47.7223, 25.3062 46.6719\\nQ 26.167 45.6068, 26.167 43.535\\nQ 26.167 41.5069, 25.3062 40.4856\\nQ 24.46 39.4497, 22.8842 39.4497\\nQ 21.3085 39.4497, 20.4477 40.471\\nQ 19.6014 41.4923, 19.6014 43.535\\nQ 19.6014 45.6214, 20.4477 46.6719\\nQ 21.3085 47.7223, 22.8842 47.7223\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 9.32995 104.055\\nL 10.7306 104.055\\nL 10.7306 108.447\\nL 16.0123 108.447\\nL 16.0123 104.055\\nL 17.4129 104.055\\nL 17.4129 114.385\\nL 16.0123 114.385\\nL 16.0123 109.614\\nL 10.7306 109.614\\nL 10.7306 114.385\\nL 9.32995 114.385\\nL 9.32995 104.055\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 18.1424 109.191\\nQ 18.1424 106.711, 19.368 105.324\\nQ 20.5936 103.938, 22.8842 103.938\\nQ 25.1749 103.938, 26.4005 105.324\\nQ 27.6261 106.711, 27.6261 109.191\\nQ 27.6261 111.7, 26.3859 113.13\\nQ 25.1457 114.545, 22.8842 114.545\\nQ 20.6082 114.545, 19.368 113.13\\nQ 18.1424 111.715, 18.1424 109.191\\nM 22.8842 113.378\\nQ 24.46 113.378, 25.3062 112.328\\nQ 26.167 111.263, 26.167 109.191\\nQ 26.167 107.163, 25.3062 106.142\\nQ 24.46 105.106, 22.8842 105.106\\nQ 21.3085 105.106, 20.4477 106.127\\nQ 19.6014 107.148, 19.6014 109.191\\nQ 19.6014 111.277, 20.4477 112.328\\nQ 21.3085 113.378, 22.8842 113.378\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": 0.39, "data-ID": 973, "mols2grid-id": 193, "mols2grid-tooltip": "<strong>Name</strong>: L-Arabinose<br><strong>SMILES</strong>: O(C(O)C(O)C(O)C1O)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.39</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cnc2c(S)ncnc2n1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.8053,28.0958 L 16.8053,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 23.8726,33.3864 L 23.8726,58.0758' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 43.0904,13.1269 L 29.9479,20.6114' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-0' d='M 29.9479,20.6114 L 16.8053,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 16.8053,63.3664 L 29.9479,70.8509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.9479,70.8509 L 43.0904,78.3353' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.4535,78.3031 L 65.3851,70.8347' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.3851,70.8347 L 78.3168,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 52.7985,69.9425 L 61.8507,64.7147' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 61.8507,64.7147 L 70.9029,59.4869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.3168,63.3664 L 108.857,81.004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-3' d='M 78.3168,28.0958 L 78.3168,63.3664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.857,81.004 L 108.857,92.2976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 108.857,92.2976 L 108.857,103.591' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 108.857,81.004 L 121.79,73.5356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 121.79,73.5356 L 134.723,66.0672' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 109.203,72.6434 L 118.256,67.4155' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 118.256,67.4155 L 127.309,62.1876' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 139.4,57.481 L 139.4,42.7884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 139.4,42.7884 L 139.4,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 139.4,28.0958 L 126.467,20.6274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.467,20.6274 L 113.534,13.159' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.985,31.9754 L 122.932,26.7475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.932,26.7475 L 113.879,21.5196' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 104.18,13.1592 L 91.2485,20.6275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 91.2485,20.6275 L 78.3168,28.0958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 78.3168,28.0958 L 65.3851,20.6275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 65.3851,20.6275 L 52.4535,13.1592' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 70.9029,31.9753 L 61.8507,26.7475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 61.8507,26.7475 L 52.7985,21.5197' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 45.5646 76.0004\\nL 48.8438 81.3009\\nQ 49.1689 81.8238, 49.6919 82.7709\\nQ 50.2148 83.7179, 50.2431 83.7744\\nL 50.2431 76.0004\\nL 51.5718 76.0004\\nL 51.5718 86.0077\\nL 50.2007 86.0077\\nL 46.6812 80.2125\\nQ 46.2713 79.534, 45.8331 78.7566\\nQ 45.4091 77.9792, 45.2819 77.7389\\nL 45.2819 86.0077\\nL 43.9815 86.0077\\nL 43.9815 76.0004\\nL 45.5646 76.0004\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 106.03 112.722\\nQ 106.143 112.764, 106.61 112.962\\nQ 107.076 113.16, 107.585 113.287\\nQ 108.108 113.401, 108.617 113.401\\nQ 109.564 113.401, 110.115 112.948\\nQ 110.666 112.482, 110.666 111.676\\nQ 110.666 111.125, 110.384 110.786\\nQ 110.115 110.446, 109.691 110.263\\nQ 109.267 110.079, 108.56 109.867\\nQ 107.67 109.598, 107.133 109.344\\nQ 106.61 109.089, 106.228 108.552\\nQ 105.86 108.015, 105.86 107.111\\nQ 105.86 105.853, 106.709 105.075\\nQ 107.571 104.298, 109.267 104.298\\nQ 110.426 104.298, 111.74 104.849\\nL 111.415 105.937\\nQ 110.214 105.443, 109.309 105.443\\nQ 108.334 105.443, 107.797 105.853\\nQ 107.26 106.248, 107.274 106.941\\nQ 107.274 107.478, 107.542 107.803\\nQ 107.825 108.128, 108.221 108.312\\nQ 108.631 108.496, 109.309 108.708\\nQ 110.214 108.991, 110.751 109.273\\nQ 111.288 109.556, 111.67 110.135\\nQ 112.066 110.701, 112.066 111.676\\nQ 112.066 113.061, 111.133 113.81\\nQ 110.214 114.545, 108.673 114.545\\nQ 107.783 114.545, 107.104 114.348\\nQ 106.44 114.164, 105.648 113.839\\nL 106.03 112.722\\n' fill='#CCCC00'/>\\n<path class='atom-5' d='M 113.267 104.27\\nL 114.624 104.27\\nL 114.624 108.524\\nL 119.741 108.524\\nL 119.741 104.27\\nL 121.098 104.27\\nL 121.098 114.277\\nL 119.741 114.277\\nL 119.741 109.655\\nL 114.624 109.655\\nL 114.624 114.277\\nL 113.267 114.277\\nL 113.267 104.27\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 137.187 58.3627\\nL 140.467 63.6632\\nQ 140.792 64.1862, 141.315 65.1332\\nQ 141.838 66.0802, 141.866 66.1368\\nL 141.866 58.3627\\nL 143.195 58.3627\\nL 143.195 68.37\\nL 141.824 68.37\\nL 138.304 62.5749\\nQ 137.894 61.8964, 137.456 61.119\\nQ 137.032 60.3416, 136.905 60.1013\\nL 136.905 68.37\\nL 135.604 68.37\\nL 135.604 58.3627\\nL 137.187 58.3627\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 106.645 5.45455\\nL 109.924 10.755\\nQ 110.249 11.278, 110.772 12.225\\nQ 111.295 13.172, 111.323 13.2286\\nL 111.323 5.45455\\nL 112.652 5.45455\\nL 112.652 15.4618\\nL 111.281 15.4618\\nL 107.762 9.66666\\nQ 107.352 8.9882, 106.913 8.21079\\nQ 106.489 7.43339, 106.362 7.1931\\nL 106.362 15.4618\\nL 105.062 15.4618\\nL 105.062 5.45455\\nL 106.645 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 45.5646 5.45455\\nL 48.8438 10.755\\nQ 49.1689 11.278, 49.6919 12.225\\nQ 50.2148 13.172, 50.2431 13.2286\\nL 50.2431 5.45455\\nL 51.5718 5.45455\\nL 51.5718 15.4618\\nL 50.2007 15.4618\\nL 46.6812 9.66666\\nQ 46.2713 8.9882, 45.8331 8.21079\\nQ 45.4091 7.43339, 45.2819 7.1931\\nL 45.2819 15.4618\\nL 43.9815 15.4618\\nL 43.9815 5.45455\\nL 45.5646 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.36, "data-ID": 978, "mols2grid-id": 194, "mols2grid-tooltip": "<strong>Name</strong>: 2-Mercaptopteridine<br><strong>SMILES</strong>: c1cnc2c(S)ncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.36</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=S(=O)(N)c(cccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 124.224,64.6863 L 116.146,69.3434' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 116.146,69.3434 L 108.067,74.0004' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 127.92,71.0985 L 119.842,75.7556' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 119.842,75.7556 L 111.763,80.4126' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.272,85.7234 L 102.269,94.461' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.269,94.461 L 102.267,103.199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.674,85.7258 L 109.671,94.4635' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.671,94.4635 L 109.668,103.201' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 110.075,81.8479 L 118.543,86.7421' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 118.543,86.7421 L 127.01,91.6362' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 101.689,77.0035 L 87.7984,68.9841' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 87.7984,68.9841 L 73.9076,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.9076,60.9646 L 73.9076,23.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.5062,55.4136 L 66.5062,29.5089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 73.9076,60.9646 L 41.8597,79.468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.9076,23.9579 L 41.8597,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 41.8597,5.45455 L 9.8119,23.9579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 40.7533,14.6398 L 18.3198,27.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 9.8119,23.9579 L 9.8119,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 41.8597,79.468 L 9.8119,60.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 40.7533,70.2828 L 18.3198,57.3304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.812 64.7221\\nQ 126.812 62.2056, 128.056 60.7993\\nQ 129.299 59.3931, 131.623 59.3931\\nQ 133.947 59.3931, 135.191 60.7993\\nQ 136.434 62.2056, 136.434 64.7221\\nQ 136.434 67.2681, 135.176 68.7188\\nQ 133.918 70.1546, 131.623 70.1546\\nQ 129.314 70.1546, 128.056 68.7188\\nQ 126.812 67.2829, 126.812 64.7221\\nM 131.623 68.9704\\nQ 133.222 68.9704, 134.081 67.9046\\nQ 134.954 66.824, 134.954 64.7221\\nQ 134.954 62.6645, 134.081 61.6283\\nQ 133.222 60.5773, 131.623 60.5773\\nQ 130.025 60.5773, 129.151 61.6135\\nQ 128.293 62.6497, 128.293 64.7221\\nQ 128.293 66.8388, 129.151 67.9046\\nQ 130.025 68.9704, 131.623 68.9704\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 103.015 83.0749\\nQ 103.133 83.1193, 103.621 83.3266\\nQ 104.11 83.5338, 104.643 83.667\\nQ 105.191 83.7855, 105.723 83.7855\\nQ 106.715 83.7855, 107.293 83.3118\\nQ 107.87 82.8233, 107.87 81.9795\\nQ 107.87 81.4022, 107.574 81.047\\nQ 107.293 80.6917, 106.848 80.4993\\nQ 106.404 80.3068, 105.664 80.0848\\nQ 104.732 79.8035, 104.169 79.5371\\nQ 103.621 79.2706, 103.222 78.7081\\nQ 102.837 78.1456, 102.837 77.1983\\nQ 102.837 75.8808, 103.725 75.0667\\nQ 104.628 74.2525, 106.404 74.2525\\nQ 107.618 74.2525, 108.995 74.8298\\nL 108.654 75.9696\\nQ 107.396 75.4515, 106.449 75.4515\\nQ 105.427 75.4515, 104.865 75.8808\\nQ 104.302 76.2953, 104.317 77.0206\\nQ 104.317 77.5831, 104.598 77.9236\\nQ 104.895 78.2641, 105.309 78.4565\\nQ 105.738 78.6489, 106.449 78.871\\nQ 107.396 79.167, 107.959 79.4631\\nQ 108.521 79.7591, 108.921 80.366\\nQ 109.335 80.9581, 109.335 81.9795\\nQ 109.335 83.4302, 108.358 84.2147\\nQ 107.396 84.9845, 105.783 84.9845\\nQ 104.85 84.9845, 104.14 84.7772\\nQ 103.444 84.5848, 102.615 84.2443\\nL 103.015 83.0749\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 101.154 109.113\\nQ 101.154 106.596, 102.398 105.19\\nQ 103.641 103.784, 105.965 103.784\\nQ 108.289 103.784, 109.533 105.19\\nQ 110.776 106.596, 110.776 109.113\\nQ 110.776 111.659, 109.518 113.11\\nQ 108.26 114.545, 105.965 114.545\\nQ 103.656 114.545, 102.398 113.11\\nQ 101.154 111.674, 101.154 109.113\\nM 105.965 113.361\\nQ 107.564 113.361, 108.423 112.295\\nQ 109.296 111.215, 109.296 109.113\\nQ 109.296 107.055, 108.423 106.019\\nQ 107.564 104.968, 105.965 104.968\\nQ 104.367 104.968, 103.493 106.004\\nQ 102.635 107.04, 102.635 109.113\\nQ 102.635 111.23, 103.493 112.295\\nQ 104.367 113.361, 105.965 113.361\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 129.289 89.0528\\nL 132.724 94.6038\\nQ 133.064 95.1515, 133.612 96.1432\\nQ 134.159 97.135, 134.189 97.1942\\nL 134.189 89.0528\\nL 135.581 89.0528\\nL 135.581 99.5331\\nL 134.145 99.5331\\nL 130.459 93.464\\nQ 130.029 92.7534, 129.571 91.9393\\nQ 129.127 91.1251, 128.993 90.8735\\nL 128.993 99.5331\\nL 127.631 99.5331\\nL 127.631 89.0528\\nL 129.289 89.0528\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 136.839 89.0528\\nL 138.26 89.0528\\nL 138.26 93.5084\\nL 143.618 93.5084\\nL 143.618 89.0528\\nL 145.039 89.0528\\nL 145.039 99.5331\\nL 143.618 99.5331\\nL 143.618 94.6926\\nL 138.26 94.6926\\nL 138.26 99.5331\\nL 136.839 99.5331\\nL 136.839 89.0528\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 145.547 99.1654\\nQ 145.801 98.5108, 146.407 98.1493\\nQ 147.013 97.7781, 147.853 97.7781\\nQ 148.898 97.7781, 149.485 98.3447\\nQ 150.071 98.9113, 150.071 99.9176\\nQ 150.071 100.943, 149.309 101.901\\nQ 148.557 102.858, 146.993 103.992\\nL 150.188 103.992\\nL 150.188 104.773\\nL 145.528 104.773\\nL 145.528 104.119\\nQ 146.818 103.2, 147.58 102.516\\nQ 148.351 101.833, 148.723 101.217\\nQ 149.094 100.602, 149.094 99.9665\\nQ 149.094 99.3021, 148.762 98.9309\\nQ 148.43 98.5596, 147.853 98.5596\\nQ 147.296 98.5596, 146.925 98.7843\\nQ 146.554 99.009, 146.29 99.5073\\nL 145.547 99.1654\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.56, "data-ID": 983, "mols2grid-id": 195, "mols2grid-tooltip": "<strong>Name</strong>: Benzenesulfonamide<br><strong>SMILES</strong>: O=S(=O)(N)c(cccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.56</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N(C(=S)SSC(N(C)C)=S)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.735,64.3185 L 122.399,58.9319' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.399,58.9319 L 113.062,53.5452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-0 atom-10' d='M 138.343,64.3922 L 145.535,60.2429' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-0 atom-10' d='M 145.535,60.2429 L 152.727,56.0935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-11' d='M 135.102,70.3714 L 135.102,78.4896' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-11' d='M 135.102,78.4896 L 135.102,86.6077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.606,53.5452 L 115.606,45.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 115.606,45.5186 L 115.606,37.4921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.519,53.5452 L 110.519,45.5186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.519,45.5186 L 110.519,37.4921' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 113.062,53.5452 L 103.514,59.0537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 103.514,59.0537 L 93.9663,64.5622' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.0754,64.5622 L 71.8396,55.1954' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.0337,55.2445 L 56.4856,60.753' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.4856,60.753 L 46.9375,66.2615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.9375,66.2615 L 37.6005,60.8748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 37.6005,60.8748 L 28.2635,55.4881' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 44.3943,66.2615 L 44.3943,74.3847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 44.3943,74.3847 L 44.3943,82.5079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 49.4808,66.2615 L 49.4808,74.3847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-5 atom-9' d='M 49.4808,74.3847 L 49.4808,82.5079' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 21.6558,55.4146 L 14.4642,59.5639' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 14.4642,59.5639 L 7.27273,63.7132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 24.8959,49.4353 L 24.8959,41.3172' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 24.8959,41.3172 L 24.8959,33.199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 133.51 62.6603\\nL 135.87 66.4752\\nQ 136.104 66.8516, 136.481 67.5332\\nQ 136.857 68.2148, 136.878 68.2554\\nL 136.878 62.6603\\nL 137.834 62.6603\\nL 137.834 69.8628\\nL 136.847 69.8628\\nL 134.314 65.6918\\nQ 134.019 65.2035, 133.704 64.644\\nQ 133.398 64.0845, 133.307 63.9115\\nL 133.307 69.8628\\nL 132.371 69.8628\\nL 132.371 62.6603\\nL 133.51 62.6603\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 111.028 35.6711\\nQ 111.109 35.7016, 111.445 35.844\\nQ 111.781 35.9865, 112.147 36.078\\nQ 112.523 36.1594, 112.89 36.1594\\nQ 113.571 36.1594, 113.968 35.8339\\nQ 114.365 35.4982, 114.365 34.9183\\nQ 114.365 34.5215, 114.161 34.2774\\nQ 113.968 34.0332, 113.663 33.901\\nQ 113.357 33.7687, 112.849 33.6161\\nQ 112.208 33.4229, 111.821 33.2397\\nQ 111.445 33.0566, 111.17 32.67\\nQ 110.906 32.2835, 110.906 31.6324\\nQ 110.906 30.727, 111.516 30.1675\\nQ 112.137 29.608, 113.357 29.608\\nQ 114.192 29.608, 115.138 30.0047\\nL 114.904 30.788\\nQ 114.039 30.432, 113.388 30.432\\nQ 112.686 30.432, 112.299 30.727\\nQ 111.913 31.0118, 111.923 31.5103\\nQ 111.923 31.8969, 112.116 32.1309\\nQ 112.32 32.3649, 112.605 32.4971\\nQ 112.9 32.6294, 113.388 32.782\\nQ 114.039 32.9854, 114.426 33.1889\\nQ 114.812 33.3923, 115.087 33.8094\\nQ 115.372 34.2164, 115.372 34.9183\\nQ 115.372 35.9153, 114.7 36.4544\\nQ 114.039 36.9834, 112.93 36.9834\\nQ 112.289 36.9834, 111.801 36.841\\nQ 111.323 36.7088, 110.753 36.4748\\nL 111.028 35.6711\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 88.9862 68.7336\\nQ 89.0676 68.7641, 89.4033 68.9065\\nQ 89.739 69.0489, 90.1052 69.1405\\nQ 90.4817 69.2219, 90.8479 69.2219\\nQ 91.5295 69.2219, 91.9262 68.8963\\nQ 92.323 68.5606, 92.323 67.9808\\nQ 92.323 67.584, 92.1195 67.3399\\nQ 91.9262 67.0957, 91.621 66.9635\\nQ 91.3158 66.8312, 90.8072 66.6786\\nQ 90.1663 66.4853, 89.7797 66.3022\\nQ 89.4033 66.1191, 89.1286 65.7325\\nQ 88.8641 65.3459, 88.8641 64.6949\\nQ 88.8641 63.7895, 89.4745 63.2299\\nQ 90.0951 62.6704, 91.3158 62.6704\\nQ 92.15 62.6704, 93.0961 63.0672\\nL 92.8622 63.8505\\nQ 91.9974 63.4944, 91.3464 63.4944\\nQ 90.6444 63.4944, 90.2578 63.7895\\nQ 89.8713 64.0743, 89.8814 64.5728\\nQ 89.8814 64.9594, 90.0747 65.1934\\nQ 90.2782 65.4273, 90.563 65.5596\\nQ 90.8581 65.6918, 91.3464 65.8444\\nQ 91.9974 66.0479, 92.384 66.2514\\nQ 92.7706 66.4548, 93.0453 66.8719\\nQ 93.3301 67.2788, 93.3301 67.9808\\nQ 93.3301 68.9777, 92.6587 69.5169\\nQ 91.9974 70.0459, 90.8886 70.0459\\nQ 90.2477 70.0459, 89.7594 69.9035\\nQ 89.2812 69.7712, 88.7115 69.5373\\nL 88.9862 68.7336\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 66.9446 56.0172\\nQ 67.0259 56.0478, 67.3617 56.1902\\nQ 67.6974 56.3326, 68.0636 56.4242\\nQ 68.44 56.5056, 68.8062 56.5056\\nQ 69.4878 56.5056, 69.8846 56.18\\nQ 70.2813 55.8443, 70.2813 55.2644\\nQ 70.2813 54.8677, 70.0779 54.6235\\nQ 69.8846 54.3794, 69.5794 54.2471\\nQ 69.2742 54.1149, 68.7655 53.9623\\nQ 68.1246 53.769, 67.7381 53.5859\\nQ 67.3617 53.4028, 67.087 53.0162\\nQ 66.8225 52.6296, 66.8225 51.9785\\nQ 66.8225 51.0731, 67.4329 50.5136\\nQ 68.0534 49.9541, 69.2742 49.9541\\nQ 70.1084 49.9541, 71.0545 50.3508\\nL 70.8205 51.1342\\nQ 69.9558 50.7781, 69.3047 50.7781\\nQ 68.6028 50.7781, 68.2162 51.0731\\nQ 67.8296 51.358, 67.8398 51.8565\\nQ 67.8398 52.243, 68.0331 52.477\\nQ 68.2365 52.711, 68.5214 52.8432\\nQ 68.8164 52.9755, 69.3047 53.1281\\nQ 69.9558 53.3316, 70.3424 53.535\\nQ 70.7289 53.7385, 71.0036 54.1556\\nQ 71.2885 54.5625, 71.2885 55.2644\\nQ 71.2885 56.2614, 70.617 56.8006\\nQ 69.9558 57.3296, 68.8469 57.3296\\nQ 68.206 57.3296, 67.7177 57.1871\\nQ 67.2396 57.0549, 66.6699 56.8209\\nL 66.9446 56.0172\\n' fill='#CCCC00'/>\\n<path class='atom-6' d='M 23.3038 49.9439\\nL 25.6639 53.7588\\nQ 25.8979 54.1352, 26.2743 54.8168\\nQ 26.6507 55.4984, 26.6711 55.5391\\nL 26.6711 49.9439\\nL 27.6273 49.9439\\nL 27.6273 57.1465\\nL 26.6406 57.1465\\nL 24.1075 52.9755\\nQ 23.8124 52.4872, 23.4971 51.9277\\nQ 23.1919 51.3682, 23.1003 51.1952\\nL 23.1003 57.1465\\nL 22.1644 57.1465\\nL 22.1644 49.9439\\nL 23.3038 49.9439\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 44.9029 89.0797\\nQ 44.9843 89.1102, 45.32 89.2527\\nQ 45.6557 89.3951, 46.0219 89.4866\\nQ 46.3984 89.568, 46.7646 89.568\\nQ 47.4462 89.568, 47.8429 89.2425\\nQ 48.2397 88.9068, 48.2397 88.3269\\nQ 48.2397 87.9302, 48.0362 87.686\\nQ 47.8429 87.4419, 47.5377 87.3096\\nQ 47.2325 87.1774, 46.7239 87.0248\\nQ 46.083 86.8315, 45.6964 86.6484\\nQ 45.32 86.4652, 45.0453 86.0787\\nQ 44.7808 85.6921, 44.7808 85.041\\nQ 44.7808 84.1356, 45.3912 83.5761\\nQ 46.0118 83.0166, 47.2325 83.0166\\nQ 48.0667 83.0166, 49.0128 83.4133\\nL 48.7789 84.1966\\nQ 47.9141 83.8406, 47.2631 83.8406\\nQ 46.5611 83.8406, 46.1745 84.1356\\nQ 45.788 84.4205, 45.7981 84.9189\\nQ 45.7981 85.3055, 45.9914 85.5395\\nQ 46.1949 85.7735, 46.4797 85.9057\\nQ 46.7748 86.038, 47.2631 86.1906\\nQ 47.9141 86.394, 48.3007 86.5975\\nQ 48.6873 86.801, 48.962 87.218\\nQ 49.2468 87.625, 49.2468 88.3269\\nQ 49.2468 89.3239, 48.5754 89.863\\nQ 47.9141 90.392, 46.8053 90.392\\nQ 46.1644 90.392, 45.6761 90.2496\\nQ 45.1979 90.1174, 44.6282 89.8834\\nL 44.9029 89.0797\\n' fill='#CCCC00'/>\\n</svg>\\n", "data-Solubility": -3.9, "data-ID": 988, "mols2grid-id": 196, "mols2grid-tooltip": "<strong>Name</strong>: Thiram<br><strong>SMILES</strong>: N(C(=S)SSC(N(C)C)=S)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.9</span>", "style-Solubility": "color: red"}, {"data-SMILES": "N1C(C)CNC(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,72.5025 L 112.475,56.8762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 112.475,56.8762 L 112.475,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80,97.5 L 93.755,89.5583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 93.755,89.5583 L 107.51,81.6166' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.475,41.25 L 138.457,26.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 112.475,41.25 L 80,22.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80,22.5 L 66.245,30.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.245,30.4417 L 52.49,38.3834' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,47.4975 L 47.525,63.1237' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 47.525,63.1237 L 47.525,78.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.525,78.75 L 21.5425,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 47.525,78.75 L 80,97.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 110.127 73.44\\nL 113.608 79.065\\nQ 113.953 79.62, 114.507 80.625\\nQ 115.062 81.63, 115.093 81.69\\nL 115.093 73.44\\nL 116.502 73.44\\nL 116.502 84.06\\nL 115.047 84.06\\nL 111.312 77.91\\nQ 110.877 77.19, 110.412 76.365\\nQ 109.963 75.54, 109.828 75.285\\nL 109.828 84.06\\nL 108.448 84.06\\nL 108.448 73.44\\nL 110.127 73.44\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 117.778 73.44\\nL 119.218 73.44\\nL 119.218 77.955\\nL 124.647 77.955\\nL 124.647 73.44\\nL 126.088 73.44\\nL 126.088 84.06\\nL 124.647 84.06\\nL 124.647 79.155\\nL 119.218 79.155\\nL 119.218 84.06\\nL 117.778 84.06\\nL 117.778 73.44\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 33.9425 35.94\\nL 35.3825 35.94\\nL 35.3825 40.455\\nL 40.8125 40.455\\nL 40.8125 35.94\\nL 42.2525 35.94\\nL 42.2525 46.56\\nL 40.8125 46.56\\nL 40.8125 41.655\\nL 35.3825 41.655\\nL 35.3825 46.56\\nL 33.9425 46.56\\nL 33.9425 35.94\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 45.1775 35.94\\nL 48.6575 41.565\\nQ 49.0025 42.12, 49.5575 43.125\\nQ 50.1125 44.13, 50.1425 44.19\\nL 50.1425 35.94\\nL 51.5525 35.94\\nL 51.5525 46.56\\nL 50.0975 46.56\\nL 46.3625 40.41\\nQ 45.9275 39.69, 45.4625 38.865\\nQ 45.0125 38.04, 44.8775 37.785\\nL 44.8775 46.56\\nL 43.4975 46.56\\nL 43.4975 35.94\\nL 45.1775 35.94\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": 0.49, "data-ID": 993, "mols2grid-id": 197, "mols2grid-tooltip": "<strong>Name</strong>: trans-2,5-Dimethylpiperazine<br><strong>SMILES</strong>: N1C(C)CNC(C)C1<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">0.49</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)c(cccc1I)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.246,98.5863 L 120.261,88.033' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.261,88.033 L 120.276,77.4797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.618,98.5769 L 113.632,88.0236' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.632,88.0236 L 113.647,77.4703' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.962,77.475 L 125.968,72.2955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.968,72.2955 L 134.975,67.116' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 116.962,77.475 L 88.274,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.274,60.8341 L 88.274,27.6894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.6451,55.8624 L 81.6451,32.6611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-3 atom-9' d='M 88.274,60.8341 L 59.5707,77.4065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 88.274,27.6894 L 59.5707,11.117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.5707,11.117 L 30.8674,27.6894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.5797,19.3437 L 38.4874,30.9444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.8674,27.6894 L 30.8674,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.8674,60.8341 L 20.0313,67.0899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 20.0313,67.0899 L 9.19515,73.3458' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 59.5707,77.4065 L 30.8674,60.8341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-7' d='M 58.5797,69.1799 L 38.4874,57.5792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 112.616 104.017\\nQ 112.616 101.763, 113.729 100.504\\nQ 114.843 99.2445, 116.924 99.2445\\nQ 119.006 99.2445, 120.119 100.504\\nQ 121.233 101.763, 121.233 104.017\\nQ 121.233 106.298, 120.106 107.597\\nQ 118.979 108.883, 116.924 108.883\\nQ 114.856 108.883, 113.729 107.597\\nQ 112.616 106.311, 112.616 104.017\\nM 116.924 107.822\\nQ 118.356 107.822, 119.125 106.868\\nQ 119.907 105.9, 119.907 104.017\\nQ 119.907 102.174, 119.125 101.246\\nQ 118.356 100.305, 116.924 100.305\\nQ 115.492 100.305, 114.71 101.233\\nQ 113.941 102.161, 113.941 104.017\\nQ 113.941 105.913, 114.71 106.868\\nQ 115.492 107.822, 116.924 107.822\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 135.638 64.2834\\nQ 135.638 62.0296, 136.752 60.7701\\nQ 137.865 59.5106, 139.947 59.5106\\nQ 142.028 59.5106, 143.142 60.7701\\nQ 144.255 62.0296, 144.255 64.2834\\nQ 144.255 66.5638, 143.129 67.863\\nQ 142.002 69.1491, 139.947 69.1491\\nQ 137.878 69.1491, 136.752 67.863\\nQ 135.638 66.577, 135.638 64.2834\\nM 139.947 68.0884\\nQ 141.379 68.0884, 142.147 67.1339\\nQ 142.93 66.166, 142.93 64.2834\\nQ 142.93 62.4406, 142.147 61.5125\\nQ 141.379 60.5712, 139.947 60.5712\\nQ 138.515 60.5712, 137.733 61.4992\\nQ 136.964 62.4273, 136.964 64.2834\\nQ 136.964 66.1793, 137.733 67.1339\\nQ 138.515 68.0884, 139.947 68.0884\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 145.382 59.6166\\nL 146.655 59.6166\\nL 146.655 63.6073\\nL 151.455 63.6073\\nL 151.455 59.6166\\nL 152.727 59.6166\\nL 152.727 69.0032\\nL 151.455 69.0032\\nL 151.455 64.6679\\nL 146.655 64.6679\\nL 146.655 69.0032\\nL 145.382 69.0032\\nL 145.382 59.6166\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 7.27273 69.3789\\nL 8.53223 69.3789\\nL 8.53223 78.8052\\nL 7.27273 78.8052\\nL 7.27273 69.3789\\n' fill='#A01EEF'/>\\n</svg>\\n", "data-Solubility": -3.27, "data-ID": 998, "mols2grid-id": 198, "mols2grid-tooltip": "<strong>Name</strong>: m-Iodobenzoic_Acid<br><strong>SMILES</strong>: O=C(O)c(cccc1I)c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.27</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cnc2c(OC)ncnc2n1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.8512,25.2132 L 24.8512,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 31.0187,29.8302 L 31.0187,51.3762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 47.7897,12.1501 L 36.3204,18.6816' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 36.3204,18.6816 L 24.8512,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.8512,55.9932 L 36.3204,62.5247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 36.3204,62.5247 L 47.7897,69.0563' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.9606,69.0281 L 67.2459,62.5107' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 67.2459,62.5107 L 78.5311,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 56.2618,61.7321 L 64.1614,57.1698' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 64.1614,57.1698 L 72.0611,52.6076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 78.5311,55.9932 L 105.183,71.3852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-3' d='M 78.5311,25.2132 L 78.5311,55.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 105.183,71.3852 L 105.209,84.2186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 105.209,84.2186 L 105.236,97.0519' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 105.183,71.3852 L 116.469,64.8677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 116.469,64.8677 L 127.755,58.3501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 105.485,64.089 L 113.385,59.5267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 113.385,59.5267 L 121.285,54.9645' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 109.872,104.901 L 118.251,109.723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 118.251,109.723 L 126.629,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.837,50.8571 L 131.837,38.0351' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.837,38.0351 L 131.837,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 131.837,25.2132 L 120.551,18.6956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 120.551,18.6956 L 109.264,12.1781' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 125.367,28.5988 L 117.466,24.0366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 117.466,24.0366 L 109.566,19.4743' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 101.102,12.1782 L 89.8163,18.6957' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 89.8163,18.6957 L 78.5311,25.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.5311,25.2132 L 67.2459,18.6957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 67.2459,18.6957 L 55.9606,12.1782' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 72.0611,28.5988 L 64.1614,24.0365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 64.1614,24.0365 L 56.2618,19.4743' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 49.9488 67.0186\\nL 52.8105 71.6443\\nQ 53.0942 72.1007, 53.5506 72.9271\\nQ 54.007 73.7535, 54.0317 73.8029\\nL 54.0317 67.0186\\nL 55.1912 67.0186\\nL 55.1912 75.7518\\nL 53.9947 75.7518\\nL 50.9233 70.6945\\nQ 50.5656 70.1024, 50.1832 69.424\\nQ 49.8131 68.7455, 49.7021 68.5358\\nL 49.7021 75.7518\\nL 48.5673 75.7518\\nL 48.5673 67.0186\\nL 49.9488 67.0186\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 101.238 102.264\\nQ 101.238 100.167, 102.274 98.9951\\nQ 103.31 97.8233, 105.247 97.8233\\nQ 107.183 97.8233, 108.219 98.9951\\nQ 109.256 100.167, 109.256 102.264\\nQ 109.256 104.386, 108.207 105.594\\nQ 107.159 106.791, 105.247 106.791\\nQ 103.322 106.791, 102.274 105.594\\nQ 101.238 104.398, 101.238 102.264\\nM 105.247 105.804\\nQ 106.579 105.804, 107.294 104.916\\nQ 108.022 104.015, 108.022 102.264\\nQ 108.022 100.549, 107.294 99.6859\\nQ 106.579 98.8101, 105.247 98.8101\\nQ 103.915 98.8101, 103.187 99.6735\\nQ 102.471 100.537, 102.471 102.264\\nQ 102.471 104.028, 103.187 104.916\\nQ 103.915 105.804, 105.247 105.804\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 129.906 51.6266\\nL 132.768 56.2522\\nQ 133.052 56.7086, 133.508 57.5351\\nQ 133.965 58.3615, 133.989 58.4108\\nL 133.989 51.6266\\nL 135.149 51.6266\\nL 135.149 60.3598\\nL 133.952 60.3598\\nL 130.881 55.3024\\nQ 130.523 54.7103, 130.141 54.0319\\nQ 129.771 53.3535, 129.66 53.1438\\nL 129.66 60.3598\\nL 128.525 60.3598\\nL 128.525 51.6266\\nL 129.906 51.6266\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 103.253 5.45455\\nL 106.114 10.0802\\nQ 106.398 10.5366, 106.854 11.363\\nQ 107.311 12.1895, 107.335 12.2388\\nL 107.335 5.45455\\nL 108.495 5.45455\\nL 108.495 14.1877\\nL 107.298 14.1877\\nL 104.227 9.13038\\nQ 103.869 8.5383, 103.487 7.85987\\nQ 103.117 7.18145, 103.006 6.97175\\nL 103.006 14.1877\\nL 101.871 14.1877\\nL 101.871 5.45455\\nL 103.253 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 49.9488 5.45455\\nL 52.8105 10.0802\\nQ 53.0942 10.5366, 53.5506 11.363\\nQ 54.007 12.1895, 54.0317 12.2388\\nL 54.0317 5.45455\\nL 55.1912 5.45455\\nL 55.1912 14.1877\\nL 53.9947 14.1877\\nL 50.9233 9.13038\\nQ 50.5656 8.5383, 50.1832 7.85987\\nQ 49.8131 7.18145, 49.7021 6.97175\\nL 49.7021 14.1877\\nL 48.5673 14.1877\\nL 48.5673 5.45455\\nL 49.9488 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.11, "data-ID": 1003, "mols2grid-id": 199, "mols2grid-tooltip": "<strong>Name</strong>: 2-Methoxypteridine<br><strong>SMILES</strong>: c1cnc2c(OC)ncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.11</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1c(SC)nc2cncnc2n1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 37.954,33.3727 L 37.954,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 44.3717,38.177 L 44.3717,60.5973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 61.8233,19.7795 L 49.8886,26.5761' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-0' d='M 49.8886,26.5761 L 37.954,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 37.954,65.4016 L 25.9283,72.3808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 25.9283,72.3808 L 13.9027,79.3599' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 37.954,65.4016 L 49.8886,72.1982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 49.8886,72.1982 L 61.8233,78.9948' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 10.195,86.9333 L 10.211,97.0605' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 10.211,97.0605 L 10.227,107.188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.3258,78.9655 L 82.0689,72.1836' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.0689,72.1836 L 93.8121,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 70.6391,71.3734 L 78.8593,66.626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 78.8593,66.626 L 87.0796,61.8787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.8121,65.4016 L 121.545,81.4182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 93.8121,33.3727 L 93.8121,65.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 121.545,81.4182 L 133.29,74.6362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 133.29,74.6362 L 145.034,67.8542' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 121.859,73.826 L 130.08,69.0786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 130.08,69.0786 L 138.301,64.3312' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 149.281,60.0571 L 149.281,46.7149' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 149.281,46.7149 L 149.281,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 149.281,33.3727 L 137.537,26.5906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 137.537,26.5906 L 125.792,19.8086' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 142.548,36.8957 L 134.327,32.1483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 134.327,32.1483 L 126.106,27.4009' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 117.298,19.8088 L 105.555,26.5907' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 105.555,26.5907 L 93.8121,33.3727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 93.8121,33.3727 L 82.0689,26.5907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 82.0689,26.5907 L 70.3258,19.8088' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 87.0796,36.8956 L 78.8593,32.1483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 78.8593,32.1483 L 70.6391,27.4009' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.61929 84.6357\\nQ 7.72197 84.6742, 8.14554 84.8539\\nQ 8.56912 85.0336, 9.0312 85.1491\\nQ 9.50611 85.2518, 9.96819 85.2518\\nQ 10.8282 85.2518, 11.3288 84.8411\\nQ 11.8293 84.4175, 11.8293 83.6859\\nQ 11.8293 83.1853, 11.5726 82.8772\\nQ 11.3288 82.5692, 10.9437 82.4023\\nQ 10.5586 82.2354, 9.91685 82.0429\\nQ 9.10821 81.799, 8.62046 81.568\\nQ 8.14554 81.337, 7.79898 80.8492\\nQ 7.46526 80.3615, 7.46526 79.54\\nQ 7.46526 78.3976, 8.23539 77.6917\\nQ 9.01836 76.9857, 10.5586 76.9857\\nQ 11.6111 76.9857, 12.8048 77.4863\\nL 12.5096 78.4746\\nQ 11.4186 78.0254, 10.5971 78.0254\\nQ 9.71148 78.0254, 9.22373 78.3976\\nQ 8.73598 78.757, 8.74882 79.386\\nQ 8.74882 79.8737, 8.99269 80.1689\\nQ 9.2494 80.4641, 9.6088 80.631\\nQ 9.98103 80.7979, 10.5971 80.9904\\nQ 11.4186 81.2471, 11.9064 81.5038\\nQ 12.3941 81.7605, 12.7407 82.2868\\nQ 13.1001 82.8002, 13.1001 83.6859\\nQ 13.1001 84.9437, 12.2529 85.624\\nQ 11.4186 86.2915, 10.0195 86.2915\\nQ 9.21089 86.2915, 8.59479 86.1118\\nQ 7.99152 85.9449, 7.27273 85.6497\\nL 7.61929 84.6357\\n' fill='#CCCC00'/>\\n<path class='atom-4' d='M 64.07 76.8745\\nL 67.0479 81.6878\\nQ 67.3431 82.1627, 67.818 83.0227\\nQ 68.2929 83.8827, 68.3186 83.934\\nL 68.3186 76.8745\\nL 69.5251 76.8745\\nL 69.5251 85.962\\nL 68.2801 85.962\\nL 65.084 80.6995\\nQ 64.7118 80.0834, 64.3139 79.3774\\nQ 63.9288 78.6714, 63.8133 78.4532\\nL 63.8133 85.962\\nL 62.6324 85.962\\nL 62.6324 76.8745\\nL 64.07 76.8745\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 147.272 60.8578\\nL 150.25 65.6712\\nQ 150.545 66.1461, 151.02 67.0061\\nQ 151.495 67.8661, 151.521 67.9174\\nL 151.521 60.8578\\nL 152.727 60.8578\\nL 152.727 69.9454\\nL 151.482 69.9454\\nL 148.286 64.6828\\nQ 147.914 64.0667, 147.516 63.3608\\nQ 147.131 62.6548, 147.015 62.4366\\nL 147.015 69.9454\\nL 145.835 69.9454\\nL 145.835 60.8578\\nL 147.272 60.8578\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 119.537 12.8123\\nL 122.515 17.6256\\nQ 122.81 18.1005, 123.285 18.9605\\nQ 123.76 19.8205, 123.785 19.8718\\nL 123.785 12.8123\\nL 124.992 12.8123\\nL 124.992 21.8998\\nL 123.747 21.8998\\nL 120.551 16.6372\\nQ 120.178 16.0211, 119.781 15.3152\\nQ 119.395 14.6092, 119.28 14.391\\nL 119.28 21.8998\\nL 118.099 21.8998\\nL 118.099 12.8123\\nL 119.537 12.8123\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 64.07 12.8123\\nL 67.0479 17.6256\\nQ 67.3431 18.1005, 67.818 18.9605\\nQ 68.2929 19.8205, 68.3186 19.8718\\nL 68.3186 12.8123\\nL 69.5251 12.8123\\nL 69.5251 21.8998\\nL 68.2801 21.8998\\nL 65.084 16.6372\\nQ 64.7118 16.0211, 64.3139 15.3152\\nQ 63.9288 14.6092, 63.8133 14.391\\nL 63.8133 21.8998\\nL 62.6324 21.8998\\nL 62.6324 12.8123\\nL 64.07 12.8123\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.55, "data-ID": 1008, "mols2grid-id": 200, "mols2grid-tooltip": "<strong>Name</strong>: 7-Methylthiopteridine<br><strong>SMILES</strong>: c1c(SC)nc2cncnc2n1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.55</span>", "style-Solubility": "color: black"}, {"data-SMILES": "N1C(=S)NC(=O)C=C1CCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 100.327,46.4612 L 100.327,36.8965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.327,36.8965 L 100.327,27.3319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 80.4499,61.7619 L 88.8692,56.9009' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 88.8692,56.9009 L 97.2885,52.0398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.475,29.3197 L 108.155,25.4632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.155,25.4632 L 114.835,21.6066' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.1799,25.344 L 105.86,21.4875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 105.86,21.4875 L 112.54,17.6309' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 100.327,27.3319 L 91.9082,22.4708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.9082,22.4708 L 83.4889,17.6098' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.4109,17.6098 L 68.9916,22.4708' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 68.9916,22.4708 L 60.5723,27.3319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 61.7199,25.344 L 55.4896,21.7472' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 55.4896,21.7472 L 49.2593,18.1504' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.4247,29.3197 L 53.1944,25.7229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 53.1944,25.7229 L 46.9641,22.1261' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 60.5723,27.3319 L 60.5723,50.2852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 59.4246,52.273 L 81.5976,59.7741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.72,48.2974 L 79.3022,63.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.4499,61.7619 L 80.4973,84.7275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 80.4973,84.7275 L 100.402,96.1828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 100.402,96.1828 L 100.441,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 98.8906 47.035\\nL 101.021 50.478\\nQ 101.232 50.8177, 101.572 51.4329\\nQ 101.911 52.048, 101.93 52.0848\\nL 101.93 47.035\\nL 102.793 47.035\\nL 102.793 53.5354\\nL 101.902 53.5354\\nL 99.6159 49.7711\\nQ 99.3497 49.3304, 99.0651 48.8254\\nQ 98.7896 48.3204, 98.707 48.1643\\nL 98.707 53.5354\\nL 97.8623 53.5354\\nL 97.8623 47.035\\nL 98.8906 47.035\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 103.573 47.035\\nL 104.455 47.035\\nL 104.455 49.7986\\nL 107.778 49.7986\\nL 107.778 47.035\\nL 108.66 47.035\\nL 108.66 53.5354\\nL 107.778 53.5354\\nL 107.778 50.5331\\nL 104.455 50.5331\\nL 104.455 53.5354\\nL 103.573 53.5354\\nL 103.573 47.035\\n' fill='#0000FF'/>\\n<path class='atom-2' d='M 114.395 20.3816\\nQ 114.468 20.4091, 114.771 20.5377\\nQ 115.074 20.6662, 115.405 20.7488\\nQ 115.745 20.8223, 116.075 20.8223\\nQ 116.69 20.8223, 117.048 20.5285\\nQ 117.406 20.2255, 117.406 19.7022\\nQ 117.406 19.3441, 117.223 19.1237\\nQ 117.048 18.9034, 116.773 18.784\\nQ 116.497 18.6647, 116.038 18.5269\\nQ 115.46 18.3525, 115.111 18.1872\\nQ 114.771 18.022, 114.523 17.6731\\nQ 114.285 17.3242, 114.285 16.7366\\nQ 114.285 15.9194, 114.836 15.4145\\nQ 115.396 14.9095, 116.497 14.9095\\nQ 117.25 14.9095, 118.104 15.2676\\nL 117.893 15.9745\\nQ 117.113 15.6532, 116.525 15.6532\\nQ 115.891 15.6532, 115.543 15.9194\\nQ 115.194 16.1765, 115.203 16.6264\\nQ 115.203 16.9753, 115.377 17.1865\\nQ 115.561 17.3976, 115.818 17.517\\nQ 116.084 17.6364, 116.525 17.7741\\nQ 117.113 17.9577, 117.461 18.1413\\nQ 117.81 18.325, 118.058 18.7014\\nQ 118.315 19.0686, 118.315 19.7022\\nQ 118.315 20.6019, 117.709 21.0885\\nQ 117.113 21.566, 116.112 21.566\\nQ 115.533 21.566, 115.093 21.4374\\nQ 114.661 21.3181, 114.147 21.1069\\nL 114.395 20.3816\\n' fill='#CCCC00'/>\\n<path class='atom-3' d='M 79.013 12.605\\nL 81.1431 16.048\\nQ 81.3542 16.3877, 81.694 17.0028\\nQ 82.0337 17.618, 82.052 17.6547\\nL 82.052 12.605\\nL 82.9151 12.605\\nL 82.9151 19.1054\\nL 82.0245 19.1054\\nL 79.7383 15.341\\nQ 79.4721 14.9003, 79.1875 14.3953\\nQ 78.912 13.8904, 78.8294 13.7343\\nL 78.8294 19.1054\\nL 77.9847 19.1054\\nL 77.9847 12.605\\nL 79.013 12.605\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 77.9067 5.45455\\nL 78.7881 5.45455\\nL 78.7881 8.21813\\nL 82.1117 8.21813\\nL 82.1117 5.45455\\nL 82.9931 5.45455\\nL 82.9931 11.9549\\nL 82.1117 11.9549\\nL 82.1117 8.95264\\nL 78.7881 8.95264\\nL 78.7881 11.9549\\nL 77.9067 11.9549\\nL 77.9067 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 41.6847 18.1689\\nQ 41.6847 16.608, 42.4559 15.7358\\nQ 43.2272 14.8636, 44.6687 14.8636\\nQ 46.1101 14.8636, 46.8814 15.7358\\nQ 47.6526 16.608, 47.6526 18.1689\\nQ 47.6526 19.7481, 46.8722 20.6478\\nQ 46.0918 21.5384, 44.6687 21.5384\\nQ 43.2364 21.5384, 42.4559 20.6478\\nQ 41.6847 19.7572, 41.6847 18.1689\\nM 44.6687 20.8039\\nQ 45.6602 20.8039, 46.1928 20.1429\\nQ 46.7345 19.4726, 46.7345 18.1689\\nQ 46.7345 16.8927, 46.1928 16.25\\nQ 45.6602 15.5981, 44.6687 15.5981\\nQ 43.6771 15.5981, 43.1354 16.2408\\nQ 42.6029 16.8835, 42.6029 18.1689\\nQ 42.6029 19.4818, 43.1354 20.1429\\nQ 43.6771 20.8039, 44.6687 20.8039\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.15, "data-ID": 1013, "mols2grid-id": 201, "mols2grid-tooltip": "<strong>Name</strong>: Propylthiouracil<br><strong>SMILES</strong>: N1C(=S)NC(=O)C=C1CCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.15</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Clc1c(Cl)c(Cl)c2nccnc2c1Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 26.7205,35.3902 L 35.8487,40.6965' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 35.8487,40.6965 L 44.9769,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.9769,46.0027 L 44.9769,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 50.5661,50.1868 L 50.5661,69.7126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-1' d='M 69.4708,32.0538 L 44.9769,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.9769,73.8967 L 35.8487,79.2029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 35.8487,79.2029 L 26.7205,84.5091' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 44.9769,73.8967 L 69.4708,87.8456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4708,87.8456 L 69.4978,96.8639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.4978,96.8639 L 69.5249,105.882' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 69.4708,87.8456 L 93.6238,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 70.2985,80.9132 L 87.2056,71.149' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 93.6238,73.8967 L 103.851,79.8031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.851,79.8031 L 114.078,85.7095' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-6' d='M 93.6238,46.0027 L 93.6238,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 121.476,85.7097 L 131.704,79.8032' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 131.704,79.8032 L 141.932,73.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 121.749,79.0976 L 128.909,74.963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 128.909,74.963 L 136.068,70.8285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 141.932,73.8967 L 141.932,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 141.932,46.0027 L 131.704,40.0962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 131.704,40.0962 L 121.476,34.1897' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 136.068,49.0709 L 128.909,44.9364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 128.909,44.9364 L 121.749,40.8018' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 114.078,34.1899 L 103.851,40.0963' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 103.851,40.0963 L 93.6238,46.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 93.6238,46.0027 L 69.4708,32.0538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.2056,48.7504 L 70.2985,38.9862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 69.4708,32.0538 L 69.497,23.3262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 69.497,23.3262 L 69.5232,14.5986' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 18.0684 35.0403\\nQ 18.0684 33.0729, 18.985 32.0445\\nQ 19.9128 31.0049, 21.6678 31.0049\\nQ 23.2999 31.0049, 24.1718 32.1562\\nL 23.434 32.7599\\nQ 22.7969 31.9215, 21.6678 31.9215\\nQ 20.4717 31.9215, 19.8346 32.7263\\nQ 19.2086 33.52, 19.2086 35.0403\\nQ 19.2086 36.6053, 19.8569 37.4101\\nQ 20.5164 38.215, 21.7908 38.215\\nQ 22.6627 38.215, 23.68 37.6896\\nL 23.993 38.528\\nQ 23.5794 38.7963, 22.9534 38.9528\\nQ 22.3274 39.1093, 21.6343 39.1093\\nQ 19.9128 39.1093, 18.985 38.0585\\nQ 18.0684 37.0077, 18.0684 35.0403\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 25.1332 30.5242\\nL 26.1616 30.5242\\nL 26.1616 39.0087\\nL 25.1332 39.0087\\nL 25.1332 30.5242\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 18.0684 85.4069\\nQ 18.0684 83.4394, 18.985 82.411\\nQ 19.9128 81.3714, 21.6678 81.3714\\nQ 23.2999 81.3714, 24.1718 82.5228\\nL 23.434 83.1264\\nQ 22.7969 82.2881, 21.6678 82.2881\\nQ 20.4717 82.2881, 19.8346 83.0929\\nQ 19.2086 83.8866, 19.2086 85.4069\\nQ 19.2086 86.9718, 19.8569 87.7767\\nQ 20.5164 88.5815, 21.7908 88.5815\\nQ 22.6627 88.5815, 23.68 88.0562\\nL 23.993 88.8945\\nQ 23.5794 89.1628, 22.9534 89.3193\\nQ 22.3274 89.4758, 21.6343 89.4758\\nQ 19.9128 89.4758, 18.985 88.425\\nQ 18.0684 87.3743, 18.0684 85.4069\\n' fill='#00CC00'/>\\n<path class='atom-3' d='M 25.1332 80.8907\\nL 26.1616 80.8907\\nL 26.1616 89.3752\\nL 25.1332 89.3752\\nL 25.1332 80.8907\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 66.4861 110.476\\nQ 66.4861 108.509, 67.4028 107.481\\nQ 68.3306 106.441, 70.0856 106.441\\nQ 71.7177 106.441, 72.5896 107.592\\nL 71.8518 108.196\\nQ 71.2146 107.358, 70.0856 107.358\\nQ 68.8895 107.358, 68.2523 108.163\\nQ 67.6263 108.956, 67.6263 110.476\\nQ 67.6263 112.041, 68.2747 112.846\\nQ 68.9342 113.651, 70.2086 113.651\\nQ 71.0805 113.651, 72.0977 113.126\\nL 72.4107 113.964\\nQ 71.9971 114.232, 71.3711 114.389\\nQ 70.7451 114.545, 70.0521 114.545\\nQ 68.3306 114.545, 67.4028 113.495\\nQ 66.4861 112.444, 66.4861 110.476\\n' fill='#00CC00'/>\\n<path class='atom-5' d='M 73.5509 105.96\\nL 74.5794 105.96\\nL 74.5794 114.445\\nL 73.5509 114.445\\nL 73.5509 105.96\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 116.027 83.8884\\nL 118.621 88.0804\\nQ 118.878 88.494, 119.291 89.2429\\nQ 119.705 89.9919, 119.727 90.0366\\nL 119.727 83.8884\\nL 120.778 83.8884\\nL 120.778 91.8028\\nL 119.694 91.8028\\nL 116.91 87.2196\\nQ 116.586 86.6831, 116.24 86.0682\\nQ 115.904 85.4534, 115.804 85.2634\\nL 115.804 91.8028\\nL 114.775 91.8028\\nL 114.775 83.8884\\nL 116.027 83.8884\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 116.027 28.0966\\nL 118.621 32.2885\\nQ 118.878 32.7021, 119.291 33.4511\\nQ 119.705 34.2, 119.727 34.2448\\nL 119.727 28.0966\\nL 120.778 28.0966\\nL 120.778 36.011\\nL 119.694 36.011\\nL 116.91 31.4278\\nQ 116.586 30.8912, 116.24 30.2764\\nQ 115.904 29.6616, 115.804 29.4715\\nL 115.804 36.011\\nL 114.775 36.011\\nL 114.775 28.0966\\nL 116.027 28.0966\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 66.4861 9.97066\\nQ 66.4861 8.00324, 67.4028 6.97482\\nQ 68.3306 5.93522, 70.0856 5.93522\\nQ 71.7177 5.93522, 72.5896 7.08661\\nL 71.8518 7.69024\\nQ 71.2146 6.85186, 70.0856 6.85186\\nQ 68.8895 6.85186, 68.2523 7.65671\\nQ 67.6263 8.45038, 67.6263 9.97066\\nQ 67.6263 11.5356, 68.2747 12.3405\\nQ 68.9342 13.1453, 70.2086 13.1453\\nQ 71.0805 13.1453, 72.0977 12.62\\nL 72.4107 13.4583\\nQ 71.9971 13.7266, 71.3711 13.8831\\nQ 70.7451 14.0396, 70.0521 14.0396\\nQ 68.3306 14.0396, 67.4028 12.9888\\nQ 66.4861 11.9381, 66.4861 9.97066\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 73.5509 5.45455\\nL 74.5794 5.45455\\nL 74.5794 13.939\\nL 73.5509 13.939\\nL 73.5509 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -5.43, "data-ID": 1018, "mols2grid-id": 202, "mols2grid-tooltip": "<strong>Name</strong>: Chlorquinox<br><strong>SMILES</strong>: Clc1c(Cl)c(Cl)c2nccnc2c1Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.43</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)COc(c(cc(c1)Cl)Cl)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 122.927,107.021 L 122.938,99.3093' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 122.938,99.3093 L 122.949,91.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.083,107.014 L 118.094,99.3025' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.094,99.3025 L 118.105,91.5906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.527,91.5941 L 127.109,87.8091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.109,87.8091 L 133.691,84.024' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 120.527,91.5941 L 99.5645,79.4338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.5645,79.4338 L 99.5792,69.4074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 99.5792,69.4074 L 99.5939,59.3811' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 95.8455,53.0224 L 87.2409,48.0312' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.2409,48.0312 L 78.6364,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.6364,43.04 L 78.6364,18.8194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.7923,39.4069 L 73.7923,22.4525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-5 atom-12' d='M 78.6364,43.04 L 57.6614,55.1502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.6364,18.8194 L 57.6614,6.70917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 78.6364,18.8194 L 85.4625,14.8786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 85.4625,14.8786 L 92.2887,10.9378' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.6614,6.70917 L 36.6864,18.8194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 56.9373,12.7208 L 42.2548,21.198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 36.6864,18.8194 L 36.6864,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 36.6864,18.8194 L 28.7607,14.2438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 28.7607,14.2438 L 20.8349,9.66818' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 57.6614,55.1502 L 36.6864,43.04' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-9' d='M 56.9373,49.1386 L 42.2548,40.6614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 117.35 110.99\\nQ 117.35 109.343, 118.164 108.423\\nQ 118.978 107.502, 120.499 107.502\\nQ 122.02 107.502, 122.834 108.423\\nQ 123.648 109.343, 123.648 110.99\\nQ 123.648 112.656, 122.824 113.606\\nQ 122.001 114.545, 120.499 114.545\\nQ 118.988 114.545, 118.164 113.606\\nQ 117.35 112.666, 117.35 110.99\\nM 120.499 113.77\\nQ 121.545 113.77, 122.107 113.073\\nQ 122.679 112.366, 122.679 110.99\\nQ 122.679 109.643, 122.107 108.965\\nQ 121.545 108.277, 120.499 108.277\\nQ 119.453 108.277, 118.881 108.955\\nQ 118.319 109.634, 118.319 110.99\\nQ 118.319 112.375, 118.881 113.073\\nQ 119.453 113.77, 120.499 113.77\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 134.176 81.9543\\nQ 134.176 80.3073, 134.989 79.3869\\nQ 135.803 78.4665, 137.324 78.4665\\nQ 138.845 78.4665, 139.659 79.3869\\nQ 140.473 80.3073, 140.473 81.9543\\nQ 140.473 83.6207, 139.65 84.5701\\nQ 138.826 85.5099, 137.324 85.5099\\nQ 135.813 85.5099, 134.989 84.5701\\nQ 134.176 83.6304, 134.176 81.9543\\nM 137.324 84.7348\\nQ 138.371 84.7348, 138.933 84.0373\\nQ 139.504 83.33, 139.504 81.9543\\nQ 139.504 80.6076, 138.933 79.9295\\nQ 138.371 79.2416, 137.324 79.2416\\nQ 136.278 79.2416, 135.706 79.9198\\nQ 135.145 80.598, 135.145 81.9543\\nQ 135.145 83.3397, 135.706 84.0373\\nQ 136.278 84.7348, 137.324 84.7348\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 141.297 78.544\\nL 142.227 78.544\\nL 142.227 81.4602\\nL 145.734 81.4602\\nL 145.734 78.544\\nL 146.664 78.544\\nL 146.664 85.4033\\nL 145.734 85.4033\\nL 145.734 82.2353\\nL 142.227 82.2353\\nL 142.227 85.4033\\nL 141.297 85.4033\\nL 141.297 78.544\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 96.4514 55.2197\\nQ 96.4514 53.5727, 97.2652 52.6523\\nQ 98.079 51.7319, 99.6001 51.7319\\nQ 101.121 51.7319, 101.935 52.6523\\nQ 102.749 53.5727, 102.749 55.2197\\nQ 102.749 56.886, 101.925 57.8355\\nQ 101.102 58.7752, 99.6001 58.7752\\nQ 98.0887 58.7752, 97.2652 57.8355\\nQ 96.4514 56.8957, 96.4514 55.2197\\nM 99.6001 58.0002\\nQ 100.646 58.0002, 101.208 57.3026\\nQ 101.78 56.5954, 101.78 55.2197\\nQ 101.78 53.873, 101.208 53.1948\\nQ 100.646 52.507, 99.6001 52.507\\nQ 98.5537 52.507, 97.9821 53.1851\\nQ 97.4202 53.8633, 97.4202 55.2197\\nQ 97.4202 56.6051, 97.9821 57.3026\\nQ 98.5537 58.0002, 99.6001 58.0002\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 13.3362 9.36858\\nQ 13.3362 7.66346, 14.1306 6.77214\\nQ 14.9348 5.87114, 16.4558 5.87114\\nQ 17.8703 5.87114, 18.626 6.86902\\nL 17.9865 7.39219\\nQ 17.4343 6.66557, 16.4558 6.66557\\nQ 15.4192 6.66557, 14.8669 7.36312\\nQ 14.3244 8.05099, 14.3244 9.36858\\nQ 14.3244 10.7249, 14.8863 11.4225\\nQ 15.4579 12.12, 16.5624 12.12\\nQ 17.3181 12.12, 18.1997 11.6647\\nL 18.471 12.3913\\nQ 18.1125 12.6238, 17.57 12.7595\\nQ 17.0274 12.8951, 16.4267 12.8951\\nQ 14.9348 12.8951, 14.1306 11.9844\\nQ 13.3362 11.0737, 13.3362 9.36858\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 19.4592 5.45455\\nL 20.3505 5.45455\\nL 20.3505 12.8079\\nL 19.4592 12.8079\\nL 19.4592 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 92.7731 9.36858\\nQ 92.7731 7.66346, 93.5675 6.77214\\nQ 94.3717 5.87114, 95.8927 5.87114\\nQ 97.3072 5.87114, 98.0629 6.86902\\nL 97.4234 7.39219\\nQ 96.8712 6.66557, 95.8927 6.66557\\nQ 94.8561 6.66557, 94.3038 7.36312\\nQ 93.7613 8.05099, 93.7613 9.36858\\nQ 93.7613 10.7249, 94.3232 11.4225\\nQ 94.8948 12.12, 95.9993 12.12\\nQ 96.755 12.12, 97.6366 11.6647\\nL 97.9079 12.3913\\nQ 97.5494 12.6238, 97.0069 12.7595\\nQ 96.4643 12.8951, 95.8636 12.8951\\nQ 94.3717 12.8951, 93.5675 11.9844\\nQ 92.7731 11.0737, 92.7731 9.36858\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 98.8961 5.45455\\nL 99.7874 5.45455\\nL 99.7874 12.8079\\nL 98.8961 12.8079\\nL 98.8961 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.51, "data-ID": 1023, "mols2grid-id": 203, "mols2grid-tooltip": "<strong>Name</strong>: 2,4-D<br><strong>SMILES</strong>: O=C(O)COc(c(cc(c1)Cl)Cl)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.51</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OC)c(c(O)ccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 123.692,57.5455 L 115.093,62.4909' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 115.093,62.4909 L 106.494,67.4362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 126.848,63.0322 L 118.248,67.9775' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 118.248,67.9775 L 109.649,72.9229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.071,70.1795 L 108.052,83.3494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.052,83.3494 L 108.033,96.5193' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 108.071,70.1795 L 80.6804,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.772,104.596 L 121.348,109.571' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.348,109.571 L 129.924,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.6804,54.291 L 80.6804,22.6448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.3511,49.5441 L 74.3511,27.3917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 80.6804,54.291 L 53.2748,70.1141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 80.6804,22.6448 L 89.2702,17.6858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.2702,17.6858 L 97.86,12.7268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 80.6804,22.6448 L 53.2748,6.82166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 53.2748,6.82166 L 25.8691,22.6448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 52.3286,14.6764 L 33.1447,25.7526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 25.8691,22.6448 L 25.8691,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 53.2748,70.1141 L 25.8691,54.291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 52.3286,62.2594 L 33.1447,51.1832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 125.903 57.5843\\nQ 125.903 55.4324, 126.966 54.2298\\nQ 128.029 53.0273, 130.017 53.0273\\nQ 132.004 53.0273, 133.068 54.2298\\nQ 134.131 55.4324, 134.131 57.5843\\nQ 134.131 59.7616, 133.055 61.0021\\nQ 131.979 62.23, 130.017 62.23\\nQ 128.042 62.23, 126.966 61.0021\\nQ 125.903 59.7743, 125.903 57.5843\\nM 130.017 61.2173\\nQ 131.384 61.2173, 132.118 60.3059\\nQ 132.865 59.3818, 132.865 57.5843\\nQ 132.865 55.8248, 132.118 54.9387\\nQ 131.384 54.04, 130.017 54.04\\nQ 128.65 54.04, 127.903 54.9261\\nQ 127.169 55.8121, 127.169 57.5843\\nQ 127.169 59.3945, 127.903 60.3059\\nQ 128.65 61.2173, 130.017 61.2173\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 103.911 101.868\\nQ 103.911 99.716, 104.974 98.5135\\nQ 106.037 97.3109, 108.025 97.3109\\nQ 110.012 97.3109, 111.076 98.5135\\nQ 112.139 99.716, 112.139 101.868\\nQ 112.139 104.045, 111.063 105.286\\nQ 109.987 106.514, 108.025 106.514\\nQ 106.05 106.514, 104.974 105.286\\nQ 103.911 104.058, 103.911 101.868\\nM 108.025 105.501\\nQ 109.392 105.501, 110.126 104.59\\nQ 110.873 103.665, 110.873 101.868\\nQ 110.873 100.108, 110.126 99.2223\\nQ 109.392 98.3236, 108.025 98.3236\\nQ 106.658 98.3236, 105.911 99.2097\\nQ 105.177 100.096, 105.177 101.868\\nQ 105.177 103.678, 105.911 104.59\\nQ 106.658 105.501, 108.025 105.501\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 98.493 10.0116\\nQ 98.493 7.85966, 99.5563 6.6571\\nQ 100.62 5.45455, 102.607 5.45455\\nQ 104.594 5.45455, 105.658 6.6571\\nQ 106.721 7.85966, 106.721 10.0116\\nQ 106.721 12.1889, 105.645 13.4294\\nQ 104.569 14.6573, 102.607 14.6573\\nQ 100.632 14.6573, 99.5563 13.4294\\nQ 98.493 12.2015, 98.493 10.0116\\nM 102.607 13.6446\\nQ 103.974 13.6446, 104.708 12.7332\\nQ 105.455 11.8091, 105.455 10.0116\\nQ 105.455 8.25207, 104.708 7.36598\\nQ 103.974 6.46723, 102.607 6.46723\\nQ 101.24 6.46723, 100.493 7.35332\\nQ 99.7589 8.23941, 99.7589 10.0116\\nQ 99.7589 11.8218, 100.493 12.7332\\nQ 101.24 13.6446, 102.607 13.6446\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 107.797 5.55581\\nL 109.012 5.55581\\nL 109.012 9.36602\\nL 113.595 9.36602\\nL 113.595 5.55581\\nL 114.81 5.55581\\nL 114.81 14.518\\nL 113.595 14.518\\nL 113.595 10.3787\\nL 109.012 10.3787\\nL 109.012 14.518\\nL 107.797 14.518\\nL 107.797 5.55581\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.34, "data-ID": 1028, "mols2grid-id": 204, "mols2grid-tooltip": "<strong>Name</strong>: Methyl_Salicylate<br><strong>SMILES</strong>: O=C(OC)c(c(O)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.34</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)c(c(NC)ccc1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 104.958,105.512 L 104.971,96.254' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.971,96.254 L 104.984,86.9958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.1426,105.504 L 99.1557,96.2458' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.1557,96.2458 L 99.1688,86.9875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.077,86.9916 L 109.978,82.4477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.978,82.4477 L 117.879,77.9038' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 102.077,86.9916 L 76.9091,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 76.9091,72.3928 L 76.9091,43.3153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.0936,68.0312 L 71.0936,47.677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-3 atom-10' d='M 76.9091,72.3928 L 51.728,86.9316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.9091,43.3153 L 87.5667,37.1327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5667,37.1327 L 98.2244,30.9501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 76.9091,43.3153 L 51.728,28.7766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.068,24.0176 L 102.055,14.7361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.055,14.7361 L 102.042,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.728,28.7766 L 26.5469,43.3153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 50.8586,35.9938 L 33.2319,46.1709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 26.5469,43.3153 L 26.5469,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 51.728,86.9316 L 26.5469,72.3928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 50.8586,79.7144 L 33.2319,69.5373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 98.2636 110.277\\nQ 98.2636 108.3, 99.2406 107.195\\nQ 100.218 106.09, 102.044 106.09\\nQ 103.87 106.09, 104.847 107.195\\nQ 105.824 108.3, 105.824 110.277\\nQ 105.824 112.277, 104.835 113.417\\nQ 103.846 114.545, 102.044 114.545\\nQ 100.229 114.545, 99.2406 113.417\\nQ 98.2636 112.289, 98.2636 110.277\\nM 102.044 113.615\\nQ 103.3 113.615, 103.974 112.778\\nQ 104.661 111.928, 104.661 110.277\\nQ 104.661 108.66, 103.974 107.846\\nQ 103.3 107.02, 102.044 107.02\\nQ 100.787 107.02, 100.101 107.834\\nQ 99.4267 108.649, 99.4267 110.277\\nQ 99.4267 111.94, 100.101 112.778\\nQ 100.787 113.615, 102.044 113.615\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 118.461 75.4188\\nQ 118.461 73.4415, 119.438 72.3366\\nQ 120.415 71.2317, 122.241 71.2317\\nQ 124.067 71.2317, 125.044 72.3366\\nQ 126.021 73.4415, 126.021 75.4188\\nQ 126.021 77.4193, 125.032 78.5592\\nQ 124.044 79.6874, 122.241 79.6874\\nQ 120.426 79.6874, 119.438 78.5592\\nQ 118.461 77.431, 118.461 75.4188\\nM 122.241 78.7569\\nQ 123.497 78.7569, 124.172 77.9195\\nQ 124.858 77.0704, 124.858 75.4188\\nQ 124.858 73.8021, 124.172 72.9879\\nQ 123.497 72.1621, 122.241 72.1621\\nQ 120.985 72.1621, 120.298 72.9763\\nQ 119.624 73.7905, 119.624 75.4188\\nQ 119.624 77.082, 120.298 77.9195\\nQ 120.985 78.7569, 122.241 78.7569\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 127.01 71.3247\\nL 128.126 71.3247\\nL 128.126 74.8256\\nL 132.337 74.8256\\nL 132.337 71.3247\\nL 133.453 71.3247\\nL 133.453 79.5594\\nL 132.337 79.5594\\nL 132.337 75.7561\\nL 128.126 75.7561\\nL 128.126 79.5594\\nL 127.01 79.5594\\nL 127.01 71.3247\\n' fill='#FF0000'/>\\n<path class='atom-5' d='M 100.254 24.5992\\nL 102.953 28.9608\\nQ 103.22 29.3911, 103.651 30.1704\\nQ 104.081 30.9497, 104.104 30.9962\\nL 104.104 24.5992\\nL 105.198 24.5992\\nL 105.198 32.8339\\nL 104.069 32.8339\\nL 101.173 28.0652\\nQ 100.836 27.5069, 100.475 26.8672\\nQ 100.126 26.2275, 100.022 26.0298\\nL 100.022 32.8339\\nL 98.9517 32.8339\\nL 98.9517 24.5992\\nL 100.254 24.5992\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 106.186 24.5992\\nL 107.303 24.5992\\nL 107.303 28.1001\\nL 111.513 28.1001\\nL 111.513 24.5992\\nL 112.63 24.5992\\nL 112.63 32.8339\\nL 111.513 32.8339\\nL 111.513 29.0306\\nL 107.303 29.0306\\nL 107.303 32.8339\\nL 106.186 32.8339\\nL 106.186 24.5992\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.88, "data-ID": 1033, "mols2grid-id": 205, "mols2grid-tooltip": "<strong>Name</strong>: N-Methylanthranilic_Acid<br><strong>SMILES</strong>: O=C(O)c(c(NC)ccc1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.88</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1OCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 101.91,43.5131 L 101.91,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 96.8354,39.7072 L 96.8354,21.9466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 79.9374,56.1992 L 101.91,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 101.91,18.1407 L 79.9374,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.9374,5.45455 L 57.965,18.1407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 79.1788,11.7521 L 63.7981,20.6324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.965,18.1407 L 57.965,43.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 57.965,43.5131 L 79.9374,56.1992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.7981,41.0214 L 79.1788,49.9017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.9374,56.1992 L 79.9592,66.7582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 79.9592,66.7582 L 79.981,77.3171' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 83.9229,83.8485 L 92.9578,89.0481' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 92.9578,89.0481 L 101.993,94.2476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 101.993,94.2476 L 102.035,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 76.6914 81.6054\\nQ 76.6914 79.8801, 77.544 78.9159\\nQ 78.3965 77.9518, 79.9899 77.9518\\nQ 81.5832 77.9518, 82.4357 78.9159\\nQ 83.2883 79.8801, 83.2883 81.6054\\nQ 83.2883 83.351, 82.4256 84.3456\\nQ 81.5629 85.3301, 79.9899 85.3301\\nQ 78.4066 85.3301, 77.544 84.3456\\nQ 76.6914 83.3612, 76.6914 81.6054\\nM 79.9899 84.5181\\nQ 81.0859 84.5181, 81.6746 83.7874\\nQ 82.2734 83.0465, 82.2734 81.6054\\nQ 82.2734 80.1947, 81.6746 79.4843\\nQ 81.0859 78.7637, 79.9899 78.7637\\nQ 78.8938 78.7637, 78.295 79.4741\\nQ 77.7063 80.1845, 77.7063 81.6054\\nQ 77.7063 83.0567, 78.295 83.7874\\nQ 78.8938 84.5181, 79.9899 84.5181\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.33, "data-ID": 1038, "mols2grid-id": 206, "mols2grid-tooltip": "<strong>Name</strong>: Phenetole<br><strong>SMILES</strong>: c1ccccc1OCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.33</span>", "style-Solubility": "color: black"}, {"data-SMILES": "NCCc1ccc(O)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 132.575,104.103 L 124.319,99.3139' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.319,99.3139 L 116.063,94.5252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.063,94.5252 L 116.106,65.2658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 116.106,65.2658 L 90.7949,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.7949,50.5835 L 90.7949,21.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.9462,46.1969 L 84.9462,25.7263' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-3' d='M 65.4698,65.2054 L 90.7949,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.7949,21.3398 L 65.4698,6.71788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.4698,6.71788 L 40.1447,21.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 64.5955,13.9763 L 46.8679,24.2116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 40.1447,21.3398 L 32.207,16.7572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 32.207,16.7572 L 24.2693,12.1747' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 40.1447,21.3398 L 40.1447,50.5835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 40.1447,50.5835 L 65.4698,65.2054' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 46.8679,47.7117 L 64.5955,57.947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 134.469 102.123\\nL 137.183 106.509\\nQ 137.452 106.942, 137.885 107.726\\nQ 138.318 108.51, 138.341 108.556\\nL 138.341 102.123\\nL 139.441 102.123\\nL 139.441 110.405\\nL 138.306 110.405\\nL 135.394 105.609\\nQ 135.054 105.047, 134.692 104.404\\nQ 134.341 103.76, 134.236 103.561\\nL 134.236 110.405\\nL 133.159 110.405\\nL 133.159 102.123\\nL 134.469 102.123\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 140.435 102.123\\nL 141.558 102.123\\nL 141.558 105.644\\nL 145.793 105.644\\nL 145.793 102.123\\nL 146.916 102.123\\nL 146.916 110.405\\nL 145.793 110.405\\nL 145.793 106.579\\nL 141.558 106.579\\nL 141.558 110.405\\nL 140.435 110.405\\nL 140.435 102.123\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 147.317 110.114\\nQ 147.518 109.597, 147.996 109.311\\nQ 148.475 109.018, 149.139 109.018\\nQ 149.965 109.018, 150.428 109.465\\nQ 150.892 109.913, 150.892 110.708\\nQ 150.892 111.519, 150.289 112.276\\nQ 149.695 113.032, 148.46 113.928\\nL 150.984 113.928\\nL 150.984 114.545\\nL 147.302 114.545\\nL 147.302 114.028\\nQ 148.321 113.302, 148.923 112.762\\nQ 149.533 112.222, 149.826 111.735\\nQ 150.12 111.249, 150.12 110.747\\nQ 150.12 110.222, 149.857 109.929\\nQ 149.595 109.635, 149.139 109.635\\nQ 148.699 109.635, 148.406 109.813\\nQ 148.112 109.99, 147.904 110.384\\nL 147.317 110.114\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 9.01573 5.54813\\nL 10.1387 5.54813\\nL 10.1387 9.06907\\nL 14.3732 9.06907\\nL 14.3732 5.54813\\nL 15.4961 5.54813\\nL 15.4961 13.83\\nL 14.3732 13.83\\nL 14.3732 10.0049\\nL 10.1387 10.0049\\nL 10.1387 13.83\\nL 9.01573 13.83\\nL 9.01573 5.54813\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 16.081 9.66565\\nQ 16.081 7.67707, 17.0636 6.56581\\nQ 18.0462 5.45455, 19.8827 5.45455\\nQ 21.7192 5.45455, 22.7018 6.56581\\nQ 23.6844 7.67707, 23.6844 9.66565\\nQ 23.6844 11.6776, 22.6901 12.824\\nQ 21.6958 13.9586, 19.8827 13.9586\\nQ 18.0579 13.9586, 17.0636 12.824\\nQ 16.081 11.6893, 16.081 9.66565\\nM 19.8827 13.0228\\nQ 21.146 13.0228, 21.8245 12.1806\\nQ 22.5147 11.3267, 22.5147 9.66565\\nQ 22.5147 8.03969, 21.8245 7.22087\\nQ 21.146 6.39035, 19.8827 6.39035\\nQ 18.6194 6.39035, 17.9292 7.20917\\nQ 17.2508 8.028, 17.2508 9.66565\\nQ 17.2508 11.3384, 17.9292 12.1806\\nQ 18.6194 13.0228, 19.8827 13.0228\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.12, "data-ID": 1043, "mols2grid-id": 207, "mols2grid-tooltip": "<strong>Name</strong>: Tyramine<br><strong>SMILES</strong>: NCCc1ccc(O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.12</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CC(C)CC(=O)CC(=O)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 7.27273,77.4486 L 27.5015,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 27.5015,65.7773 L 27.5015,42.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 27.5015,65.7773 L 52.802,80.3737' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 52.802,80.3737 L 78.1025,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.0218,65.7773 L 81.0218,56.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.0218,56.5465 L 81.0218,47.3157' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.1832,65.7773 L 75.1832,56.5465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 75.1832,56.5465 L 75.1832,47.3157' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 78.1025,65.7773 L 103.403,80.3737' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 103.403,80.3737 L 128.703,65.7773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.245,68.3059 L 135.169,72.8783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 135.169,72.8783 L 143.094,77.4507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 130.162,63.2487 L 138.087,67.8211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 138.087,67.8211 L 146.012,72.3935' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 128.703,65.7773 L 128.703,42.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 74.3074 42.4463\\nQ 74.3074 40.4612, 75.2883 39.3519\\nQ 76.2691 38.2425, 78.1025 38.2425\\nQ 79.9358 38.2425, 80.9167 39.3519\\nQ 81.8975 40.4612, 81.8975 42.4463\\nQ 81.8975 44.4548, 80.905 45.5991\\nQ 79.9124 46.7318, 78.1025 46.7318\\nQ 76.2808 46.7318, 75.2883 45.5991\\nQ 74.3074 44.4665, 74.3074 42.4463\\nM 78.1025 45.7977\\nQ 79.3636 45.7977, 80.0409 44.9569\\nQ 80.7298 44.1045, 80.7298 42.4463\\nQ 80.7298 40.8232, 80.0409 40.0058\\nQ 79.3636 39.1767, 78.1025 39.1767\\nQ 76.8413 39.1767, 76.1524 39.9941\\nQ 75.4751 40.8115, 75.4751 42.4463\\nQ 75.4751 44.1161, 76.1524 44.9569\\nQ 76.8413 45.7977, 78.1025 45.7977\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 145.137 77.4719\\nQ 145.137 75.4868, 146.118 74.3775\\nQ 147.099 73.2682, 148.932 73.2682\\nQ 150.766 73.2682, 151.746 74.3775\\nQ 152.727 75.4868, 152.727 77.4719\\nQ 152.727 79.4804, 151.735 80.6248\\nQ 150.742 81.7575, 148.932 81.7575\\nQ 147.111 81.7575, 146.118 80.6248\\nQ 145.137 79.4921, 145.137 77.4719\\nM 148.932 80.8233\\nQ 150.193 80.8233, 150.871 79.9825\\nQ 151.56 79.1301, 151.56 77.4719\\nQ 151.56 75.8488, 150.871 75.0314\\nQ 150.193 74.2023, 148.932 74.2023\\nQ 147.671 74.2023, 146.982 75.0197\\nQ 146.305 75.8371, 146.305 77.4719\\nQ 146.305 79.1418, 146.982 79.9825\\nQ 147.671 80.8233, 148.932 80.8233\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.6, "data-ID": 1048, "mols2grid-id": 208, "mols2grid-tooltip": "<strong>Name</strong>: 6-Methyl-2,4-heptadione<br><strong>SMILES</strong>: CC(C)CC(=O)CC(=O)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C1C(C)C(C)CCC1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.4838,93.75 L 99.4838,56.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-0' d='M 67.0087,112.5 L 99.4838,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 99.4838,56.25 L 125.466,41.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 99.4838,56.25 L 67.0087,37.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 67.0087,37.5 L 67.0087,7.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 67.0087,37.5 L 34.5337,56.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 34.5337,56.25 L 34.5337,93.75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 34.5337,93.75 L 67.0087,112.5' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-Solubility": -4.27, "data-ID": 1053, "mols2grid-id": 209, "mols2grid-tooltip": "<strong>Name</strong>: cis-1,2-Dimethylcyclohexane<br><strong>SMILES</strong>: C1C(C)C(C)CCC1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.27</span>", "style-Solubility": "color: red"}, {"data-SMILES": "OC(=O)CN1C(=O)Sc2cccc(Cl)c12", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.978,76.8458 L 128.582,82.9085' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 128.582,82.9085 L 123.186,88.9712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 120.51,89.859 L 123.298,98.264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 123.298,98.264 L 126.085,106.669' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 125.863,88.0835 L 128.651,96.4885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.651,96.4885 L 131.438,104.894' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 123.186,88.9712 L 95.5572,83.2563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.5572,83.2563 L 91.9024,72.2378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.9024,72.2378 L 88.2476,61.2193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.0562,51.8231 L 96.5984,42.6911' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 96.5984,42.6911 L 103.141,33.5591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-4' d='M 59.9555,47.9536 L 71.4574,51.6401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-4' d='M 71.4574,51.6401 L 82.9593,55.3265' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.161,36.3789 L 112.326,36.3125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.326,36.3125 L 121.49,36.246' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.12,30.7393 L 112.285,30.6729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 112.285,30.6729 L 121.449,30.6065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.141,33.5591 L 96.5416,24.6223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 96.5416,24.6223 L 89.9424,15.6854' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 83.4274,12.326 L 71.6914,16.0875' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 71.6914,16.0875 L 59.9555,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 59.9555,19.849 L 35.6201,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 53.434,22.5439 L 36.3992,12.4678' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-8' d='M 59.9555,47.9536 L 59.9555,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 35.6201,5.45455 L 10.9426,19.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 10.9426,19.849 L 10.9426,47.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 16.5823,24.0647 L 16.5823,43.7379' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 10.9426,47.9536 L 35.6201,62.348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 35.6201,62.348 L 35.6482,71.4477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 35.6482,71.4477 L 35.6762,80.5474' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 35.6201,62.348 L 59.9555,47.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 36.3992,55.3347 L 53.434,45.2586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 134.518 72.1423\\nQ 134.518 70.2248, 135.466 69.1533\\nQ 136.413 68.0817, 138.184 68.0817\\nQ 139.955 68.0817, 140.902 69.1533\\nQ 141.85 70.2248, 141.85 72.1423\\nQ 141.85 74.0824, 140.891 75.1878\\nQ 139.932 76.2819, 138.184 76.2819\\nQ 136.424 76.2819, 135.466 75.1878\\nQ 134.518 74.0937, 134.518 72.1423\\nM 138.184 75.3795\\nQ 139.402 75.3795, 140.056 74.5674\\nQ 140.722 73.744, 140.722 72.1423\\nQ 140.722 70.5745, 140.056 69.7849\\nQ 139.402 68.9841, 138.184 68.9841\\nQ 136.966 68.9841, 136.3 69.7736\\nQ 135.646 70.5632, 135.646 72.1423\\nQ 135.646 73.7553, 136.3 74.5674\\nQ 136.966 75.3795, 138.184 75.3795\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 142.809 68.1719\\nL 143.891 68.1719\\nL 143.891 71.5671\\nL 147.975 71.5671\\nL 147.975 68.1719\\nL 149.057 68.1719\\nL 149.057 76.1578\\nL 147.975 76.1578\\nL 147.975 72.4694\\nL 143.891 72.4694\\nL 143.891 76.1578\\nL 142.809 76.1578\\nL 142.809 68.1719\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 126.623 110.406\\nQ 126.623 108.488, 127.57 107.417\\nQ 128.518 106.345, 130.288 106.345\\nQ 132.059 106.345, 133.007 107.417\\nQ 133.954 108.488, 133.954 110.406\\nQ 133.954 112.346, 132.995 113.451\\nQ 132.037 114.545, 130.288 114.545\\nQ 128.529 114.545, 127.57 113.451\\nQ 126.623 112.357, 126.623 110.406\\nM 130.288 113.643\\nQ 131.507 113.643, 132.161 112.831\\nQ 132.826 112.008, 132.826 110.406\\nQ 132.826 108.838, 132.161 108.049\\nQ 131.507 107.248, 130.288 107.248\\nQ 129.07 107.248, 128.405 108.037\\nQ 127.751 108.827, 127.751 110.406\\nQ 127.751 112.019, 128.405 112.831\\nQ 129.07 113.643, 130.288 113.643\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 84.9244 52.5293\\nL 87.5412 56.759\\nQ 87.8007 57.1764, 88.218 57.9321\\nQ 88.6353 58.6878, 88.6579 58.7329\\nL 88.6579 52.5293\\nL 89.7182 52.5293\\nL 89.7182 60.5151\\nL 88.6241 60.5151\\nL 85.8155 55.8905\\nQ 85.4884 55.3491, 85.1387 54.7287\\nQ 84.8003 54.1084, 84.6988 53.9166\\nL 84.6988 60.5151\\nL 83.6611 60.5151\\nL 83.6611 52.5293\\nL 84.9244 52.5293\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 122.034 33.4181\\nQ 122.034 31.5006, 122.981 30.4291\\nQ 123.929 29.3575, 125.7 29.3575\\nQ 127.47 29.3575, 128.418 30.4291\\nQ 129.365 31.5006, 129.365 33.4181\\nQ 129.365 35.3582, 128.407 36.4636\\nQ 127.448 37.5577, 125.7 37.5577\\nQ 123.94 37.5577, 122.981 36.4636\\nQ 122.034 35.3695, 122.034 33.4181\\nM 125.7 36.6553\\nQ 126.918 36.6553, 127.572 35.8432\\nQ 128.237 35.0198, 128.237 33.4181\\nQ 128.237 31.8503, 127.572 31.0607\\nQ 126.918 30.2599, 125.7 30.2599\\nQ 124.481 30.2599, 123.816 31.0495\\nQ 123.162 31.839, 123.162 33.4181\\nQ 123.162 35.0311, 123.816 35.8432\\nQ 124.481 36.6553, 125.7 36.6553\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 84.4338 14.0213\\nQ 84.524 14.0551, 84.8962 14.213\\nQ 85.2684 14.3709, 85.6745 14.4725\\nQ 86.0918 14.5627, 86.4979 14.5627\\nQ 87.2536 14.5627, 87.6935 14.2017\\nQ 88.1334 13.8295, 88.1334 13.1866\\nQ 88.1334 12.7467, 87.9078 12.476\\nQ 87.6935 12.2053, 87.3551 12.0587\\nQ 87.0167 11.912, 86.4528 11.7428\\nQ 85.7422 11.5285, 85.3136 11.3255\\nQ 84.8962 11.1225, 84.5917 10.6938\\nQ 84.2984 10.2652, 84.2984 9.54334\\nQ 84.2984 8.53947, 84.9752 7.9191\\nQ 85.6632 7.29873, 87.0167 7.29873\\nQ 87.9417 7.29873, 88.9906 7.73863\\nL 88.7312 8.60715\\nQ 87.7725 8.21237, 87.0506 8.21237\\nQ 86.2723 8.21237, 85.8437 8.53947\\nQ 85.4151 8.85529, 85.4263 9.40799\\nQ 85.4263 9.8366, 85.6407 10.096\\nQ 85.8662 10.3555, 86.1821 10.5021\\nQ 86.5092 10.6487, 87.0506 10.8179\\nQ 87.7725 11.0435, 88.2011 11.2691\\nQ 88.6297 11.4947, 88.9343 11.9571\\nQ 89.2501 12.4083, 89.2501 13.1866\\nQ 89.2501 14.292, 88.5056 14.8898\\nQ 87.7725 15.4763, 86.543 15.4763\\nQ 85.8324 15.4763, 85.291 15.3184\\nQ 84.7609 15.1718, 84.1292 14.9123\\nL 84.4338 14.0213\\n' fill='#CCCC00'/>\\n<path class='atom-13' d='M 32.6104 85.1832\\nQ 32.6104 83.198, 33.5353 82.1603\\nQ 34.4715 81.1113, 36.2424 81.1113\\nQ 37.8892 81.1113, 38.769 82.2731\\nL 38.0245 82.8822\\nQ 37.3816 82.0363, 36.2424 82.0363\\nQ 35.0355 82.0363, 34.3926 82.8484\\nQ 33.7609 83.6492, 33.7609 85.1832\\nQ 33.7609 86.7623, 34.4151 87.5745\\nQ 35.0806 88.3866, 36.3665 88.3866\\nQ 37.2463 88.3866, 38.2727 87.8564\\nL 38.5885 88.7024\\nQ 38.1712 88.9731, 37.5395 89.131\\nQ 36.9079 89.2889, 36.2085 89.2889\\nQ 34.4715 89.2889, 33.5353 88.2287\\nQ 32.6104 87.1684, 32.6104 85.1832\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 39.739 80.6263\\nL 40.7767 80.6263\\nL 40.7767 89.1874\\nL 39.739 89.1874\\nL 39.739 80.6263\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.61, "data-ID": 1058, "mols2grid-id": 210, "mols2grid-tooltip": "<strong>Name</strong>: Benazolin<br><strong>SMILES</strong>: OC(=O)CN1C(=O)Sc2cccc(Cl)c12<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.61</span>", "style-Solubility": "color: black"}, {"data-SMILES": "OC(=O)C(Oc1cc(Cl)ccc1)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.019,89.1071 L 109.533,92.2618' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 109.533,92.2618 L 104.047,95.4164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.028,95.4136 L 102.019,101.841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 102.019,101.841 L 102.01,108.269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.065,95.4193 L 106.056,101.847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.056,101.847 L 106.047,108.274' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 104.047,95.4164 L 86.5755,85.2813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.5755,85.2813 L 86.5878,76.9248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 86.5878,76.9248 L 86.6,68.5682' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 86.5755,85.2813 L 72.5753,93.3318' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 83.4759,63.2685 L 76.3043,59.1086' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.3043,59.1086 L 69.1328,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 69.1328,54.9486 L 69.1328,34.7618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.0954,51.9206 L 65.0954,37.7898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-5' d='M 51.651,65.042 L 69.1328,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 69.1328,34.7618 L 51.651,24.6684' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.651,24.6684 L 51.651,18.364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.651,18.364 L 51.651,12.0597' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 51.651,24.6684 L 34.1692,34.7618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 51.0474,29.6788 L 38.8102,36.7442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 34.1692,34.7618 L 34.1692,54.9486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 34.1692,54.9486 L 51.651,65.042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.8102,52.9662 L 51.0474,60.0315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 115.422 87.3821\\nQ 115.422 86.0094, 116.101 85.2423\\nQ 116.779 84.4752, 118.047 84.4752\\nQ 119.315 84.4752, 119.993 85.2423\\nQ 120.671 86.0094, 120.671 87.3821\\nQ 120.671 88.7709, 119.985 89.5622\\nQ 119.298 90.3455, 118.047 90.3455\\nQ 116.787 90.3455, 116.101 89.5622\\nQ 115.422 88.779, 115.422 87.3821\\nM 118.047 89.6995\\nQ 118.919 89.6995, 119.387 89.1181\\nQ 119.864 88.5287, 119.864 87.3821\\nQ 119.864 86.2597, 119.387 85.6945\\nQ 118.919 85.1211, 118.047 85.1211\\nQ 117.175 85.1211, 116.698 85.6864\\nQ 116.23 86.2516, 116.23 87.3821\\nQ 116.23 88.5368, 116.698 89.1181\\nQ 117.175 89.6995, 118.047 89.6995\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 121.357 84.5398\\nL 122.133 84.5398\\nL 122.133 86.9703\\nL 125.056 86.9703\\nL 125.056 84.5398\\nL 125.831 84.5398\\nL 125.831 90.2567\\nL 125.056 90.2567\\nL 125.056 87.6162\\nL 122.133 87.6162\\nL 122.133 90.2567\\nL 121.357 90.2567\\nL 121.357 84.5398\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 101.399 111.582\\nQ 101.399 110.209, 102.078 109.442\\nQ 102.756 108.675, 104.024 108.675\\nQ 105.291 108.675, 105.97 109.442\\nQ 106.648 110.209, 106.648 111.582\\nQ 106.648 112.971, 105.962 113.762\\nQ 105.275 114.545, 104.024 114.545\\nQ 102.764 114.545, 102.078 113.762\\nQ 101.399 112.979, 101.399 111.582\\nM 104.024 113.899\\nQ 104.896 113.899, 105.364 113.318\\nQ 105.84 112.729, 105.84 111.582\\nQ 105.84 110.46, 105.364 109.894\\nQ 104.896 109.321, 104.024 109.321\\nQ 103.152 109.321, 102.675 109.886\\nQ 102.207 110.452, 102.207 111.582\\nQ 102.207 112.737, 102.675 113.318\\nQ 103.152 113.899, 104.024 113.899\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 83.9808 65.0999\\nQ 83.9808 63.7272, 84.6591 62.9601\\nQ 85.3374 62.193, 86.6051 62.193\\nQ 87.8729 62.193, 88.5511 62.9601\\nQ 89.2294 63.7272, 89.2294 65.0999\\nQ 89.2294 66.4887, 88.5431 67.28\\nQ 87.8567 68.0633, 86.6051 68.0633\\nQ 85.3455 68.0633, 84.6591 67.28\\nQ 83.9808 66.4968, 83.9808 65.0999\\nM 86.6051 67.4173\\nQ 87.4772 67.4173, 87.9455 66.8359\\nQ 88.4219 66.2465, 88.4219 65.0999\\nQ 88.4219 63.9775, 87.9455 63.4122\\nQ 87.4772 62.8389, 86.6051 62.8389\\nQ 85.7331 62.8389, 85.2566 63.4042\\nQ 84.7883 63.9694, 84.7883 65.0999\\nQ 84.7883 66.2545, 85.2566 66.8359\\nQ 85.7331 67.4173, 86.6051 67.4173\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 49.4466 8.71674\\nQ 49.4466 7.29558, 50.1087 6.55271\\nQ 50.7789 5.80176, 52.0466 5.80176\\nQ 53.2256 5.80176, 53.8554 6.63346\\nL 53.3224 7.06949\\nQ 52.8622 6.46389, 52.0466 6.46389\\nQ 51.1826 6.46389, 50.7224 7.04527\\nQ 50.2702 7.61857, 50.2702 8.71674\\nQ 50.2702 9.8472, 50.7385 10.4286\\nQ 51.2149 11.01, 52.1355 11.01\\nQ 52.7653 11.01, 53.5001 10.6304\\nL 53.7262 11.2361\\nQ 53.4274 11.4298, 52.9752 11.5429\\nQ 52.523 11.6559, 52.0224 11.6559\\nQ 50.7789 11.6559, 50.1087 10.8969\\nQ 49.4466 10.1379, 49.4466 8.71674\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 54.5498 5.45455\\nL 55.2927 5.45455\\nL 55.2927 11.5833\\nL 54.5498 11.5833\\nL 54.5498 5.45455\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.22, "data-ID": 1063, "mols2grid-id": 211, "mols2grid-tooltip": "<strong>Name</strong>: DL-2-(2-Chlorophenoxy)propionic_Acid<br><strong>SMILES</strong>: OC(=O)C(Oc1cc(Cl)ccc1)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.22</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(OC)c(ccc(OC)c1)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 143.095,59.1728 L 135.159,63.7363' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 135.159,63.7363 L 127.224,68.2999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 146.006,64.2359 L 138.071,68.7994' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 138.071,68.7994 L 130.135,73.363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.68,70.8314 L 128.662,82.9846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.662,82.9846 L 128.644,95.1377' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 128.68,70.8314 L 103.403,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 133.017,102.591 L 140.931,107.182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 140.931,107.182 L 148.845,111.772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.403,56.1695 L 103.403,26.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 97.5627,51.7891 L 97.5627,31.3469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-4 atom-11' d='M 103.403,56.1695 L 78.1135,70.7711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.403,26.9665 L 78.1135,12.365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 78.1135,12.365 L 52.8236,26.9665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 77.2404,19.6133 L 59.5375,29.8343' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 52.8236,26.9665 L 42.4198,20.9886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 42.4198,20.9886 L 32.0159,15.0108' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-10' d='M 52.8236,26.9665 L 52.8236,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 23.1086,14.9472 L 15.1906,19.5337' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 15.1906,19.5337 L 7.27273,24.1202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 78.1135,70.7711 L 52.8236,56.1695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-10' d='M 77.2404,63.5227 L 59.5375,53.3017' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.134 59.2086\\nQ 145.134 57.2228, 146.116 56.1131\\nQ 147.097 55.0034, 148.931 55.0034\\nQ 150.765 55.0034, 151.746 56.1131\\nQ 152.727 57.2228, 152.727 59.2086\\nQ 152.727 61.2178, 151.734 62.3625\\nQ 150.741 63.4956, 148.931 63.4956\\nQ 147.109 63.4956, 146.116 62.3625\\nQ 145.134 61.2294, 145.134 59.2086\\nM 148.931 62.5611\\nQ 150.192 62.5611, 150.87 61.7201\\nQ 151.559 60.8673, 151.559 59.2086\\nQ 151.559 57.5849, 150.87 56.7672\\nQ 150.192 55.9379, 148.931 55.9379\\nQ 147.669 55.9379, 146.98 56.7555\\nQ 146.303 57.5732, 146.303 59.2086\\nQ 146.303 60.879, 146.98 61.7201\\nQ 147.669 62.5611, 148.931 62.5611\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 124.84 100.073\\nQ 124.84 98.0876, 125.822 96.9779\\nQ 126.803 95.8682, 128.637 95.8682\\nQ 130.471 95.8682, 131.452 96.9779\\nQ 132.433 98.0876, 132.433 100.073\\nQ 132.433 102.083, 131.44 103.227\\nQ 130.447 104.36, 128.637 104.36\\nQ 126.814 104.36, 125.822 103.227\\nQ 124.84 102.094, 124.84 100.073\\nM 128.637 103.426\\nQ 129.898 103.426, 130.576 102.585\\nQ 131.265 101.732, 131.265 100.073\\nQ 131.265 98.4497, 130.576 97.632\\nQ 129.898 96.8027, 128.637 96.8027\\nQ 127.375 96.8027, 126.686 97.6203\\nQ 126.008 98.438, 126.008 100.073\\nQ 126.008 101.744, 126.686 102.585\\nQ 127.375 103.426, 128.637 103.426\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 23.6926 12.4331\\nQ 23.6926 10.4473, 24.6739 9.33758\\nQ 25.6551 8.22786, 27.489 8.22786\\nQ 29.323 8.22786, 30.3042 9.33758\\nQ 31.2854 10.4473, 31.2854 12.4331\\nQ 31.2854 14.4423, 30.2925 15.587\\nQ 29.2996 16.7201, 27.489 16.7201\\nQ 25.6668 16.7201, 24.6739 15.587\\nQ 23.6926 14.454, 23.6926 12.4331\\nM 27.489 15.7856\\nQ 28.7506 15.7856, 29.4281 14.9446\\nQ 30.1173 14.0918, 30.1173 12.4331\\nQ 30.1173 10.8094, 29.4281 9.99173\\nQ 28.7506 9.16236, 27.489 9.16236\\nQ 26.2275 9.16236, 25.5383 9.98004\\nQ 24.8608 10.7977, 24.8608 12.4331\\nQ 24.8608 14.1035, 25.5383 14.9446\\nQ 26.2275 15.7856, 27.489 15.7856\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.41, "data-ID": 1068, "mols2grid-id": 212, "mols2grid-tooltip": "<strong>Name</strong>: Methyl-4-methoxybenzoate<br><strong>SMILES</strong>: O=C(OC)c(ccc(OC)c1)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.41</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCOc1ccc(NC(N)=O)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 152.727,107.973 L 135.507,97.9843' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.507,97.9843 L 135.522,87.6829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 135.522,87.6829 L 135.537,77.3815' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.686,70.8484 L 122.845,65.7202' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 122.845,65.7202 L 114.005,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 114.005,60.5921 L 114.005,35.7071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 109.028,56.8593 L 109.028,39.4398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 92.4541,73.0346 L 114.005,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.005,35.7071 L 92.4541,23.2646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 92.4541,23.2646 L 70.9037,35.7071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.7101,29.4411 L 76.6248,38.1509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.9037,35.7071 L 61.757,30.4516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 61.757,30.4516 L 52.6102,25.196' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-6 atom-11' d='M 70.9037,35.7071 L 70.9037,60.5921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 46.02,25.2112 L 36.8948,30.4965' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 36.8948,30.4965 L 27.7697,35.7817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.7697,35.7817 L 27.7836,43.725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 27.7836,43.725 L 27.7975,51.6683' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 29.0094,33.624 L 22.2448,29.7375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 22.2448,29.7375 L 15.4802,25.8511' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 26.53,37.9395 L 19.7654,34.053' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 19.7654,34.053 L 13.0008,30.1666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 70.9037,60.5921 L 92.4541,73.0346' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 76.6248,58.1483 L 91.7101,66.858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 132.308 73.1059\\nQ 132.308 71.4138, 133.144 70.4681\\nQ 133.981 69.5225, 135.543 69.5225\\nQ 137.106 69.5225, 137.942 70.4681\\nQ 138.778 71.4138, 138.778 73.1059\\nQ 138.778 74.818, 137.932 75.7935\\nQ 137.086 76.7591, 135.543 76.7591\\nQ 133.991 76.7591, 133.144 75.7935\\nQ 132.308 74.828, 132.308 73.1059\\nM 135.543 75.9627\\nQ 136.618 75.9627, 137.196 75.2461\\nQ 137.783 74.5194, 137.783 73.1059\\nQ 137.783 71.7223, 137.196 71.0256\\nQ 136.618 70.3188, 135.543 70.3188\\nQ 134.468 70.3188, 133.881 71.0156\\nQ 133.304 71.7124, 133.304 73.1059\\nQ 133.304 74.5294, 133.881 75.2461\\nQ 134.468 75.9627, 135.543 75.9627\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 47.7573 19.779\\nL 50.0667 23.5118\\nQ 50.2956 23.8801, 50.6639 24.547\\nQ 51.0322 25.2139, 51.0521 25.2537\\nL 51.0521 19.779\\nL 51.9878 19.779\\nL 51.9878 26.8265\\nL 51.0222 26.8265\\nL 48.5437 22.7453\\nQ 48.255 22.2675, 47.9464 21.7201\\nQ 47.6478 21.1726, 47.5582 21.0034\\nL 47.5582 26.8265\\nL 46.6425 26.8265\\nL 46.6425 19.779\\nL 47.7573 19.779\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 46.5579 12.0268\\nL 47.5134 12.0268\\nL 47.5134 15.023\\nL 51.1168 15.023\\nL 51.1168 12.0268\\nL 52.0724 12.0268\\nL 52.0724 19.0743\\nL 51.1168 19.0743\\nL 51.1168 15.8193\\nL 47.5134 15.8193\\nL 47.5134 19.0743\\nL 46.5579 19.0743\\nL 46.5579 12.0268\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 26.2467 52.166\\nL 28.556 55.8988\\nQ 28.785 56.2671, 29.1533 56.934\\nQ 29.5216 57.6009, 29.5415 57.6407\\nL 29.5415 52.166\\nL 30.4772 52.166\\nL 30.4772 59.2135\\nL 29.5116 59.2135\\nL 27.0331 55.1323\\nQ 26.7444 54.6545, 26.4358 54.1071\\nQ 26.1372 53.5596, 26.0476 53.3904\\nL 26.0476 59.2135\\nL 25.1319 59.2135\\nL 25.1319 52.166\\nL 26.2467 52.166\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 31.3233 52.166\\nL 32.2788 52.166\\nL 32.2788 55.1622\\nL 35.8822 55.1622\\nL 35.8822 52.166\\nL 36.8378 52.166\\nL 36.8378 59.2135\\nL 35.8822 59.2135\\nL 35.8822 55.9585\\nL 32.2788 55.9585\\nL 32.2788 59.2135\\nL 31.3233 59.2135\\nL 31.3233 52.166\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 37.1794 58.9662\\nQ 37.3502 58.526, 37.7575 58.283\\nQ 38.1648 58.0333, 38.7298 58.0333\\nQ 39.4328 58.0333, 39.827 58.4144\\nQ 40.2211 58.7954, 40.2211 59.4721\\nQ 40.2211 60.1619, 39.7087 60.8057\\nQ 39.2029 61.4495, 38.1517 62.2116\\nL 40.3 62.2116\\nL 40.3 62.7372\\nL 37.1663 62.7372\\nL 37.1663 62.297\\nQ 38.0335 61.6795, 38.5459 61.2196\\nQ 39.0649 60.7597, 39.3145 60.3458\\nQ 39.5642 59.9319, 39.5642 59.5049\\nQ 39.5642 59.0582, 39.3408 58.8085\\nQ 39.1174 58.5589, 38.7298 58.5589\\nQ 38.3554 58.5589, 38.1057 58.71\\nQ 37.8561 58.8611, 37.6787 59.1961\\nL 37.1794 58.9662\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 7.27273 25.8841\\nQ 7.27273 24.192, 8.10886 23.2463\\nQ 8.945 22.3007, 10.5078 22.3007\\nQ 12.0706 22.3007, 12.9067 23.2463\\nQ 13.7428 24.192, 13.7428 25.8841\\nQ 13.7428 27.5962, 12.8967 28.5717\\nQ 12.0506 29.5373, 10.5078 29.5373\\nQ 8.95495 29.5373, 8.10886 28.5717\\nQ 7.27273 27.6062, 7.27273 25.8841\\nM 10.5078 28.7409\\nQ 11.5828 28.7409, 12.1601 28.0243\\nQ 12.7474 27.2976, 12.7474 25.8841\\nQ 12.7474 24.5005, 12.1601 23.8038\\nQ 11.5828 23.097, 10.5078 23.097\\nQ 9.43275 23.097, 8.84546 23.7938\\nQ 8.26813 24.4906, 8.26813 25.8841\\nQ 8.26813 27.3076, 8.84546 28.0243\\nQ 9.43275 28.7409, 10.5078 28.7409\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.17, "data-ID": 1073, "mols2grid-id": 213, "mols2grid-tooltip": "<strong>Name</strong>: Dulcin<br><strong>SMILES</strong>: CCOc1ccc(NC(N)=O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.17</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(O)CCCCCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.6026,71.4671 L 18.8102,68.4625' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.8102,68.4625 L 24.0177,65.4579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 11.6853,68.1439 L 16.8928,65.1393' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8928,65.1393 L 22.1004,62.1347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,63.7963 L 23.0591,57.7306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 23.0591,57.7306 L 23.0591,51.665' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.0591,63.7963 L 39.6843,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 39.6843,73.3878 L 56.3096,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.3096,63.7963 L 72.9349,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 72.9349,73.3878 L 89.5602,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.5602,63.7963 L 106.184,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 106.184,73.3878 L 122.809,63.7963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 122.809,63.7963 L 139.435,73.3878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 139.435,73.3878 L 152.727,65.7185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 71.481\\nQ 7.27273 70.1766, 7.91728 69.4476\\nQ 8.56183 68.7187, 9.76652 68.7187\\nQ 10.9712 68.7187, 11.6158 69.4476\\nQ 12.2603 70.1766, 12.2603 71.481\\nQ 12.2603 72.8008, 11.6081 73.5528\\nQ 10.9559 74.2971, 9.76652 74.2971\\nQ 8.5695 74.2971, 7.91728 73.5528\\nQ 7.27273 72.8085, 7.27273 71.481\\nM 9.76652 73.6832\\nQ 10.5952 73.6832, 11.0403 73.1308\\nQ 11.493 72.5706, 11.493 71.481\\nQ 11.493 70.4145, 11.0403 69.8773\\nQ 10.5952 69.3325, 9.76652 69.3325\\nQ 8.93781 69.3325, 8.48509 69.8697\\nQ 8.04005 70.4068, 8.04005 71.481\\nQ 8.04005 72.5783, 8.48509 73.1308\\nQ 8.93781 73.6832, 9.76652 73.6832\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 20.5653 48.4653\\nQ 20.5653 47.1608, 21.2098 46.4319\\nQ 21.8544 45.7029, 23.0591 45.7029\\nQ 24.2638 45.7029, 24.9083 46.4319\\nQ 25.5529 47.1608, 25.5529 48.4653\\nQ 25.5529 49.785, 24.9006 50.537\\nQ 24.2484 51.2813, 23.0591 51.2813\\nQ 21.862 51.2813, 21.2098 50.537\\nQ 20.5653 49.7927, 20.5653 48.4653\\nM 23.0591 50.6675\\nQ 23.8878 50.6675, 24.3328 50.115\\nQ 24.7855 49.5549, 24.7855 48.4653\\nQ 24.7855 47.3987, 24.3328 46.8616\\nQ 23.8878 46.3168, 23.0591 46.3168\\nQ 22.2304 46.3168, 21.7776 46.8539\\nQ 21.3326 47.391, 21.3326 48.4653\\nQ 21.3326 49.5625, 21.7776 50.115\\nQ 22.2304 50.6675, 23.0591 50.6675\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 26.2051 45.7643\\nL 26.9417 45.7643\\nL 26.9417 48.0739\\nL 29.7194 48.0739\\nL 29.7194 45.7643\\nL 30.456 45.7643\\nL 30.456 51.1969\\nL 29.7194 51.1969\\nL 29.7194 48.6878\\nL 26.9417 48.6878\\nL 26.9417 51.1969\\nL 26.2051 51.1969\\nL 26.2051 45.7643\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.75, "data-ID": 1078, "mols2grid-id": 214, "mols2grid-tooltip": "<strong>Name</strong>: Pelargonic_Acid<br><strong>SMILES</strong>: O=C(O)CCCCCCCC<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.75</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1N2C(=O)C(Cl)=C(N)C=N2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 103.175,32.3516 L 103.175,14.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 99.5882,29.6619 L 99.5882,17.1099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 87.6459,41.3173 L 103.175,32.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 103.175,14.4202 L 87.6459,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.6459,5.45455 L 72.1174,14.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 87.1098,9.90518 L 76.2398,16.1812' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.1174,14.4202 L 72.1174,32.3516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.1174,32.3516 L 87.6459,41.3173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 76.2398,30.5907 L 87.1098,36.8667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.6459,41.3173 L 87.6459,48.794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.6459,48.794 L 87.6459,56.2706' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 85.2718,60.6341 L 78.7018,64.4416' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.7018,64.4416 L 72.1317,68.249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-6' d='M 100.815,66.8342 L 89.9516,60.5847' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 73.0257,66.6947 L 68.1532,63.8921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.1532,63.8921 L 63.2806,61.0895' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 71.2377,69.8034 L 66.3651,67.0008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 66.3651,67.0008 L 61.4926,64.1982' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 72.1317,68.249 L 72.1592,86.1804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.1592,86.1804 L 66.298,89.5773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.298,89.5773 L 60.4369,92.9742' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 71.2651,87.7347 L 88.5974,93.5679' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 73.0533,84.6261 L 86.8092,96.6765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.7033,95.1222 L 87.7124,100.846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 87.7124,100.846 L 87.7214,106.57' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 87.7033,95.1222 L 103.218,86.1314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 105.011,86.1285 L 103.206,78.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.206,78.6594 L 101.401,71.1903' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 101.424,86.1343 L 103.206,78.6594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 103.206,78.6594 L 104.987,71.1845' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 86.5234 56.7192\\nL 88.1875 59.4089\\nQ 88.3524 59.6742, 88.6178 60.1548\\nQ 88.8832 60.6354, 88.8975 60.6641\\nL 88.8975 56.7192\\nL 89.5718 56.7192\\nL 89.5718 61.7973\\nL 88.876 61.7973\\nL 87.0901 58.8566\\nQ 86.8821 58.5123, 86.6597 58.1178\\nQ 86.4445 57.7233, 86.38 57.6014\\nL 86.38 61.7973\\nL 85.7201 61.7973\\nL 85.7201 56.7192\\nL 86.5234 56.7192\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 57.3658 61.1111\\nQ 57.3658 59.8918, 57.9683 59.2104\\nQ 58.5708 58.529, 59.6969 58.529\\nQ 60.823 58.529, 61.4255 59.2104\\nQ 62.028 59.8918, 62.028 61.1111\\nQ 62.028 62.3448, 61.4183 63.0477\\nQ 60.8086 63.7435, 59.6969 63.7435\\nQ 58.578 63.7435, 57.9683 63.0477\\nQ 57.3658 62.352, 57.3658 61.1111\\nM 59.6969 63.1697\\nQ 60.4715 63.1697, 60.8875 62.6532\\nQ 61.3107 62.1296, 61.3107 61.1111\\nQ 61.3107 60.1142, 60.8875 59.6121\\nQ 60.4715 59.1028, 59.6969 59.1028\\nQ 58.9223 59.1028, 58.4991 59.6049\\nQ 58.0831 60.107, 58.0831 61.1111\\nQ 58.0831 62.1368, 58.4991 62.6532\\nQ 58.9223 63.1697, 59.6969 63.1697\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 54.8853 93.549\\nQ 54.8853 92.2866, 55.4735 91.6268\\nQ 56.0688 90.9597, 57.1949 90.9597\\nQ 58.2421 90.9597, 58.8015 91.6985\\nL 58.3281 92.0858\\nQ 57.9193 91.5479, 57.1949 91.5479\\nQ 56.4274 91.5479, 56.0186 92.0643\\nQ 55.6169 92.5735, 55.6169 93.549\\nQ 55.6169 94.5532, 56.0329 95.0696\\nQ 56.4561 95.586, 57.2738 95.586\\nQ 57.8332 95.586, 58.4859 95.2489\\nL 58.6868 95.7868\\nQ 58.4214 95.959, 58.0197 96.0594\\nQ 57.6181 96.1598, 57.1734 96.1598\\nQ 56.0688 96.1598, 55.4735 95.4856\\nQ 54.8853 94.8114, 54.8853 93.549\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 59.4184 90.6513\\nL 60.0782 90.6513\\nL 60.0782 96.0953\\nL 59.4184 96.0953\\nL 59.4184 90.6513\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 86.6035 106.928\\nL 88.2676 109.618\\nQ 88.4325 109.883, 88.6979 110.364\\nQ 88.9633 110.844, 88.9776 110.873\\nL 88.9776 106.928\\nL 89.6519 106.928\\nL 89.6519 112.006\\nL 88.9561 112.006\\nL 87.1702 109.066\\nQ 86.9622 108.721, 86.7398 108.327\\nQ 86.5246 107.932, 86.4601 107.81\\nL 86.4601 112.006\\nL 85.8002 112.006\\nL 85.8002 106.928\\nL 86.6035 106.928\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 90.2615 106.928\\nL 90.9501 106.928\\nL 90.9501 109.087\\nL 93.5466 109.087\\nL 93.5466 106.928\\nL 94.2351 106.928\\nL 94.2351 112.006\\nL 93.5466 112.006\\nL 93.5466 109.661\\nL 90.9501 109.661\\nL 90.9501 112.006\\nL 90.2615 112.006\\nL 90.2615 106.928\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 94.4813 111.828\\nQ 94.6044 111.511, 94.8979 111.336\\nQ 95.1914 111.156, 95.5985 111.156\\nQ 96.105 111.156, 96.389 111.431\\nQ 96.6731 111.705, 96.6731 112.193\\nQ 96.6731 112.69, 96.3038 113.154\\nQ 95.9393 113.618, 95.1819 114.167\\nL 96.7299 114.167\\nL 96.7299 114.545\\nL 94.4718 114.545\\nL 94.4718 114.228\\nQ 95.0967 113.783, 95.4659 113.452\\nQ 95.8399 113.121, 96.0198 112.822\\nQ 96.1997 112.524, 96.1997 112.216\\nQ 96.1997 111.894, 96.0387 111.715\\nQ 95.8778 111.535, 95.5985 111.535\\nQ 95.3286 111.535, 95.1488 111.644\\nQ 94.9689 111.752, 94.8411 111.994\\nL 94.4813 111.828\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 102.066 65.6609\\nL 103.73 68.3506\\nQ 103.895 68.616, 104.161 69.0966\\nQ 104.426 69.5771, 104.44 69.6058\\nL 104.44 65.6609\\nL 105.115 65.6609\\nL 105.115 70.7391\\nL 104.419 70.7391\\nL 102.633 67.7984\\nQ 102.425 67.4541, 102.203 67.0596\\nQ 101.987 66.6651, 101.923 66.5432\\nL 101.923 70.7391\\nL 101.263 70.7391\\nL 101.263 65.6609\\nL 102.066 65.6609\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.87, "data-ID": 1083, "mols2grid-id": 215, "mols2grid-tooltip": "<strong>Name</strong>: Pyrazon<br><strong>SMILES</strong>: c1ccccc1N2C(=O)C(Cl)=C(N)C=N2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.87</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=S(=O)(Nc(nccc1)n1)c(ccc(N)c2)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 57.092,76.9198 L 61.6829,74.2799' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 61.6829,74.2799 L 66.2737,71.6401' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 54.9976,73.2774 L 59.5884,70.6376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 59.5884,70.6376 L 64.1793,67.9977' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 66.1888,65.3663 L 61.6238,62.7213' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 61.6238,62.7213 L 57.0588,60.0763' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 64.0824,69.0017 L 59.5174,66.3567' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 59.5174,66.3567 L 54.9524,63.7117' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 67.4684,65.0409 L 67.4787,57.9837' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 67.4787,57.9837 L 67.4891,50.9265' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 69.8963,69.9441 L 77.7706,74.5121' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-1 atom-10' d='M 77.7706,74.5121 L 85.6449,79.08' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.7123,45.9 L 57.0117,41.4332' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 57.0117,41.4332 L 49.3111,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3111,36.9663 L 49.3111,28.2123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.3111,28.2123 L 49.3111,19.4584' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.1095,34.3401 L 45.1095,28.2123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.1095,28.2123 L 45.1095,22.0846' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 49.3111,36.9663 L 41.6054,41.4153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 41.6054,41.4153 L 33.8997,45.8643' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 46.5297,14.3526 L 38.824,9.90355' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 38.824,9.90355 L 31.1183,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 31.1183,5.45455 L 12.9255,15.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.4902,10.6688 L 17.7553,18.0215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 12.9255,15.9585 L 12.9255,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 28.3369,45.8643 L 20.6312,41.4153' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 20.6312,41.4153 L 12.9255,36.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 28.126,40.891 L 22.732,37.7767' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 22.732,37.7767 L 17.3381,34.6624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6449,79.08 L 85.6014,100.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.8399,82.2399 L 89.8095,96.9454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-10 atom-16' d='M 85.6449,79.08 L 103.86,68.6139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 85.6014,100.088 L 103.773,110.63' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 103.773,110.63 L 121.988,100.162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 104.412,105.417 L 117.163,98.0893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 121.988,100.162 L 127.919,103.603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 127.919,103.603 L 133.849,107.043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 121.988,100.162 L 122.032,79.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 103.86,68.6139 L 122.032,79.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-15' d='M 104.478,73.8294 L 117.198,81.2076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 50.1626 76.9274\\nQ 50.1626 75.4989, 50.8685 74.7006\\nQ 51.5743 73.9023, 52.8936 73.9023\\nQ 54.2129 73.9023, 54.9188 74.7006\\nQ 55.6247 75.4989, 55.6247 76.9274\\nQ 55.6247 78.3728, 54.9104 79.1963\\nQ 54.1961 80.0114, 52.8936 80.0114\\nQ 51.5828 80.0114, 50.8685 79.1963\\nQ 50.1626 78.3812, 50.1626 76.9274\\nM 52.8936 79.3391\\nQ 53.8012 79.3391, 54.2886 78.7341\\nQ 54.7843 78.1207, 54.7843 76.9274\\nQ 54.7843 75.7594, 54.2886 75.1712\\nQ 53.8012 74.5745, 52.8936 74.5745\\nQ 51.9861 74.5745, 51.4903 75.1628\\nQ 51.0029 75.751, 51.0029 76.9274\\nQ 51.0029 78.1291, 51.4903 78.7341\\nQ 51.9861 79.3391, 52.8936 79.3391\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 65.7827 70.5746\\nQ 65.8499 70.5999, 66.1272 70.7175\\nQ 66.4045 70.8351, 66.707 70.9108\\nQ 67.0179 70.978, 67.3204 70.978\\nQ 67.8834 70.978, 68.2112 70.7091\\nQ 68.5389 70.4318, 68.5389 69.9528\\nQ 68.5389 69.6251, 68.3708 69.4234\\nQ 68.2112 69.2217, 67.9591 69.1125\\nQ 67.707 69.0033, 67.2868 68.8772\\nQ 66.7574 68.7176, 66.4381 68.5663\\nQ 66.1272 68.415, 65.9003 68.0957\\nQ 65.6818 67.7764, 65.6818 67.2386\\nQ 65.6818 66.4907, 66.186 66.0285\\nQ 66.6986 65.5664, 67.707 65.5664\\nQ 68.396 65.5664, 69.1775 65.8941\\nL 68.9842 66.5411\\nQ 68.27 66.247, 67.7322 66.247\\nQ 67.1524 66.247, 66.833 66.4907\\nQ 66.5137 66.726, 66.5221 67.1378\\nQ 66.5221 67.4571, 66.6818 67.6504\\nQ 66.8498 67.8436, 67.0851 67.9529\\nQ 67.3288 68.0621, 67.7322 68.1882\\nQ 68.27 68.3562, 68.5893 68.5243\\nQ 68.9086 68.6923, 69.1355 69.0369\\nQ 69.3708 69.373, 69.3708 69.9528\\nQ 69.3708 70.7763, 68.8162 71.2217\\nQ 68.27 71.6587, 67.354 71.6587\\nQ 66.8246 71.6587, 66.4213 71.541\\nQ 66.0263 71.4318, 65.5558 71.2385\\nL 65.7827 70.5746\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 50.1906 60.1239\\nQ 50.1906 58.6954, 50.8965 57.8971\\nQ 51.6024 57.0988, 52.9217 57.0988\\nQ 54.2409 57.0988, 54.9468 57.8971\\nQ 55.6527 58.6954, 55.6527 60.1239\\nQ 55.6527 61.5693, 54.9384 62.3928\\nQ 54.2241 63.2079, 52.9217 63.2079\\nQ 51.6108 63.2079, 50.8965 62.3928\\nQ 50.1906 61.5777, 50.1906 60.1239\\nM 52.9217 62.5356\\nQ 53.8292 62.5356, 54.3166 61.9306\\nQ 54.8124 61.3172, 54.8124 60.1239\\nQ 54.8124 58.9559, 54.3166 58.3677\\nQ 53.8292 57.7711, 52.9217 57.7711\\nQ 52.0141 57.7711, 51.5183 58.3593\\nQ 51.0309 58.9475, 51.0309 60.1239\\nQ 51.0309 61.3256, 51.5183 61.9306\\nQ 52.0141 62.5356, 52.9217 62.5356\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 66.179 44.5389\\nL 68.1285 47.6901\\nQ 68.3218 48.001, 68.6327 48.564\\nQ 68.9436 49.127, 68.9604 49.1607\\nL 68.9604 44.5389\\nL 69.7503 44.5389\\nL 69.7503 50.4884\\nL 68.9352 50.4884\\nL 66.8428 47.0431\\nQ 66.5992 46.6397, 66.3387 46.1775\\nQ 66.0866 45.7154, 66.0109 45.5725\\nL 66.0109 50.4884\\nL 65.2378 50.4884\\nL 65.2378 44.5389\\nL 66.179 44.5389\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 70.4646 44.5389\\nL 71.2713 44.5389\\nL 71.2713 47.0683\\nL 74.3132 47.0683\\nL 74.3132 44.5389\\nL 75.1199 44.5389\\nL 75.1199 50.4884\\nL 74.3132 50.4884\\nL 74.3132 47.7405\\nL 71.2713 47.7405\\nL 71.2713 50.4884\\nL 70.4646 50.4884\\nL 70.4646 44.5389\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 47.996 12.9838\\nL 49.9455 16.1349\\nQ 50.1388 16.4458, 50.4497 17.0089\\nQ 50.7606 17.5719, 50.7775 17.6055\\nL 50.7775 12.9838\\nL 51.5673 12.9838\\nL 51.5673 18.9332\\nL 50.7522 18.9332\\nL 48.6599 15.4879\\nQ 48.4162 15.0845, 48.1557 14.6224\\nQ 47.9036 14.1602, 47.828 14.0173\\nL 47.828 18.9332\\nL 47.0549 18.9332\\nL 47.0549 12.9838\\nL 47.996 12.9838\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 29.8032 44.4955\\nL 31.7528 47.6467\\nQ 31.946 47.9576, 32.2569 48.5206\\nQ 32.5679 49.0836, 32.5847 49.1172\\nL 32.5847 44.4955\\nL 33.3746 44.4955\\nL 33.3746 50.4449\\nL 32.5595 50.4449\\nL 30.4671 46.9996\\nQ 30.2234 46.5963, 29.9629 46.1341\\nQ 29.7108 45.672, 29.6352 45.5291\\nL 29.6352 50.4449\\nL 28.8621 50.4449\\nL 28.8621 44.4955\\nL 29.8032 44.4955\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 135.211 105.621\\nL 137.16 108.773\\nQ 137.354 109.083, 137.664 109.646\\nQ 137.975 110.209, 137.992 110.243\\nL 137.992 105.621\\nL 138.782 105.621\\nL 138.782 111.571\\nL 137.967 111.571\\nL 135.875 108.125\\nQ 135.631 107.722, 135.37 107.26\\nQ 135.118 106.798, 135.043 106.655\\nL 135.043 111.571\\nL 134.27 111.571\\nL 134.27 105.621\\nL 135.211 105.621\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 139.496 105.621\\nL 140.303 105.621\\nL 140.303 108.151\\nL 143.345 108.151\\nL 143.345 105.621\\nL 144.152 105.621\\nL 144.152 111.571\\nL 143.345 111.571\\nL 143.345 108.823\\nL 140.303 108.823\\nL 140.303 111.571\\nL 139.496 111.571\\nL 139.496 105.621\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 144.44 111.362\\nQ 144.584 110.99, 144.928 110.785\\nQ 145.272 110.574, 145.749 110.574\\nQ 146.342 110.574, 146.675 110.896\\nQ 147.008 111.218, 147.008 111.789\\nQ 147.008 112.371, 146.575 112.915\\nQ 146.148 113.458, 145.261 114.102\\nL 147.074 114.102\\nL 147.074 114.545\\nL 144.429 114.545\\nL 144.429 114.174\\nQ 145.161 113.653, 145.594 113.264\\nQ 146.032 112.876, 146.243 112.527\\nQ 146.453 112.177, 146.453 111.817\\nQ 146.453 111.44, 146.265 111.229\\nQ 146.076 111.018, 145.749 111.018\\nQ 145.433 111.018, 145.222 111.146\\nQ 145.011 111.273, 144.862 111.556\\nL 144.44 111.362\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -3.51, "data-ID": 1088, "mols2grid-id": 216, "mols2grid-tooltip": "<strong>Name</strong>: Sulfadiazine<br><strong>SMILES</strong>: O=S(=O)(Nc(nccc1)n1)c(ccc(N)c2)c2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.51</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CC(=O)Nc1ccc(OC(C)=O)cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 115.834,101.297 L 132.717,91.589' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.495,93.6948 L 138.093,97.5215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 138.093,97.5215 L 144.69,101.348' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 133.938,89.4833 L 140.535,93.31' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.535,93.31 L 147.133,97.1367' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.717,91.589 L 132.732,81.4387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.732,81.4387 L 132.747,71.2884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 129.529,65.3627 L 120.606,60.1865' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 120.606,60.1865 L 111.682,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 111.682,55.0104 L 111.682,30.6668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 106.814,51.3588 L 106.814,34.3183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 90.6008,67.1822 L 111.682,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 111.682,30.6668 L 90.6008,18.495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 90.6008,18.495 L 69.5193,30.6668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.873,24.5372 L 75.1159,33.0574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.5193,30.6668 L 60.8466,25.6837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 60.8466,25.6837 L 52.174,20.7005' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-7 atom-12' d='M 69.5193,30.6668 L 69.5193,55.0104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 44.6268,20.718 L 35.9753,25.7289' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 35.9753,25.7289 L 27.3237,30.7398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 27.3237,30.7398 L 27.3578,50.2147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 28.5364,28.629 L 21.919,24.8271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 21.919,24.8271 L 15.3016,21.0252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 26.111,32.8506 L 19.4936,29.0487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 19.4936,29.0487 L 12.8762,25.2468' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 69.5193,55.0104 L 90.6008,67.1822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.1159,52.6197 L 89.873,61.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 146.398 101.38\\nQ 146.398 99.7247, 147.216 98.7996\\nQ 148.034 97.8746, 149.563 97.8746\\nQ 151.091 97.8746, 151.909 98.7996\\nQ 152.727 99.7247, 152.727 101.38\\nQ 152.727 103.055, 151.9 104.009\\nQ 151.072 104.954, 149.563 104.954\\nQ 148.044 104.954, 147.216 104.009\\nQ 146.398 103.065, 146.398 101.38\\nM 149.563 104.175\\nQ 150.614 104.175, 151.179 103.474\\nQ 151.754 102.763, 151.754 101.38\\nQ 151.754 100.027, 151.179 99.3449\\nQ 150.614 98.6536, 149.563 98.6536\\nQ 148.511 98.6536, 147.936 99.3352\\nQ 147.372 100.017, 147.372 101.38\\nQ 147.372 102.772, 147.936 103.474\\nQ 148.511 104.175, 149.563 104.175\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 131.229 63.7854\\nL 133.488 67.437\\nQ 133.712 67.7973, 134.072 68.4497\\nQ 134.432 69.1021, 134.452 69.141\\nL 134.452 63.7854\\nL 135.367 63.7854\\nL 135.367 70.6795\\nL 134.423 70.6795\\nL 131.998 66.6872\\nQ 131.716 66.2198, 131.414 65.6842\\nQ 131.122 65.1487, 131.034 64.9831\\nL 131.034 70.6795\\nL 130.138 70.6795\\nL 130.138 63.7854\\nL 131.229 63.7854\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 136.195 63.7854\\nL 137.13 63.7854\\nL 137.13 66.7164\\nL 140.654 66.7164\\nL 140.654 63.7854\\nL 141.589 63.7854\\nL 141.589 70.6795\\nL 140.654 70.6795\\nL 140.654 67.4954\\nL 137.13 67.4954\\nL 137.13 70.6795\\nL 136.195 70.6795\\nL 136.195 63.7854\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 45.2357 18.5518\\nQ 45.2357 16.8964, 46.0537 15.9714\\nQ 46.8716 15.0463, 48.4004 15.0463\\nQ 49.9292 15.0463, 50.7471 15.9714\\nQ 51.5651 16.8964, 51.5651 18.5518\\nQ 51.5651 20.2266, 50.7374 21.1809\\nQ 49.9097 22.1254, 48.4004 22.1254\\nQ 46.8814 22.1254, 46.0537 21.1809\\nQ 45.2357 20.2364, 45.2357 18.5518\\nM 48.4004 21.3464\\nQ 49.452 21.3464, 50.0168 20.6453\\nQ 50.5913 19.9345, 50.5913 18.5518\\nQ 50.5913 17.1983, 50.0168 16.5167\\nQ 49.452 15.8253, 48.4004 15.8253\\nQ 47.3488 15.8253, 46.7743 16.5069\\nQ 46.2095 17.1886, 46.2095 18.5518\\nQ 46.2095 19.9443, 46.7743 20.6453\\nQ 47.3488 21.3464, 48.4004 21.3464\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 7.27273 21.0576\\nQ 7.27273 19.4022, 8.09067 18.4771\\nQ 8.90862 17.5521, 10.4374 17.5521\\nQ 11.9662 17.5521, 12.7841 18.4771\\nQ 13.6021 19.4022, 13.6021 21.0576\\nQ 13.6021 22.7324, 12.7744 23.6867\\nQ 11.9467 24.6312, 10.4374 24.6312\\nQ 8.91835 24.6312, 8.09067 23.6867\\nQ 7.27273 22.7421, 7.27273 21.0576\\nM 10.4374 23.8522\\nQ 11.489 23.8522, 12.0538 23.1511\\nQ 12.6283 22.4403, 12.6283 21.0576\\nQ 12.6283 19.7041, 12.0538 19.0224\\nQ 11.489 18.3311, 10.4374 18.3311\\nQ 9.38575 18.3311, 8.81124 19.0127\\nQ 8.24647 19.6943, 8.24647 21.0576\\nQ 8.24647 22.45, 8.81124 23.1511\\nQ 9.38575 23.8522, 10.4374 23.8522\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.91, "data-ID": 1093, "mols2grid-id": 217, "mols2grid-tooltip": "<strong>Name</strong>: p-Acetoxy-acetanilide<br><strong>SMILES</strong>: CC(=O)Nc1ccc(OC(C)=O)cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.91</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc1cc2CCCCc2cc1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 24.0113,34.6204 L 32.7025,39.6726' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 32.7025,39.6726 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 41.3938,44.7248 L 69.5202,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 48.7888,47.8993 L 68.4774,36.6871' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-1' d='M 41.3938,76.7557 L 41.3938,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 69.5202,28.7072 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 97.2552,44.7248 L 124.99,28.7072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 97.2552,76.7557 L 97.2552,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-3' d='M 90.837,71.951 L 90.837,49.5294' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 124.99,28.7072 L 152.727,44.7248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 152.727,44.7248 L 152.727,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 152.727,76.7557 L 124.99,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.99,92.7732 L 97.2552,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 97.2552,76.7557 L 69.5202,92.7732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 69.5202,92.7732 L 41.3938,76.7557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 68.4774,84.7934 L 48.7888,73.5811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 27.3295\\nL 8.50501 27.3295\\nL 8.50501 31.1932\\nL 13.1518 31.1932\\nL 13.1518 27.3295\\nL 14.384 27.3295\\nL 14.384 36.4176\\nL 13.1518 36.4176\\nL 13.1518 32.2201\\nL 8.50501 32.2201\\nL 8.50501 36.4176\\nL 7.27273 36.4176\\nL 7.27273 27.3295\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 15.0259 31.8479\\nQ 15.0259 29.6657, 16.1041 28.4462\\nQ 17.1824 27.2268, 19.1977 27.2268\\nQ 21.213 27.2268, 22.2912 28.4462\\nQ 23.3694 29.6657, 23.3694 31.8479\\nQ 23.3694 34.0557, 22.2784 35.3137\\nQ 21.1873 36.5588, 19.1977 36.5588\\nQ 17.1952 36.5588, 16.1041 35.3137\\nQ 15.0259 34.0685, 15.0259 31.8479\\nM 19.1977 35.5319\\nQ 20.584 35.5319, 21.3285 34.6077\\nQ 22.0858 33.6706, 22.0858 31.8479\\nQ 22.0858 30.0636, 21.3285 29.1651\\nQ 20.584 28.2537, 19.1977 28.2537\\nQ 17.8113 28.2537, 17.054 29.1522\\nQ 16.3095 30.0508, 16.3095 31.8479\\nQ 16.3095 33.6834, 17.054 34.6077\\nQ 17.8113 35.5319, 19.1977 35.5319\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.99, "data-ID": 1098, "mols2grid-id": 218, "mols2grid-tooltip": "<strong>Name</strong>: 5,6,7,8-Tetrahydro-2-naphthol<br><strong>SMILES</strong>: Oc1cc2CCCCc2cc1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.99</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(c(ccc1C(C)C)C)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 134.898,73.7273 L 125.862,68.5109' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.862,68.5109 L 116.826,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.826,63.2945 L 116.826,30.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 110.169,58.3012 L 110.169,34.999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 116.826,63.2945 L 87.9982,79.9389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 116.826,30.0056 L 87.9982,13.3612' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-2 atom-9' d='M 116.826,30.0056 L 139.891,16.6901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.9982,13.3612 L 59.1701,30.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 87.0029,21.6236 L 66.8232,33.2747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 59.1701,30.0056 L 59.1701,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 59.1701,63.2945 L 30.3597,80.0077' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 87.9982,79.9389 L 59.1701,63.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 87.0029,71.6765 L 66.8232,60.0254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 30.3597,80.0077 L 30.3974,106.639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 30.3597,80.0077 L 7.27273,66.7321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 135.564 76.6367\\nQ 135.564 74.373, 136.682 73.108\\nQ 137.801 71.8431, 139.891 71.8431\\nQ 141.982 71.8431, 143.1 73.108\\nQ 144.219 74.373, 144.219 76.6367\\nQ 144.219 78.9269, 143.087 80.2319\\nQ 141.955 81.5235, 139.891 81.5235\\nQ 137.814 81.5235, 136.682 80.2319\\nQ 135.564 78.9402, 135.564 76.6367\\nM 139.891 80.4582\\nQ 141.329 80.4582, 142.101 79.4995\\nQ 142.887 78.5275, 142.887 76.6367\\nQ 142.887 74.7858, 142.101 73.8537\\nQ 141.329 72.9083, 139.891 72.9083\\nQ 138.453 72.9083, 137.667 73.8404\\nQ 136.895 74.7725, 136.895 76.6367\\nQ 136.895 78.5408, 137.667 79.4995\\nQ 138.453 80.4582, 139.891 80.4582\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 145.35 71.9496\\nL 146.629 71.9496\\nL 146.629 75.9576\\nL 151.449 75.9576\\nL 151.449 71.9496\\nL 152.727 71.9496\\nL 152.727 81.377\\nL 151.449 81.377\\nL 151.449 77.0228\\nL 146.629 77.0228\\nL 146.629 81.377\\nL 145.35 81.377\\nL 145.35 71.9496\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.08, "data-ID": 1103, "mols2grid-id": 219, "mols2grid-tooltip": "<strong>Name</strong>: Carvacrol<br><strong>SMILES</strong>: Oc(c(ccc1C(C)C)C)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.08</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(C(CC1C2)(C2)C)C1(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 113.823,37.846 L 104.079,43.6001' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 104.079,43.6001 L 94.335,49.3542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 117.501,44.074 L 107.757,49.8281' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.757,49.8281 L 98.0128,55.5822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 96.1739,52.4682 L 65.0726,34.386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-8' d='M 96.1739,52.4682 L 96.1739,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 65.0726,34.386 L 80.0205,69.3449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 65.0726,34.386 L 34.2123,52.4682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-2 atom-7' d='M 65.0726,34.386 L 65.0726,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.0205,69.3449 L 65.0726,105.509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.0726,105.509 L 34.2123,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-4' d='M 96.1739,87.6681 L 65.0726,105.509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-5' d='M 34.2123,52.4682 L 34.2123,87.6681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-8 atom-9' d='M 96.1739,87.6681 L 106.879,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-10' d='M 96.1739,87.6681 L 115.886,66.4903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.385 37.7855\\nQ 116.385 35.3263, 117.6 33.952\\nQ 118.815 32.5778, 121.086 32.5778\\nQ 123.357 32.5778, 124.573 33.952\\nQ 125.788 35.3263, 125.788 37.7855\\nQ 125.788 40.2736, 124.558 41.6912\\nQ 123.328 43.0944, 121.086 43.0944\\nQ 118.83 43.0944, 117.6 41.6912\\nQ 116.385 40.288, 116.385 37.7855\\nM 121.086 41.9371\\nQ 122.649 41.9371, 123.488 40.8956\\nQ 124.341 39.8396, 124.341 37.7855\\nQ 124.341 35.7747, 123.488 34.7621\\nQ 122.649 33.7351, 121.086 33.7351\\nQ 119.524 33.7351, 118.671 34.7477\\nQ 117.832 35.7603, 117.832 37.7855\\nQ 117.832 39.8541, 118.671 40.8956\\nQ 119.524 41.9371, 121.086 41.9371\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.85, "data-ID": 1108, "mols2grid-id": 220, "mols2grid-tooltip": "<strong>Name</strong>: d-Fenchone<br><strong>SMILES</strong>: O=C(C(CC1C2)(C2)C)C1(C)C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.85</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(C(CCC1C)C(C)C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 117.453,100.309 L 107.542,94.5879' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 107.542,94.5879 L 97.6322,88.8666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 113.802,106.633 L 103.892,100.912' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 103.892,100.912 L 93.9813,95.1906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.8068,92.0286 L 95.8068,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-1 atom-10' d='M 95.8068,92.0286 L 64.1883,110.284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.8068,55.5177 L 64.1883,37.2622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 95.8068,55.5177 L 127.406,37.1868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.1883,37.2622 L 32.5699,55.5177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 32.5699,55.5177 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 32.5699,92.0286 L 7.27273,106.633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 64.1883,110.284 L 32.5699,92.0286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 127.406,37.1868 L 127.364,7.97806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 127.406,37.1868 L 152.727,51.7473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 116.358 106.662\\nQ 116.358 104.179, 117.584 102.792\\nQ 118.811 101.405, 121.104 101.405\\nQ 123.397 101.405, 124.624 102.792\\nQ 125.85 104.179, 125.85 106.662\\nQ 125.85 109.174, 124.609 110.605\\nQ 123.368 112.022, 121.104 112.022\\nQ 118.826 112.022, 117.584 110.605\\nQ 116.358 109.189, 116.358 106.662\\nM 121.104 110.854\\nQ 122.681 110.854, 123.528 109.802\\nQ 124.39 108.736, 124.39 106.662\\nQ 124.39 104.632, 123.528 103.61\\nQ 122.681 102.573, 121.104 102.573\\nQ 119.527 102.573, 118.665 103.595\\nQ 117.818 104.618, 117.818 106.662\\nQ 117.818 108.751, 118.665 109.802\\nQ 119.527 110.854, 121.104 110.854\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.49, "data-ID": 1113, "mols2grid-id": 221, "mols2grid-tooltip": "<strong>Name</strong>: l-Menthone<br><strong>SMILES</strong>: O=C(C(CCC1C)C(C)C)C1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.49</span>", "style-Solubility": "color: black"}, {"data-SMILES": "n(c(c(c(c1)C)ccc2)c2)c1C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 66.7159,103.729 L 79.5086,96.3415' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 79.5086,96.3415 L 92.3012,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 67.0573,95.4589 L 76.0121,90.2872' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 76.0121,90.2872 L 84.967,85.1156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 57.4536,103.761 L 44.4523,96.3574' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-0 atom-10' d='M 44.4523,96.3574 L 31.4511,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.3012,88.9534 L 92.3012,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-1 atom-9' d='M 92.3012,88.9534 L 122.513,106.401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.3012,54.062 L 62.0894,36.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 84.273,57.499 L 63.1247,45.2854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-2 atom-6' d='M 92.3012,54.062 L 122.513,36.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 62.0894,36.614 L 31.4511,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 62.0894,36.614 L 62.1733,8.64871' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 31.4511,88.9534 L 31.4511,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-4' d='M 38.4424,83.7197 L 38.4424,59.2957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 122.513,36.614 L 152.727,54.062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 123.549,45.2855 L 144.699,57.4992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 152.727,54.062 L 152.727,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 122.513,106.401 L 152.727,88.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-8' d='M 123.549,97.7299 L 144.699,85.5163' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 31.4511,88.9534 L 7.27273,103.008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 59.9011 101.452\\nL 63.1451 106.695\\nQ 63.4667 107.212, 63.984 108.149\\nQ 64.5014 109.086, 64.5294 109.142\\nL 64.5294 101.452\\nL 65.8437 101.452\\nL 65.8437 111.351\\nL 64.4874 111.351\\nL 61.0057 105.618\\nQ 60.6002 104.947, 60.1668 104.178\\nQ 59.7473 103.409, 59.6214 103.171\\nL 59.6214 111.351\\nL 58.335 111.351\\nL 58.335 101.452\\nL 59.9011 101.452\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -1.94, "data-ID": 1118, "mols2grid-id": 222, "mols2grid-tooltip": "<strong>Name</strong>: 2,4-Dimethylquinoline<br><strong>SMILES</strong>: n(c(c(c(c1)C)ccc2)c2)c1C<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.94</span>", "style-Solubility": "color: black"}, {"data-SMILES": "CCN(CC)c1c(cc(c(N)c1N(=O)=O)C(F)(F)F)N(=O)=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.3,111.018 L 112.504,101.275' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.504,101.275 L 112.519,91.1551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 112.519,91.1551 L 112.534,81.0349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 115.754,75.1515 L 124.686,70.0397' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.686,70.0397 L 133.617,64.9279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 109.326,75.1266 L 100.429,69.9658' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-2 atom-5' d='M 100.429,69.9658 L 91.5322,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 133.617,64.9279 L 150.402,74.69' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.5322,64.805 L 91.5322,40.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.6779,61.1642 L 86.6779,44.1741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-5' d='M 70.5131,76.9407 L 91.5322,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.5322,40.5334 L 70.5131,28.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 91.5322,40.5334 L 100.428,35.3726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-6 atom-19' d='M 100.428,35.3726 L 109.325,30.2119' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 70.5131,28.3976 L 49.4939,40.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.7874,34.4219 L 55.074,42.917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 49.4939,40.5334 L 49.4939,64.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-8 atom-15' d='M 49.4939,40.5334 L 28.4618,28.3912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.4939,64.805 L 42.6315,68.7667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 42.6315,68.7667 L 35.7692,72.7284' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 49.4939,64.805 L 70.5131,76.9407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 55.074,62.4214 L 69.7874,70.9164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.5131,76.9407 L 70.534,87.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 70.534,87.061 L 70.5549,97.1813' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 73.6554,103.005 L 78.7485,105.935' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 78.7485,105.935 L 83.8416,108.866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 66.2538,100.918 L 61.176,103.861' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 61.176,103.861 L 56.0982,106.805' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 68.6882,105.118 L 63.6104,108.061' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-14' d='M 63.6104,108.061 L 58.5327,111.004' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 28.4618,28.3912 L 28.4566,20.6437' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 28.4566,20.6437 L 28.4515,12.8962' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 28.4618,28.3912 L 21.3203,32.5173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 21.3203,32.5173 L 14.1788,36.6434' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 28.4618,28.3912 L 21.3162,24.2702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 21.3162,24.2702 L 14.1707,20.1492' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 112.533,24.4252 L 112.525,18.6626' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 112.525,18.6626 L 112.517,12.9001' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 114.421,32.2297 L 119.515,35.1592' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 119.515,35.1592 L 124.61,38.0888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 116.841,28.0215 L 121.935,30.9511' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 121.935,30.9511 L 127.03,33.8806' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 111.021 73.554\\nL 113.273 77.1948\\nQ 113.496 77.554, 113.856 78.2045\\nQ 114.215 78.8549, 114.234 78.8938\\nL 114.234 73.554\\nL 115.147 73.554\\nL 115.147 80.4277\\nL 114.205 80.4277\\nL 111.788 76.4472\\nQ 111.506 75.9812, 111.205 75.4472\\nQ 110.914 74.9132, 110.826 74.7482\\nL 110.826 80.4277\\nL 109.933 80.4277\\nL 109.933 73.554\\nL 111.021 73.554\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 20.5089 71.0767\\nL 21.441 71.0767\\nL 21.441 73.999\\nL 24.9555 73.999\\nL 24.9555 71.0767\\nL 25.8875 71.0767\\nL 25.8875 77.9504\\nL 24.9555 77.9504\\nL 24.9555 74.7757\\nL 21.441 74.7757\\nL 21.441 77.9504\\nL 20.5089 77.9504\\nL 20.5089 71.0767\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 26.2207 77.7093\\nQ 26.3873 77.28, 26.7846 77.0429\\nQ 27.1819 76.7994, 27.7329 76.7994\\nQ 28.4186 76.7994, 28.803 77.171\\nQ 29.1875 77.5427, 29.1875 78.2027\\nQ 29.1875 78.8755, 28.6877 79.5034\\nQ 28.1943 80.1314, 27.1691 80.8747\\nL 29.2644 80.8747\\nL 29.2644 81.3873\\nL 26.2079 81.3873\\nL 26.2079 80.958\\nQ 27.0537 80.3556, 27.5535 79.9071\\nQ 28.0597 79.4586, 28.3032 79.0549\\nQ 28.5467 78.6512, 28.5467 78.2347\\nQ 28.5467 77.799, 28.3288 77.5555\\nQ 28.111 77.312, 27.7329 77.312\\nQ 27.3677 77.312, 27.1242 77.4594\\nQ 26.8807 77.6067, 26.7077 77.9335\\nL 26.2207 77.7093\\n' fill='#0000FF'/>\\n<path class='atom-10' d='M 31.1576 71.0767\\nL 33.41 74.7175\\nQ 33.6332 75.0767, 33.9925 75.7272\\nQ 34.3517 76.3776, 34.3711 76.4165\\nL 34.3711 71.0767\\nL 35.2837 71.0767\\nL 35.2837 77.9504\\nL 34.342 77.9504\\nL 31.9245 73.9699\\nQ 31.643 73.5039, 31.342 72.9699\\nQ 31.0508 72.4359, 30.9634 72.2709\\nL 30.9634 77.9504\\nL 30.0702 77.9504\\nL 30.0702 71.0767\\nL 31.1576 71.0767\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 69.0438 97.7884\\nL 71.2962 101.429\\nQ 71.5195 101.788, 71.8787 102.439\\nQ 72.238 103.089, 72.2574 103.128\\nL 72.2574 97.7884\\nL 73.17 97.7884\\nL 73.17 104.662\\nL 72.2282 104.662\\nL 69.8108 100.682\\nQ 69.5293 100.216, 69.2283 99.6816\\nQ 68.937 99.1476, 68.8496 98.9825\\nL 68.8496 104.662\\nL 67.9565 104.662\\nL 67.9565 97.7884\\nL 69.0438 97.7884\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 73.7467 99.0274\\nL 74.9577 99.0274\\nL 74.9577 97.7523\\nL 75.496 97.7523\\nL 75.496 99.0274\\nL 76.7391 99.0274\\nL 76.7391 99.4887\\nL 75.496 99.4887\\nL 75.496 100.77\\nL 74.9577 100.77\\nL 74.9577 99.4887\\nL 73.7467 99.4887\\nL 73.7467 99.0274\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 84.2378 110.929\\nQ 84.2378 109.279, 85.0533 108.356\\nQ 85.8689 107.434, 87.3931 107.434\\nQ 88.9174 107.434, 89.7329 108.356\\nQ 90.5484 109.279, 90.5484 110.929\\nQ 90.5484 112.599, 89.7232 113.55\\nQ 88.898 114.492, 87.3931 114.492\\nQ 85.8786 114.492, 85.0533 113.55\\nQ 84.2378 112.609, 84.2378 110.929\\nM 87.3931 113.715\\nQ 88.4416 113.715, 89.0047 113.016\\nQ 89.5776 112.308, 89.5776 110.929\\nQ 89.5776 109.579, 89.0047 108.9\\nQ 88.4416 108.211, 87.3931 108.211\\nQ 86.3446 108.211, 85.7718 108.89\\nQ 85.2087 109.57, 85.2087 110.929\\nQ 85.2087 112.317, 85.7718 113.016\\nQ 86.3446 113.715, 87.3931 113.715\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 90.8688 108.556\\nL 93.2204 108.556\\nL 93.2204 109.068\\nL 90.8688 109.068\\nL 90.8688 108.556\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 50.6088 110.982\\nQ 50.6088 109.332, 51.4243 108.41\\nQ 52.2398 107.487, 53.7641 107.487\\nQ 55.2883 107.487, 56.1038 108.41\\nQ 56.9194 109.332, 56.9194 110.982\\nQ 56.9194 112.652, 56.0941 113.604\\nQ 55.2689 114.545, 53.7641 114.545\\nQ 52.2495 114.545, 51.4243 113.604\\nQ 50.6088 112.662, 50.6088 110.982\\nM 53.7641 113.769\\nQ 54.8126 113.769, 55.3757 113.07\\nQ 55.9485 112.361, 55.9485 110.982\\nQ 55.9485 109.633, 55.3757 108.953\\nQ 54.8126 108.264, 53.7641 108.264\\nQ 52.7155 108.264, 52.1427 108.944\\nQ 51.5796 109.623, 51.5796 110.982\\nQ 51.5796 112.371, 52.1427 113.07\\nQ 52.7155 113.769, 53.7641 113.769\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 26.4052 5.53707\\nL 30.4925 5.53707\\nL 30.4925 6.32347\\nL 27.3275 6.32347\\nL 27.3275 8.41082\\nL 30.143 8.41082\\nL 30.143 9.20693\\nL 27.3275 9.20693\\nL 27.3275 12.4108\\nL 26.4052 12.4108\\nL 26.4052 5.53707\\n' fill='#33CCCC'/>\\n<path class='atom-17' d='M 9.60603 34.6678\\nL 13.6934 34.6678\\nL 13.6934 35.4542\\nL 10.5284 35.4542\\nL 10.5284 37.5415\\nL 13.3439 37.5415\\nL 13.3439 38.3376\\nL 10.5284 38.3376\\nL 10.5284 41.5415\\nL 9.60603 41.5415\\nL 9.60603 34.6678\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 9.59794 15.2538\\nL 13.6853 15.2538\\nL 13.6853 16.0402\\nL 10.5203 16.0402\\nL 10.5203 18.1275\\nL 13.3358 18.1275\\nL 13.3358 18.9236\\nL 10.5203 18.9236\\nL 10.5203 22.1275\\nL 9.59794 22.1275\\nL 9.59794 15.2538\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 111.019 24.9106\\nL 113.271 28.5514\\nQ 113.495 28.9106, 113.854 29.561\\nQ 114.213 30.2115, 114.233 30.2504\\nL 114.233 24.9106\\nL 115.145 24.9106\\nL 115.145 31.7843\\nL 114.203 31.7843\\nL 111.786 27.8038\\nQ 111.504 27.3378, 111.204 26.8038\\nQ 110.912 26.2698, 110.825 26.1048\\nL 110.825 31.7843\\nL 109.932 31.7843\\nL 109.932 24.9106\\nL 111.019 24.9106\\n' fill='#0000FF'/>\\n<path class='atom-19' d='M 115.722 26.1496\\nL 116.933 26.1496\\nL 116.933 24.8745\\nL 117.471 24.8745\\nL 117.471 26.1496\\nL 118.714 26.1496\\nL 118.714 26.611\\nL 117.471 26.611\\nL 117.471 27.8925\\nL 116.933 27.8925\\nL 116.933 26.611\\nL 115.722 26.611\\nL 115.722 26.1496\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 109.356 8.94965\\nQ 109.356 7.29918, 110.171 6.37686\\nQ 110.987 5.45455, 112.511 5.45455\\nQ 114.035 5.45455, 114.851 6.37686\\nQ 115.666 7.29918, 115.666 8.94965\\nQ 115.666 10.6195, 114.841 11.571\\nQ 114.016 12.5127, 112.511 12.5127\\nQ 110.996 12.5127, 110.171 11.571\\nQ 109.356 10.6292, 109.356 8.94965\\nM 112.511 11.736\\nQ 113.559 11.736, 114.123 11.037\\nQ 114.695 10.3283, 114.695 8.94965\\nQ 114.695 7.60015, 114.123 6.92055\\nQ 113.559 6.23124, 112.511 6.23124\\nQ 111.462 6.23124, 110.89 6.91084\\nQ 110.326 7.59044, 110.326 8.94965\\nQ 110.326 10.338, 110.89 11.037\\nQ 111.462 11.736, 112.511 11.736\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 115.987 6.57647\\nL 118.338 6.57647\\nL 118.338 7.08909\\nL 115.987 7.08909\\nL 115.987 6.57647\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 126.216 38.0464\\nQ 126.216 36.3959, 127.032 35.4736\\nQ 127.847 34.5513, 129.372 34.5513\\nQ 130.896 34.5513, 131.711 35.4736\\nQ 132.527 36.3959, 132.527 38.0464\\nQ 132.527 39.7163, 131.702 40.6677\\nQ 130.876 41.6094, 129.372 41.6094\\nQ 127.857 41.6094, 127.032 40.6677\\nQ 126.216 39.726, 126.216 38.0464\\nM 129.372 40.8328\\nQ 130.42 40.8328, 130.983 40.1337\\nQ 131.556 39.425, 131.556 38.0464\\nQ 131.556 36.6969, 130.983 36.0173\\nQ 130.42 35.328, 129.372 35.328\\nQ 128.323 35.328, 127.75 36.0076\\nQ 127.187 36.6872, 127.187 38.0464\\nQ 127.187 39.4347, 127.75 40.1337\\nQ 128.323 40.8328, 129.372 40.8328\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.47, "data-ID": 1123, "mols2grid-id": 223, "mols2grid-tooltip": "<strong>Name</strong>: Dinitramine<br><strong>SMILES</strong>: CCN(CC)c1c(cc(c(N)c1N(=O)=O)C(F)(F)F)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.47</span>", "style-Solubility": "color: red"}, {"data-SMILES": "C1=CC(C2)C(C(=O)OC)C(C(=O)OC)C12", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 14.7396,55.3377 L 14.9326,67.7944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 18.1737,56.3066 L 11.4984,66.8255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-0' d='M 46.7946,40.7999 L 16.4566,55.8222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 13.2155,67.3099 L 40.3143,54.9381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 40.3143,54.9381 L 40.3143,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 40.3143,54.9381 L 68.2952,64.9529' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-3' d='M 46.7946,40.7999 L 40.3143,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 68.2952,64.9529 L 87.2088,87.8768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-4 atom-9' d='M 68.2952,64.9529 L 76.5438,51.1101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 84.4238,86.8349 L 81.1638,95.5483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 81.1638,95.5483 L 77.9037,104.262' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.9938,88.9188 L 86.7337,97.6323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 86.7337,97.6323 L 83.4737,106.346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 87.2088,87.8768 L 99.5775,85.8132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.5775,85.8132 L 111.946,83.7495' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 120.665,87.9641 L 126.177,94.6496' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.177,94.6496 L 131.689,101.335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 76.5438,51.1101 L 106.101,48.6599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-9 atom-14' d='M 76.5438,51.1101 L 46.7946,40.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 108.791,49.9268 L 112.685,41.6575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 112.685,41.6575 L 116.58,33.3881' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 103.411,47.393 L 107.305,39.1237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 107.305,39.1237 L 111.199,30.8543' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 106.101,48.6599 L 112.852,58.3743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 112.852,58.3743 L 119.603,68.0886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 127.54,72.719 L 137.162,71.9175' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 137.162,71.9175 L 146.785,71.116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 75.0074 110.18\\nQ 75.0074 108.158, 76.0065 107.028\\nQ 77.0057 105.898, 78.873 105.898\\nQ 80.7404 105.898, 81.7395 107.028\\nQ 82.7386 108.158, 82.7386 110.18\\nQ 82.7386 112.226, 81.7276 113.392\\nQ 80.7166 114.545, 78.873 114.545\\nQ 77.0175 114.545, 76.0065 113.392\\nQ 75.0074 112.238, 75.0074 110.18\\nM 78.873 113.594\\nQ 80.1576 113.594, 80.8475 112.738\\nQ 81.5492 111.869, 81.5492 110.18\\nQ 81.5492 108.527, 80.8475 107.694\\nQ 80.1576 106.85, 78.873 106.85\\nQ 77.5885 106.85, 76.8867 107.683\\nQ 76.1969 108.515, 76.1969 110.18\\nQ 76.1969 111.881, 76.8867 112.738\\nQ 77.5885 113.594, 78.873 113.594\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 112.69 83.0042\\nQ 112.69 80.9822, 113.689 79.8523\\nQ 114.688 78.7223, 116.556 78.7223\\nQ 118.423 78.7223, 119.422 79.8523\\nQ 120.421 80.9822, 120.421 83.0042\\nQ 120.421 85.05, 119.41 86.2156\\nQ 118.399 87.3694, 116.556 87.3694\\nQ 114.7 87.3694, 113.689 86.2156\\nQ 112.69 85.0619, 112.69 83.0042\\nM 116.556 86.4178\\nQ 117.84 86.4178, 118.53 85.5615\\nQ 119.232 84.6932, 119.232 83.0042\\nQ 119.232 81.3509, 118.53 80.5184\\nQ 117.84 79.6739, 116.556 79.6739\\nQ 115.271 79.6739, 114.569 80.5065\\nQ 113.879 81.339, 113.879 83.0042\\nQ 113.879 84.7051, 114.569 85.5615\\nQ 115.271 86.4178, 116.556 86.4178\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 112.371 27.1613\\nQ 112.371 25.1393, 113.37 24.0094\\nQ 114.369 22.8794, 116.236 22.8794\\nQ 118.104 22.8794, 119.103 24.0094\\nQ 120.102 25.1393, 120.102 27.1613\\nQ 120.102 29.2071, 119.091 30.3727\\nQ 118.08 31.5265, 116.236 31.5265\\nQ 114.381 31.5265, 113.37 30.3727\\nQ 112.371 29.219, 112.371 27.1613\\nM 116.236 30.5749\\nQ 117.521 30.5749, 118.211 29.7186\\nQ 118.913 28.8503, 118.913 27.1613\\nQ 118.913 25.508, 118.211 24.6754\\nQ 117.521 23.831, 116.236 23.831\\nQ 114.952 23.831, 114.25 24.6636\\nQ 113.56 25.4961, 113.56 27.1613\\nQ 113.56 28.8622, 114.25 29.7186\\nQ 114.952 30.5749, 116.236 30.5749\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 119.214 73.1143\\nQ 119.214 71.0923, 120.213 69.9623\\nQ 121.212 68.8324, 123.08 68.8324\\nQ 124.947 68.8324, 125.946 69.9623\\nQ 126.945 71.0923, 126.945 73.1143\\nQ 126.945 75.1601, 125.934 76.3257\\nQ 124.923 77.4794, 123.08 77.4794\\nQ 121.224 77.4794, 120.213 76.3257\\nQ 119.214 75.1719, 119.214 73.1143\\nM 123.08 76.5279\\nQ 124.364 76.5279, 125.054 75.6715\\nQ 125.756 74.8032, 125.756 73.1143\\nQ 125.756 71.461, 125.054 70.6284\\nQ 124.364 69.7839, 123.08 69.7839\\nQ 121.795 69.7839, 121.093 70.6165\\nQ 120.403 71.4491, 120.403 73.1143\\nQ 120.403 74.8151, 121.093 75.6715\\nQ 121.795 76.5279, 123.08 76.5279\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.2, "data-ID": 1128, "mols2grid-id": 224, "mols2grid-tooltip": "<strong>Name</strong>: Dimethyl_Carbate<br><strong>SMILES</strong>: C1=CC(C2)C(C(=O)OC)C(C(=O)OC)C12<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.2</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1S(=O)(=O)NC(=O)NCCCC", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 108.684,26.1546 L 108.684,12.3545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 105.924,24.0846 L 105.924,14.4246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 96.733,33.0546 L 108.684,26.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 108.684,12.3545 L 96.733,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.733,5.45455 L 84.7822,12.3545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 96.3204,8.87976 L 87.9548,13.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 84.7822,12.3545 L 84.7822,26.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 84.7822,26.1546 L 96.733,33.0546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.9548,24.7993 L 96.3204,29.6293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 96.733,33.0546 L 96.733,38.7267' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 96.733,38.7267 L 96.733,44.3987' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 97.6813,49.0023 L 100.554,50.6599' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 100.554,50.6599 L 103.427,52.3174' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 99.0606,46.6117 L 101.934,48.2692' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 101.934,48.2692 L 104.806,49.9268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 95.3542,49.3706 L 95.3558,52.456' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 95.3558,52.456 L 95.3573,55.5413' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 98.1142,49.3692 L 98.1158,52.4546' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 98.1158,52.4546 L 98.1173,55.5399' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-9' d='M 95.0258,47.8491 L 90.856,50.2602' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-9' d='M 90.856,50.2602 L 86.6863,52.6713' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.7794,56.2431 L 84.7794,61.9122' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 84.7794,61.9122 L 84.7794,67.5813' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 84.0898,68.7766 L 87.7585,70.8931' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 87.7585,70.8931 L 91.4272,73.0096' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.469,66.3859 L 89.1377,68.5024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 89.1377,68.5024 L 92.8064,70.6189' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 84.7794,67.5813 L 79.7812,70.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 79.7812,70.4713 L 74.7829,73.3612' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.8268,76.9615 L 72.8268,82.6311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.8268,82.6311 L 72.8268,88.3006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 72.8268,88.3006 L 60.8732,95.2116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 60.8732,95.2116 L 60.8732,109.019' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 60.8732,109.019 L 51.3162,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 95.533 48.3199\\nQ 95.581 48.3379, 95.779 48.4219\\nQ 95.977 48.5059, 96.193 48.5599\\nQ 96.415 48.6079, 96.631 48.6079\\nQ 97.033 48.6079, 97.267 48.4159\\nQ 97.501 48.2179, 97.501 47.8759\\nQ 97.501 47.6419, 97.381 47.4979\\nQ 97.267 47.3539, 97.087 47.2759\\nQ 96.907 47.1979, 96.607 47.1079\\nQ 96.229 46.9939, 96.001 46.8859\\nQ 95.779 46.7779, 95.617 46.5499\\nQ 95.461 46.3219, 95.461 45.9379\\nQ 95.461 45.4039, 95.821 45.0739\\nQ 96.187 44.7439, 96.907 44.7439\\nQ 97.399 44.7439, 97.957 44.9779\\nL 97.819 45.4399\\nQ 97.309 45.2299, 96.925 45.2299\\nQ 96.511 45.2299, 96.283 45.4039\\nQ 96.055 45.5719, 96.061 45.8659\\nQ 96.061 46.0939, 96.175 46.2319\\nQ 96.295 46.3699, 96.463 46.4479\\nQ 96.637 46.5259, 96.925 46.6159\\nQ 97.309 46.7359, 97.537 46.8559\\nQ 97.765 46.9759, 97.927 47.2219\\nQ 98.095 47.4619, 98.095 47.8759\\nQ 98.095 48.4639, 97.699 48.7819\\nQ 97.309 49.0939, 96.655 49.0939\\nQ 96.277 49.0939, 95.989 49.0099\\nQ 95.707 48.9319, 95.371 48.7939\\nL 95.533 48.3199\\n' fill='#CCCC00'/>\\n<path class='atom-7' d='M 104.345 52.3912\\nQ 104.345 51.3712, 104.849 50.8012\\nQ 105.353 50.2312, 106.295 50.2312\\nQ 107.237 50.2312, 107.741 50.8012\\nQ 108.245 51.3712, 108.245 52.3912\\nQ 108.245 53.4232, 107.735 54.0112\\nQ 107.225 54.5932, 106.295 54.5932\\nQ 105.359 54.5932, 104.849 54.0112\\nQ 104.345 53.4292, 104.345 52.3912\\nM 106.295 54.1132\\nQ 106.943 54.1132, 107.291 53.6812\\nQ 107.645 53.2432, 107.645 52.3912\\nQ 107.645 51.5572, 107.291 51.1372\\nQ 106.943 50.7112, 106.295 50.7112\\nQ 105.647 50.7112, 105.293 51.1312\\nQ 104.945 51.5512, 104.945 52.3912\\nQ 104.945 53.2492, 105.293 53.6812\\nQ 105.647 54.1132, 106.295 54.1132\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 94.7885 57.9139\\nQ 94.7885 56.8939, 95.2925 56.3239\\nQ 95.7965 55.7539, 96.7385 55.7539\\nQ 97.6805 55.7539, 98.1845 56.3239\\nQ 98.6885 56.8939, 98.6885 57.9139\\nQ 98.6885 58.9459, 98.1785 59.5339\\nQ 97.6685 60.1159, 96.7385 60.1159\\nQ 95.8025 60.1159, 95.2925 59.5339\\nQ 94.7885 58.9519, 94.7885 57.9139\\nM 96.7385 59.6359\\nQ 97.3865 59.6359, 97.7345 59.2039\\nQ 98.0885 58.7659, 98.0885 57.9139\\nQ 98.0885 57.0799, 97.7345 56.6599\\nQ 97.3865 56.2339, 96.7385 56.2339\\nQ 96.0905 56.2339, 95.7365 56.6539\\nQ 95.3885 57.0739, 95.3885 57.9139\\nQ 95.3885 58.7719, 95.7365 59.2039\\nQ 96.0905 59.6359, 96.7385 59.6359\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 79.3464 51.6499\\nL 79.9224 51.6499\\nL 79.9224 53.4559\\nL 82.0944 53.4559\\nL 82.0944 51.6499\\nL 82.6704 51.6499\\nL 82.6704 55.8979\\nL 82.0944 55.8979\\nL 82.0944 53.9359\\nL 79.9224 53.9359\\nL 79.9224 55.8979\\nL 79.3464 55.8979\\nL 79.3464 51.6499\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 83.8404 51.6499\\nL 85.2324 53.8999\\nQ 85.3704 54.1219, 85.5924 54.5239\\nQ 85.8144 54.9259, 85.8264 54.9499\\nL 85.8264 51.6499\\nL 86.3904 51.6499\\nL 86.3904 55.8979\\nL 85.8084 55.8979\\nL 84.3144 53.4379\\nQ 84.1404 53.1499, 83.9544 52.8199\\nQ 83.7744 52.4899, 83.7204 52.3879\\nL 83.7204 55.8979\\nL 83.1684 55.8979\\nL 83.1684 51.6499\\nL 83.8404 51.6499\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 92.3928 73.1105\\nQ 92.3928 72.0905, 92.8968 71.5205\\nQ 93.4008 70.9505, 94.3428 70.9505\\nQ 95.2848 70.9505, 95.7888 71.5205\\nQ 96.2928 72.0905, 96.2928 73.1105\\nQ 96.2928 74.1425, 95.7828 74.7305\\nQ 95.2728 75.3125, 94.3428 75.3125\\nQ 93.4068 75.3125, 92.8968 74.7305\\nQ 92.3928 74.1485, 92.3928 73.1105\\nM 94.3428 74.8325\\nQ 94.9908 74.8325, 95.3388 74.4005\\nQ 95.6928 73.9625, 95.6928 73.1105\\nQ 95.6928 72.2765, 95.3388 71.8565\\nQ 94.9908 71.4305, 94.3428 71.4305\\nQ 93.6948 71.4305, 93.3408 71.8505\\nQ 92.9928 72.2705, 92.9928 73.1105\\nQ 92.9928 73.9685, 93.3408 74.4005\\nQ 93.6948 74.8325, 94.3428 74.8325\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 67.3938 72.3683\\nL 67.9698 72.3683\\nL 67.9698 74.1743\\nL 70.1418 74.1743\\nL 70.1418 72.3683\\nL 70.7178 72.3683\\nL 70.7178 76.6163\\nL 70.1418 76.6163\\nL 70.1418 74.6543\\nL 67.9698 74.6543\\nL 67.9698 76.6163\\nL 67.3938 76.6163\\nL 67.3938 72.3683\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 71.8878 72.3683\\nL 73.2798 74.6183\\nQ 73.4178 74.8403, 73.6398 75.2423\\nQ 73.8618 75.6443, 73.8738 75.6683\\nL 73.8738 72.3683\\nL 74.4378 72.3683\\nL 74.4378 76.6163\\nL 73.8558 76.6163\\nL 72.3618 74.1563\\nQ 72.1878 73.8683, 72.0018 73.5383\\nQ 71.8218 73.2083, 71.7678 73.1063\\nL 71.7678 76.6163\\nL 71.2158 76.6163\\nL 71.2158 72.3683\\nL 71.8878 72.3683\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -3.05, "data-ID": 1133, "mols2grid-id": 225, "mols2grid-tooltip": "<strong>Name</strong>: Phenbutamide<br><strong>SMILES</strong>: c1ccccc1S(=O)(=O)NC(=O)NCCCC<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.05</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCCc1c(C)nc(NCC)nc1O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 147.505,114.545 L 147.531,96.1964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 147.531,96.1964 L 127.68,84.6808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.68,84.6808 L 127.714,61.7323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 127.714,61.7323 L 107.862,50.2167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.862,50.2167 L 107.862,27.2804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 103.274,46.7763 L 103.274,30.7209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 87.9987,61.6849 L 107.862,50.2167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 107.862,27.2804 L 123.753,18.1059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 107.862,27.2804 L 99.4485,22.423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 99.4485,22.423 L 91.0354,17.5656' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.9619,17.5656 L 76.5489,22.423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 76.5489,22.423 L 68.1358,27.2804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.7317,22.9955 L 78.8425,26.3957' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.8425,26.3957 L 72.9534,29.7959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 68.1358,27.2804 L 59.7053,22.4365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 59.7053,22.4365 L 51.2749,17.5925' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 68.1358,27.2804 L 68.1358,36.838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 68.1358,36.838 L 68.1358,46.3956' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 45.2007,17.6065 L 36.7901,22.4779' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 36.7901,22.4779 L 28.3795,27.3492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 28.3795,27.3492 L 12.4694,18.2084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 71.1726,51.9701 L 79.5856,56.8275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 79.5856,56.8275 L 87.9987,61.6849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.9902,49.4546 L 81.8793,52.8548' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 81.8793,52.8548 L 87.7684,56.255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.9987,61.6849 L 87.9987,68.9878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.9987,68.9878 L 87.9987,76.2907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 86.5628 12.5645\\nL 88.6913 16.0049\\nQ 88.9023 16.3444, 89.2418 16.9591\\nQ 89.5813 17.5738, 89.5996 17.6105\\nL 89.5996 12.5645\\nL 90.462 12.5645\\nL 90.462 19.0601\\nL 89.5721 19.0601\\nL 87.2876 15.2985\\nQ 87.0216 14.8581, 86.7372 14.3535\\nQ 86.4619 13.8489, 86.3794 13.693\\nL 86.3794 19.0601\\nL 85.5353 19.0601\\nL 85.5353 12.5645\\nL 86.5628 12.5645\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 46.802 12.5997\\nL 48.9305 16.0401\\nQ 49.1415 16.3796, 49.4809 16.9943\\nQ 49.8204 17.609, 49.8388 17.6457\\nL 49.8388 12.5997\\nL 50.7012 12.5997\\nL 50.7012 19.0952\\nL 49.8112 19.0952\\nL 47.5268 15.3337\\nQ 47.2607 14.8933, 46.9763 14.3887\\nQ 46.7011 13.8841, 46.6185 13.7281\\nL 46.6185 19.0952\\nL 45.7744 19.0952\\nL 45.7744 12.5997\\nL 46.802 12.5997\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 45.6965 5.45455\\nL 46.5772 5.45455\\nL 46.5772 8.21608\\nL 49.8984 8.21608\\nL 49.8984 5.45455\\nL 50.7791 5.45455\\nL 50.7791 11.9501\\nL 49.8984 11.9501\\nL 49.8984 8.95004\\nL 46.5772 8.95004\\nL 46.5772 11.9501\\nL 45.6965 11.9501\\nL 45.6965 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 66.7 46.969\\nL 68.8285 50.4094\\nQ 69.0395 50.7489, 69.379 51.3636\\nQ 69.7184 51.9783, 69.7368 52.015\\nL 69.7368 46.969\\nL 70.5992 46.969\\nL 70.5992 53.4645\\nL 69.7092 53.4645\\nL 67.4248 49.703\\nQ 67.1587 49.2626, 66.8743 48.758\\nQ 66.5991 48.2534, 66.5165 48.0974\\nL 66.5165 53.4645\\nL 65.6725 53.4645\\nL 65.6725 46.969\\nL 66.7 46.969\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 85.0169 80.0523\\nQ 85.0169 78.4926, 85.7876 77.6211\\nQ 86.5583 76.7495, 87.9987 76.7495\\nQ 89.4391 76.7495, 90.2097 77.6211\\nQ 90.9804 78.4926, 90.9804 80.0523\\nQ 90.9804 81.6303, 90.2005 82.5294\\nQ 89.4207 83.4194, 87.9987 83.4194\\nQ 86.5674 83.4194, 85.7876 82.5294\\nQ 85.0169 81.6395, 85.0169 80.0523\\nM 87.9987 82.6854\\nQ 88.9895 82.6854, 89.5216 82.0248\\nQ 90.0629 81.3551, 90.0629 80.0523\\nQ 90.0629 78.777, 89.5216 78.1348\\nQ 88.9895 77.4834, 87.9987 77.4834\\nQ 87.0078 77.4834, 86.4665 78.1256\\nQ 85.9344 78.7679, 85.9344 80.0523\\nQ 85.9344 81.3643, 86.4665 82.0248\\nQ 87.0078 82.6854, 87.9987 82.6854\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 91.7602 76.8229\\nL 92.641 76.8229\\nL 92.641 79.5844\\nL 95.9621 79.5844\\nL 95.9621 76.8229\\nL 96.8429 76.8229\\nL 96.8429 83.3184\\nL 95.9621 83.3184\\nL 95.9621 80.3184\\nL 92.641 80.3184\\nL 92.641 83.3184\\nL 91.7602 83.3184\\nL 91.7602 76.8229\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.02, "data-ID": 1138, "mols2grid-id": 226, "mols2grid-tooltip": "<strong>Name</strong>: Ethirimol<br><strong>SMILES</strong>: CCCCc1c(C)nc(NCC)nc1O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.02</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc2C(=O)C(Cl)=C(NC(=O)C(Cl)Cl)C(=O)c2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 18.6744,65.1664 L 18.6744,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 22.7138,68.1903 L 22.7138,82.3018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-0' d='M 36.3764,55.0854 L 18.6744,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 18.6744,85.3257 L 36.3764,95.4067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.3764,95.4067 L 53.8321,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 36.9746,90.3966 L 49.1936,83.3399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 53.8321,85.3257 L 71.2877,95.4067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-3' d='M 53.8321,65.1664 L 53.8321,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.268,95.4067 L 69.268,101.837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 69.268,101.837 L 69.268,108.268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3074,95.4067 L 73.3074,101.837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.3074,101.837 L 73.3074,108.268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-6' d='M 71.2877,95.4067 L 88.7446,85.3257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 88.7446,85.3257 L 94.4362,88.6118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 94.4362,88.6118 L 100.128,91.8979' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 90.7643,85.3257 L 86.7249,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 86.7249,85.3257 L 90.7643,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.7446,65.1664 L 96.1474,60.872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 96.1474,60.872 L 103.55,56.5776' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-8 atom-15' d='M 88.7446,65.1664 L 71.2877,55.0854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.22,51.661 L 106.208,43.239' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 106.208,43.239 L 106.196,34.817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 107.203,33.0661 L 101.714,29.9099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 101.714,29.9099 L 96.2253,26.7536' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 105.189,36.5679 L 99.7006,33.4116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 99.7006,33.4116 L 94.2117,30.2554' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 106.196,34.817 L 123.676,24.6781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.676,24.6781 L 123.667,18.3705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 123.667,18.3705 L 123.658,12.063' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 123.676,24.6781 L 129.374,27.9545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 129.374,27.9545 L 135.073,31.2309' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 73.3074,55.0854 L 73.3074,48.6991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 73.3074,48.6991 L 73.3074,42.3128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 69.268,55.0854 L 69.268,48.6991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 69.268,48.6991 L 69.268,42.3128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 71.2877,55.0854 L 53.8321,65.1664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 53.8321,65.1664 L 36.3764,55.0854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 49.1936,67.1522 L 36.9746,60.0955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-5' d='M 68.6621 111.581\\nQ 68.6621 110.207, 69.3407 109.44\\nQ 70.0193 108.672, 71.2877 108.672\\nQ 72.556 108.672, 73.2347 109.44\\nQ 73.9133 110.207, 73.9133 111.581\\nQ 73.9133 112.97, 73.2266 113.762\\nQ 72.5399 114.545, 71.2877 114.545\\nQ 70.0274 114.545, 69.3407 113.762\\nQ 68.6621 112.978, 68.6621 111.581\\nM 71.2877 113.899\\nQ 72.1602 113.899, 72.6288 113.317\\nQ 73.1054 112.728, 73.1054 111.581\\nQ 73.1054 110.458, 72.6288 109.892\\nQ 72.1602 109.318, 71.2877 109.318\\nQ 70.4152 109.318, 69.9385 109.884\\nQ 69.4699 110.449, 69.4699 111.581\\nQ 69.4699 112.736, 69.9385 113.317\\nQ 70.4152 113.899, 71.2877 113.899\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 100.532 93.6025\\nQ 100.532 92.1806, 101.194 91.4374\\nQ 101.865 90.686, 103.133 90.686\\nQ 104.313 90.686, 104.943 91.5181\\nL 104.409 91.9544\\nQ 103.949 91.3485, 103.133 91.3485\\nQ 102.269 91.3485, 101.808 91.9302\\nQ 101.356 92.5038, 101.356 93.6025\\nQ 101.356 94.7335, 101.824 95.3152\\nQ 102.301 95.8969, 103.222 95.8969\\nQ 103.852 95.8969, 104.587 95.5172\\nL 104.813 96.1231\\nQ 104.514 96.317, 104.062 96.4301\\nQ 103.61 96.5432, 103.109 96.5432\\nQ 101.865 96.5432, 101.194 95.7838\\nQ 100.532 95.0243, 100.532 93.6025\\n' fill='#00CC00'/>\\n<path class='atom-7' d='M 105.637 90.3386\\nL 106.381 90.3386\\nL 106.381 96.4705\\nL 105.637 96.4705\\nL 105.637 90.3386\\n' fill='#00CC00'/>\\n<path class='atom-9' d='M 104.96 52.1662\\nL 106.834 55.1958\\nQ 107.02 55.4947, 107.319 56.036\\nQ 107.618 56.5773, 107.634 56.6096\\nL 107.634 52.1662\\nL 108.394 52.1662\\nL 108.394 57.886\\nL 107.61 57.886\\nL 105.598 54.5737\\nQ 105.364 54.1859, 105.114 53.7416\\nQ 104.871 53.2973, 104.799 53.1599\\nL 104.799 57.886\\nL 104.055 57.886\\nL 104.055 52.1662\\nL 104.96 52.1662\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 109.08 52.1662\\nL 109.856 52.1662\\nL 109.856 54.598\\nL 112.78 54.598\\nL 112.78 52.1662\\nL 113.556 52.1662\\nL 113.556 57.886\\nL 112.78 57.886\\nL 112.78 55.2443\\nL 109.856 55.2443\\nL 109.856 57.886\\nL 109.08 57.886\\nL 109.08 52.1662\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 89.5633 26.7786\\nQ 89.5633 25.4052, 90.2419 24.6377\\nQ 90.9205 23.8702, 92.1889 23.8702\\nQ 93.4573 23.8702, 94.1359 24.6377\\nQ 94.8145 25.4052, 94.8145 26.7786\\nQ 94.8145 28.1681, 94.1278 28.9599\\nQ 93.4411 29.7435, 92.1889 29.7435\\nQ 90.9286 29.7435, 90.2419 28.9599\\nQ 89.5633 28.1762, 89.5633 26.7786\\nM 92.1889 29.0972\\nQ 93.0614 29.0972, 93.53 28.5155\\nQ 94.0066 27.9258, 94.0066 26.7786\\nQ 94.0066 25.6556, 93.53 25.0901\\nQ 93.0614 24.5165, 92.1889 24.5165\\nQ 91.3164 24.5165, 90.8397 25.082\\nQ 90.3712 25.6475, 90.3712 26.7786\\nQ 90.3712 27.9338, 90.8397 28.5155\\nQ 91.3164 29.0972, 92.1889 29.0972\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 121.448 8.71839\\nQ 121.448 7.29651, 122.11 6.55326\\nQ 122.781 5.80193, 124.049 5.80193\\nQ 125.229 5.80193, 125.859 6.63405\\nL 125.326 7.07031\\nQ 124.865 6.4644, 124.049 6.4644\\nQ 123.185 6.4644, 122.724 7.04607\\nQ 122.272 7.61967, 122.272 8.71839\\nQ 122.272 9.84942, 122.74 10.4311\\nQ 123.217 11.0128, 124.138 11.0128\\nQ 124.768 11.0128, 125.503 10.6331\\nL 125.729 11.239\\nQ 125.431 11.4329, 124.978 11.546\\nQ 124.526 11.6591, 124.025 11.6591\\nQ 122.781 11.6591, 122.11 10.8997\\nQ 121.448 10.1403, 121.448 8.71839\\n' fill='#00CC00'/>\\n<path class='atom-13' d='M 126.553 5.45455\\nL 127.297 5.45455\\nL 127.297 11.5864\\nL 126.553 11.5864\\nL 126.553 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 135.477 32.9292\\nQ 135.477 31.5074, 136.139 30.7641\\nQ 136.81 30.0128, 138.078 30.0128\\nQ 139.257 30.0128, 139.888 30.8449\\nL 139.354 31.2812\\nQ 138.894 30.6753, 138.078 30.6753\\nQ 137.213 30.6753, 136.753 31.2569\\nQ 136.301 31.8305, 136.301 32.9292\\nQ 136.301 34.0603, 136.769 34.642\\nQ 137.246 35.2236, 138.167 35.2236\\nQ 138.797 35.2236, 139.532 34.8439\\nL 139.758 35.4498\\nQ 139.459 35.6437, 139.007 35.7568\\nQ 138.555 35.8699, 138.054 35.8699\\nQ 136.81 35.8699, 136.139 35.1105\\nQ 135.477 34.3511, 135.477 32.9292\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 140.582 29.6654\\nL 141.326 29.6654\\nL 141.326 35.7972\\nL 140.582 35.7972\\nL 140.582 29.6654\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 68.6621 38.9439\\nQ 68.6621 37.5705, 69.3407 36.803\\nQ 70.0193 36.0355, 71.2877 36.0355\\nQ 72.556 36.0355, 73.2347 36.803\\nQ 73.9133 37.5705, 73.9133 38.9439\\nQ 73.9133 40.3335, 73.2266 41.1252\\nQ 72.5399 41.9088, 71.2877 41.9088\\nQ 70.0274 41.9088, 69.3407 41.1252\\nQ 68.6621 40.3416, 68.6621 38.9439\\nM 71.2877 41.2625\\nQ 72.1602 41.2625, 72.6288 40.6809\\nQ 73.1054 40.0911, 73.1054 38.9439\\nQ 73.1054 37.821, 72.6288 37.2554\\nQ 72.1602 36.6819, 71.2877 36.6819\\nQ 70.4152 36.6819, 69.9385 37.2474\\nQ 69.4699 37.8129, 69.4699 38.9439\\nQ 69.4699 40.0992, 69.9385 40.6809\\nQ 70.4152 41.2625, 71.2877 41.2625\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.03, "data-ID": 1143, "mols2grid-id": 227, "mols2grid-tooltip": "<strong>Name</strong>: Quinonamid<br><strong>SMILES</strong>: c1ccc2C(=O)C(Cl)=C(NC(=O)C(Cl)Cl)C(=O)c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.03</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C1C=CC(c2cc(ccc2O)O)(C=C1)O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 144.906,65.779 L 137.36,61.4225' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 137.36,61.4225 L 129.814,57.0659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 142.126,70.5946 L 134.58,66.238' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.58,66.238 L 127.033,61.8814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 128.423,59.4736 L 128.423,31.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-1' d='M 104.347,73.3746 L 128.423,59.4736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 129.814,29.264 L 102.957,20.1785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 127.033,34.0794 L 105.737,15.3631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.347,17.7708 L 80.2706,31.6717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 80.2706,31.6717 L 56.8392,45.9471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-4 atom-13' d='M 80.2706,31.6717 L 80.2706,59.4736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-4 atom-15' d='M 80.2706,31.6717 L 80.4764,22.8836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-4 atom-15' d='M 80.4764,22.8836 L 80.6823,14.0954' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.8392,45.9471 L 57.4953,73.7415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 51.3788,50.2475 L 51.838,69.7036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-5' d='M 32.4421,32.6188 L 56.8392,45.9471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.4953,73.7415 L 33.7543,88.2059' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 33.7543,88.2059 L 9.3554,74.8777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 32.7601,81.3269 L 15.6809,71.9972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-12' d='M 33.7543,88.2059 L 33.9631,97.0553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-7 atom-12' d='M 33.9631,97.0553 L 34.1718,105.905' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 9.3554,74.8777 L 8.69927,47.0832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 8.69927,47.0832 L 32.4421,32.6188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 15.1536,49.6622 L 31.7736,39.5371' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 32.4421,32.6188 L 32.234,23.8307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 32.234,23.8307 L 32.026,15.0425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 78.8805,61.8813 L 105.737,70.9669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 81.6607,57.0659 L 102.957,75.7823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 144.072 70.6166\\nQ 144.072 68.7261, 145.006 67.6696\\nQ 145.941 66.6131, 147.686 66.6131\\nQ 149.432 66.6131, 150.367 67.6696\\nQ 151.301 68.7261, 151.301 70.6166\\nQ 151.301 72.5294, 150.355 73.6192\\nQ 149.41 74.6979, 147.686 74.6979\\nQ 145.952 74.6979, 145.006 73.6192\\nQ 144.072 72.5405, 144.072 70.6166\\nM 147.686 73.8083\\nQ 148.888 73.8083, 149.533 73.0076\\nQ 150.189 72.1958, 150.189 70.6166\\nQ 150.189 69.0708, 149.533 68.2924\\nQ 148.888 67.5028, 147.686 67.5028\\nQ 146.485 67.5028, 145.829 68.2813\\nQ 145.184 69.0597, 145.184 70.6166\\nQ 145.184 72.2069, 145.829 73.0076\\nQ 146.485 73.8083, 147.686 73.8083\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 28.3015 10.4051\\nQ 28.3015 8.51461, 29.2356 7.45813\\nQ 30.1697 6.40166, 31.9157 6.40166\\nQ 33.6617 6.40166, 34.5958 7.45813\\nQ 35.53 8.51461, 35.53 10.4051\\nQ 35.53 12.3179, 34.5847 13.4077\\nQ 33.6394 14.4865, 31.9157 14.4865\\nQ 30.1809 14.4865, 29.2356 13.4077\\nQ 28.3015 12.329, 28.3015 10.4051\\nM 31.9157 13.5968\\nQ 33.1167 13.5968, 33.7618 12.7961\\nQ 34.4179 11.9843, 34.4179 10.4051\\nQ 34.4179 8.85935, 33.7618 8.0809\\nQ 33.1167 7.29132, 31.9157 7.29132\\nQ 30.7147 7.29132, 30.0585 8.06978\\nQ 29.4135 8.84823, 29.4135 10.4051\\nQ 29.4135 11.9954, 30.0585 12.7961\\nQ 30.7147 13.5968, 31.9157 13.5968\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 36.4752 6.49063\\nL 37.5428 6.49063\\nL 37.5428 9.83798\\nL 41.5685 9.83798\\nL 41.5685 6.49063\\nL 42.6361 6.49063\\nL 42.6361 14.3641\\nL 41.5685 14.3641\\nL 41.5685 10.7276\\nL 37.5428 10.7276\\nL 37.5428 14.3641\\nL 36.4752 14.3641\\nL 36.4752 6.49063\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 30.6646 110.464\\nQ 30.6646 108.574, 31.5988 107.517\\nQ 32.5329 106.461, 34.2789 106.461\\nQ 36.0248 106.461, 36.959 107.517\\nQ 37.8931 108.574, 37.8931 110.464\\nQ 37.8931 112.377, 36.9478 113.467\\nQ 36.0026 114.545, 34.2789 114.545\\nQ 32.544 114.545, 31.5988 113.467\\nQ 30.6646 112.388, 30.6646 110.464\\nM 34.2789 113.656\\nQ 35.4799 113.656, 36.1249 112.855\\nQ 36.781 112.043, 36.781 110.464\\nQ 36.781 108.918, 36.1249 108.14\\nQ 35.4799 107.35, 34.2789 107.35\\nQ 33.0778 107.35, 32.4217 108.129\\nQ 31.7767 108.907, 31.7767 110.464\\nQ 31.7767 112.054, 32.4217 112.855\\nQ 33.0778 113.656, 34.2789 113.656\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 38.8384 106.55\\nL 39.906 106.55\\nL 39.906 109.897\\nL 43.9317 109.897\\nL 43.9317 106.55\\nL 44.9993 106.55\\nL 44.9993 114.423\\nL 43.9317 114.423\\nL 43.9317 110.787\\nL 39.906 110.787\\nL 39.906 114.423\\nL 38.8384 114.423\\nL 38.8384 106.55\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 77.1772 9.45802\\nQ 77.1772 7.56749, 78.1113 6.51102\\nQ 79.0455 5.45455, 80.7914 5.45455\\nQ 82.5374 5.45455, 83.4715 6.51102\\nQ 84.4057 7.56749, 84.4057 9.45802\\nQ 84.4057 11.3708, 83.4604 12.4606\\nQ 82.5151 13.5393, 80.7914 13.5393\\nQ 79.0566 13.5393, 78.1113 12.4606\\nQ 77.1772 11.3819, 77.1772 9.45802\\nM 80.7914 12.6497\\nQ 81.9925 12.6497, 82.6375 11.849\\nQ 83.2936 11.0372, 83.2936 9.45802\\nQ 83.2936 7.91223, 82.6375 7.13378\\nQ 81.9925 6.34421, 80.7914 6.34421\\nQ 79.5904 6.34421, 78.9343 7.12266\\nQ 78.2893 7.90111, 78.2893 9.45802\\nQ 78.2893 11.0483, 78.9343 11.849\\nQ 79.5904 12.6497, 80.7914 12.6497\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 85.3509 5.54351\\nL 86.4185 5.54351\\nL 86.4185 8.89086\\nL 90.4442 8.89086\\nL 90.4442 5.54351\\nL 91.5118 5.54351\\nL 91.5118 13.417\\nL 90.4442 13.417\\nL 90.4442 9.78052\\nL 86.4185 9.78052\\nL 86.4185 13.417\\nL 85.3509 13.417\\nL 85.3509 5.54351\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -1.73, "data-ID": 1148, "mols2grid-id": 228, "mols2grid-tooltip": "<strong>Name</strong>: Quinhydrone<br><strong>SMILES</strong>: O=C1C=CC(c2cc(ccc2O)O)(C=C1)O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-1.73</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccc2c(CC(CC)N)cn(H)c2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 15.8727,24.5704 L 15.8727,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 20.9232,28.3457 L 20.9232,45.9636' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-0' d='M 37.9721,11.6798 L 15.8727,24.5704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 15.8727,49.7389 L 37.9721,62.6295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 37.9721,62.6295 L 59.7651,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 38.6698,56.3489 L 53.9249,47.3255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 59.7651,49.7389 L 83.7062,57.4123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-3' d='M 59.7651,24.5704 L 59.7651,49.7389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 83.7062,57.4123 L 91.6473,81.3534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 83.7062,57.4123 L 98.4386,36.8482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-4 atom-10' d='M 81.8105,51.3863 L 92.1231,36.9915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 91.6473,81.3534 L 116.39,86.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 116.39,86.4713 L 124.344,110.453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 116.39,86.4713 L 121.497,80.7332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-9' d='M 121.497,80.7332 L 126.604,74.9951' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 124.344,110.453 L 144.127,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 98.4386,36.8482 L 92.6216,28.9705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 92.6216,28.9705 L 86.8045,21.0928' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 80.3656,17.9677 L 70.0653,21.2691' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 70.0653,21.2691 L 59.7651,24.5704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 59.7651,24.5704 L 37.9721,11.6798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 53.9249,26.9838 L 38.6698,17.9604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 128.24 67.8046\\nL 130.583 71.5925\\nQ 130.816 71.9662, 131.19 72.643\\nQ 131.563 73.3197, 131.583 73.3601\\nL 131.583 67.8046\\nL 132.533 67.8046\\nL 132.533 74.9561\\nL 131.553 74.9561\\nL 129.038 70.8147\\nQ 128.745 70.3298, 128.432 69.7743\\nQ 128.129 69.2187, 128.038 69.047\\nL 128.038 74.9561\\nL 127.109 74.9561\\nL 127.109 67.8046\\nL 128.24 67.8046\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 133.392 67.8046\\nL 134.361 67.8046\\nL 134.361 70.845\\nL 138.018 70.845\\nL 138.018 67.8046\\nL 138.988 67.8046\\nL 138.988 74.9561\\nL 138.018 74.9561\\nL 138.018 71.6531\\nL 134.361 71.6531\\nL 134.361 74.9561\\nL 133.392 74.9561\\nL 133.392 67.8046\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 139.334 74.7052\\nQ 139.508 74.2585, 139.921 74.0119\\nQ 140.334 73.7585, 140.908 73.7585\\nQ 141.621 73.7585, 142.021 74.1452\\nQ 142.421 74.5319, 142.421 75.2185\\nQ 142.421 75.9185, 141.901 76.5719\\nQ 141.388 77.2252, 140.321 77.9985\\nL 142.501 77.9985\\nL 142.501 78.5319\\nL 139.321 78.5319\\nL 139.321 78.0852\\nQ 140.201 77.4585, 140.721 76.9919\\nQ 141.248 76.5252, 141.501 76.1052\\nQ 141.754 75.6852, 141.754 75.2519\\nQ 141.754 74.7985, 141.528 74.5452\\nQ 141.301 74.2919, 140.908 74.2919\\nQ 140.528 74.2919, 140.274 74.4452\\nQ 140.021 74.5985, 139.841 74.9385\\nL 139.334 74.7052\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 82.1254 13.3212\\nL 84.4689 17.1091\\nQ 84.7012 17.4829, 85.0749 18.1596\\nQ 85.4487 18.8364, 85.4689 18.8768\\nL 85.4689 13.3212\\nL 86.4184 13.3212\\nL 86.4184 20.4728\\nL 85.4386 20.4728\\nL 82.9234 16.3313\\nQ 82.6305 15.8465, 82.3173 15.2909\\nQ 82.0143 14.7354, 81.9234 14.5637\\nL 81.9234 20.4728\\nL 80.9941 20.4728\\nL 80.9941 13.3212\\nL 82.1254 13.3212\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 80.9083 5.45455\\nL 81.878 5.45455\\nL 81.878 8.49496\\nL 85.5345 8.49496\\nL 85.5345 5.45455\\nL 86.5042 5.45455\\nL 86.5042 12.6061\\nL 85.5345 12.6061\\nL 85.5345 9.30304\\nL 81.878 9.30304\\nL 81.878 12.6061\\nL 80.9083 12.6061\\nL 80.9083 5.45455\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.57, "data-ID": 1153, "mols2grid-id": 229, "mols2grid-tooltip": "<strong>Name</strong>: Etryptamine<br><strong>SMILES</strong>: c1ccc2c(CC(CC)N)cn(H)c2c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.57</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc(c(ccc1O)CCCCCC)c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 92.0049,110.182 L 86.9474,107.262' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 86.9474,107.262 L 81.89,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.89,104.342 L 81.89,85.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 78.1635,101.547 L 78.1635,88.5046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-1 atom-13' d='M 81.89,104.342 L 65.7542,113.659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 81.89,85.7098 L 65.7542,76.3935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-2 atom-7' d='M 81.89,85.7098 L 98.0158,76.355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.7542,76.3935 L 49.6184,85.7098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 65.1971,81.0182 L 53.9021,87.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 49.6184,85.7098 L 49.6184,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 49.6184,104.342 L 44.561,107.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 44.561,107.262 L 39.5035,110.182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-5' d='M 65.7542,113.659 L 49.6184,104.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-5' d='M 65.1971,109.034 L 53.9021,102.513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 98.0158,76.355 L 97.9897,57.7125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 97.9897,57.7125 L 114.116,48.3578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 114.116,48.3578 L 114.089,29.7153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 114.089,29.7153 L 130.215,20.3606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 130.215,20.3606 L 130.193,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 92.3776 111.81\\nQ 92.3776 110.543, 93.0036 109.835\\nQ 93.6297 109.127, 94.7998 109.127\\nQ 95.9699 109.127, 96.596 109.835\\nQ 97.222 110.543, 97.222 111.81\\nQ 97.222 113.092, 96.5885 113.823\\nQ 95.955 114.545, 94.7998 114.545\\nQ 93.6371 114.545, 93.0036 113.823\\nQ 92.3776 113.1, 92.3776 111.81\\nM 94.7998 113.949\\nQ 95.6047 113.949, 96.037 113.413\\nQ 96.4767 112.869, 96.4767 111.81\\nQ 96.4767 110.774, 96.037 110.253\\nQ 95.6047 109.723, 94.7998 109.723\\nQ 93.9949 109.723, 93.5552 110.245\\nQ 93.1229 110.767, 93.1229 111.81\\nQ 93.1229 112.876, 93.5552 113.413\\nQ 93.9949 113.949, 94.7998 113.949\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 97.8555 109.187\\nL 98.571 109.187\\nL 98.571 111.43\\nL 101.269 111.43\\nL 101.269 109.187\\nL 101.985 109.187\\nL 101.985 114.463\\nL 101.269 114.463\\nL 101.269 112.026\\nL 98.571 112.026\\nL 98.571 114.463\\nL 97.8555 114.463\\nL 97.8555 109.187\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 29.7847 109.187\\nL 30.5002 109.187\\nL 30.5002 111.43\\nL 33.1982 111.43\\nL 33.1982 109.187\\nL 33.9137 109.187\\nL 33.9137 114.463\\nL 33.1982 114.463\\nL 33.1982 112.026\\nL 30.5002 112.026\\nL 30.5002 114.463\\nL 29.7847 114.463\\nL 29.7847 109.187\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 34.2864 111.81\\nQ 34.2864 110.543, 34.9124 109.835\\nQ 35.5385 109.127, 36.7086 109.127\\nQ 37.8787 109.127, 38.5048 109.835\\nQ 39.1308 110.543, 39.1308 111.81\\nQ 39.1308 113.092, 38.4973 113.823\\nQ 37.8638 114.545, 36.7086 114.545\\nQ 35.5459 114.545, 34.9124 113.823\\nQ 34.2864 113.1, 34.2864 111.81\\nM 36.7086 113.949\\nQ 37.5135 113.949, 37.9458 113.413\\nQ 38.3855 112.869, 38.3855 111.81\\nQ 38.3855 110.774, 37.9458 110.253\\nQ 37.5135 109.723, 36.7086 109.723\\nQ 35.9037 109.723, 35.4639 110.245\\nQ 35.0317 110.767, 35.0317 111.81\\nQ 35.0317 112.876, 35.4639 113.413\\nQ 35.9037 113.949, 36.7086 113.949\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.59, "data-ID": 1158, "mols2grid-id": 230, "mols2grid-tooltip": "<strong>Name</strong>: 4-Hexylresorcinol<br><strong>SMILES</strong>: Oc(c(ccc1O)CCCCCC)c1<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.59</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Ic1ccccc1C(=O)Nc2ccccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.846,36.9638 L 101.359,33.7962' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.359,33.7962 L 95.872,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 95.872,30.6286 L 95.872,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 92.5154,28.1112 L 92.5154,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 81.3381,39.0199 L 95.872,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 95.872,13.8459 L 81.3381,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 81.3381,5.45455 L 66.8043,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.8364,9.62008 L 70.6627,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.8043,13.8459 L 66.8043,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.8043,30.6286 L 81.3381,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 70.6627,28.9805 L 80.8364,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 81.3381,39.0199 L 81.3035,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 80.4618,57.2636 L 85.011,59.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 85.011,59.9006 L 89.5603,62.5376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 82.1451,54.3596 L 86.6943,56.9966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 86.6943,56.9966 L 91.2436,59.6336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 81.3035,55.8116 L 75.1376,59.36' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-7 atom-9' d='M 75.1376,59.36 L 68.9718,62.9084' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.7437,66.9835 L 66.7293,73.9812' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 66.7293,73.9812 L 66.7148,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 66.7148,80.9789 L 52.181,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 66.2132,85.1445 L 56.0395,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-10' d='M 81.2498,89.3714 L 66.7148,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 52.181,89.3714 L 52.181,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.181,106.154 L 66.7148,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 56.0394,104.506 L 66.213,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 66.7148,114.545 L 81.2486,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 81.2486,106.154 L 81.2498,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 77.8923,103.636 L 77.893,91.8886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 107.181 34.9552\\nL 107.819 34.9552\\nL 107.819 39.7282\\nL 107.181 39.7282\\nL 107.181 34.9552\\n' fill='#A01EEF'/>\\n<path class='atom-8' d='M 90.7376 62.5582\\nQ 90.7376 61.417, 91.3015 60.7793\\nQ 91.8654 60.1415, 92.9193 60.1415\\nQ 93.9733 60.1415, 94.5372 60.7793\\nQ 95.1011 61.417, 95.1011 62.5582\\nQ 95.1011 63.7129, 94.5305 64.3708\\nQ 93.9599 65.0219, 92.9193 65.0219\\nQ 91.8721 65.0219, 91.3015 64.3708\\nQ 90.7376 63.7196, 90.7376 62.5582\\nM 92.9193 64.4849\\nQ 93.6443 64.4849, 94.0337 64.0016\\nQ 94.4298 63.5115, 94.4298 62.5582\\nQ 94.4298 61.6251, 94.0337 61.1552\\nQ 93.6443 60.6786, 92.9193 60.6786\\nQ 92.1943 60.6786, 91.7982 61.1485\\nQ 91.4089 61.6184, 91.4089 62.5582\\nQ 91.4089 63.5182, 91.7982 64.0016\\nQ 92.1943 64.4849, 92.9193 64.4849\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 60.6708 61.8109\\nL 61.3153 61.8109\\nL 61.3153 63.8315\\nL 63.7454 63.8315\\nL 63.7454 61.8109\\nL 64.3899 61.8109\\nL 64.3899 66.5637\\nL 63.7454 66.5637\\nL 63.7454 64.3685\\nL 61.3153 64.3685\\nL 61.3153 66.5637\\nL 60.6708 66.5637\\nL 60.6708 61.8109\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 65.6989 61.8109\\nL 67.2563 64.3283\\nQ 67.4107 64.5766, 67.6591 65.0264\\nQ 67.9075 65.4762, 67.9209 65.503\\nL 67.9209 61.8109\\nL 68.552 61.8109\\nL 68.552 66.5637\\nL 67.9008 66.5637\\nL 66.2292 63.8114\\nQ 66.0346 63.4891, 65.8265 63.1199\\nQ 65.6251 62.7507, 65.5646 62.6366\\nL 65.5646 66.5637\\nL 64.947 66.5637\\nL 64.947 61.8109\\nL 65.6989 61.8109\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -4.21, "data-ID": 1163, "mols2grid-id": 231, "mols2grid-tooltip": "<strong>Name</strong>: Benodanil<br><strong>SMILES</strong>: Ic1ccccc1C(=O)Nc2ccccc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.21</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCCN(CC)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 133.973,114.545 L 121.073,107.061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.073,107.061 L 121.099,88.4096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 121.099,88.4096 L 104.965,79.0501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.965,79.0501 L 104.977,71.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 104.977,71.2772 L 104.988,63.5043' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 107.461,58.9856 L 114.321,55.0594' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 114.321,55.0594 L 121.181,51.1333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 102.524,58.9664 L 95.6907,55.0026' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-4 atom-7' d='M 95.6907,55.0026 L 88.8574,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 121.181,51.1333 L 134.073,58.6311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 88.8574,51.0389 L 88.8574,32.397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 85.129,48.2426 L 85.129,35.1933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-7' d='M 72.7135,60.3598 L 88.8574,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 88.8574,32.397 L 72.7135,23.0761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-8 atom-20' d='M 88.8574,32.397 L 95.6901,28.4333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-8 atom-20' d='M 95.6901,28.4333 L 102.523,24.4695' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 72.7135,23.0761 L 56.5697,32.397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 72.1562,27.7031 L 60.8555,34.2277' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 56.5697,32.397 L 56.5697,51.0389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-10 atom-16' d='M 56.5697,32.397 L 40.4159,23.0711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 56.5697,51.0389 L 72.7135,60.3598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 60.8555,49.2082 L 72.1562,55.7328' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.7135,60.3598 L 72.6975,68.1327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 72.6975,68.1327 L 72.6814,75.9056' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 70.3,80.3784 L 66.8594,82.3586' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 66.8594,82.3586 L 63.4187,84.3388' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 74.1151,82.0011 L 78.0151,84.2617' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 78.0151,84.2617 L 81.9151,86.5224' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 75.9849,78.7754 L 79.8849,81.0361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-15' d='M 79.8849,81.0361 L 83.7849,83.2968' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 40.4159,23.0711 L 40.4119,17.1206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 40.4119,17.1206 L 40.4079,11.1701' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 40.4159,23.0711 L 34.9308,26.2402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 34.9308,26.2402 L 29.4458,29.4093' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 40.4159,23.0711 L 34.9277,19.906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-16 atom-19' d='M 34.9277,19.906 L 29.4395,16.7408' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 104.987,20.025 L 104.981,15.5991' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-21' d='M 104.981,15.5991 L 104.974,11.1731' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 106.437,26.0193 L 110.35,28.2693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 110.35,28.2693 L 114.263,30.5194' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 108.296,22.7872 L 112.209,25.0372' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-22' d='M 112.209,25.0372 L 116.122,27.2873' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 103.826 57.7586\\nL 105.556 60.5549\\nQ 105.727 60.8308, 106.003 61.3304\\nQ 106.279 61.83, 106.294 61.8598\\nL 106.294 57.7586\\nL 106.995 57.7586\\nL 106.995 63.038\\nL 106.271 63.038\\nL 104.415 59.9807\\nQ 104.198 59.6228, 103.967 59.2127\\nQ 103.744 58.8026, 103.676 58.6758\\nL 103.676 63.038\\nL 102.99 63.038\\nL 102.99 57.7586\\nL 103.826 57.7586\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 71.508 76.3719\\nL 73.238 79.1682\\nQ 73.4095 79.4441, 73.6854 79.9437\\nQ 73.9613 80.4433, 73.9762 80.4731\\nL 73.9762 76.3719\\nL 74.6771 76.3719\\nL 74.6771 81.6513\\nL 73.9538 81.6513\\nL 72.0971 78.594\\nQ 71.8808 78.2361, 71.6497 77.826\\nQ 71.426 77.4158, 71.3589 77.2891\\nL 71.3589 81.6513\\nL 70.6729 81.6513\\nL 70.6729 76.3719\\nL 71.508 76.3719\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 75.1201 77.3235\\nL 76.0502 77.3235\\nL 76.0502 76.3442\\nL 76.4636 76.3442\\nL 76.4636 77.3235\\nL 77.4184 77.3235\\nL 77.4184 77.6779\\nL 76.4636 77.6779\\nL 76.4636 78.6622\\nL 76.0502 78.6622\\nL 76.0502 77.6779\\nL 75.1201 77.6779\\nL 75.1201 77.3235\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 57.3253 86.4658\\nQ 57.3253 85.1982, 57.9517 84.4898\\nQ 58.578 83.7814, 59.7487 83.7814\\nQ 60.9194 83.7814, 61.5458 84.4898\\nQ 62.1722 85.1982, 62.1722 86.4658\\nQ 62.1722 87.7484, 61.5383 88.4792\\nQ 60.9045 89.2025, 59.7487 89.2025\\nQ 58.5855 89.2025, 57.9517 88.4792\\nQ 57.3253 87.7559, 57.3253 86.4658\\nM 59.7487 88.6059\\nQ 60.5541 88.6059, 60.9865 88.069\\nQ 61.4265 87.5247, 61.4265 86.4658\\nQ 61.4265 85.4294, 60.9865 84.9074\\nQ 60.5541 84.378, 59.7487 84.378\\nQ 58.9434 84.378, 58.5035 84.8999\\nQ 58.071 85.4219, 58.071 86.4658\\nQ 58.071 87.5322, 58.5035 88.069\\nQ 58.9434 88.6059, 59.7487 88.6059\\n' fill='#FF0000'/>\\n<path class='atom-14' d='M 62.4182 84.6431\\nL 64.2244 84.6431\\nL 64.2244 85.0368\\nL 62.4182 85.0368\\nL 62.4182 84.6431\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 83.1542 86.5056\\nQ 83.1542 85.238, 83.7806 84.5296\\nQ 84.4069 83.8212, 85.5776 83.8212\\nQ 86.7484 83.8212, 87.3747 84.5296\\nQ 88.0011 85.238, 88.0011 86.5056\\nQ 88.0011 87.7882, 87.3673 88.5189\\nQ 86.7334 89.2422, 85.5776 89.2422\\nQ 84.4144 89.2422, 83.7806 88.5189\\nQ 83.1542 87.7956, 83.1542 86.5056\\nM 85.5776 88.6457\\nQ 86.383 88.6457, 86.8155 88.1088\\nQ 87.2554 87.5645, 87.2554 86.5056\\nQ 87.2554 85.4691, 86.8155 84.9472\\nQ 86.383 84.4177, 85.5776 84.4177\\nQ 84.7723 84.4177, 84.3324 84.9397\\nQ 83.8999 85.4617, 83.8999 86.5056\\nQ 83.8999 87.5719, 84.3324 88.1088\\nQ 84.7723 88.6457, 85.5776 88.6457\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 38.8363 5.51793\\nL 41.9756 5.51793\\nL 41.9756 6.12192\\nL 39.5447 6.12192\\nL 39.5447 7.72512\\nL 41.7071 7.72512\\nL 41.7071 8.33658\\nL 39.5447 8.33658\\nL 39.5447 10.7973\\nL 38.8363 10.7973\\nL 38.8363 5.51793\\n' fill='#33CCCC'/>\\n<path class='atom-18' d='M 25.9336 27.8919\\nL 29.0729 27.8919\\nL 29.0729 28.4959\\nL 26.642 28.4959\\nL 26.642 30.0991\\nL 28.8045 30.0991\\nL 28.8045 30.7105\\nL 26.642 30.7105\\nL 26.642 33.1713\\nL 25.9336 33.1713\\nL 25.9336 27.8919\\n' fill='#33CCCC'/>\\n<path class='atom-19' d='M 25.9274 12.9809\\nL 29.0667 12.9809\\nL 29.0667 13.5849\\nL 26.6358 13.5849\\nL 26.6358 15.1881\\nL 28.7983 15.1881\\nL 28.7983 15.7995\\nL 26.6358 15.7995\\nL 26.6358 18.2603\\nL 25.9274 18.2603\\nL 25.9274 12.9809\\n' fill='#33CCCC'/>\\n<path class='atom-20' d='M 103.824 20.3979\\nL 105.554 23.1941\\nQ 105.726 23.47, 106.002 23.9696\\nQ 106.278 24.4692, 106.292 24.4991\\nL 106.292 20.3979\\nL 106.993 20.3979\\nL 106.993 25.6772\\nL 106.27 25.6772\\nL 104.413 22.62\\nQ 104.197 22.262, 103.966 21.8519\\nQ 103.742 21.4418, 103.675 21.315\\nL 103.675 25.6772\\nL 102.989 25.6772\\nL 102.989 20.3979\\nL 103.824 20.3979\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 107.436 21.3495\\nL 108.366 21.3495\\nL 108.366 20.3701\\nL 108.78 20.3701\\nL 108.78 21.3495\\nL 109.735 21.3495\\nL 109.735 21.7038\\nL 108.78 21.7038\\nL 108.78 22.6881\\nL 108.366 22.6881\\nL 108.366 21.7038\\nL 107.436 21.7038\\nL 107.436 21.3495\\n' fill='#0000FF'/>\\n<path class='atom-21' d='M 102.547 8.13897\\nQ 102.547 6.87133, 103.173 6.16294\\nQ 103.799 5.45455, 104.97 5.45455\\nQ 106.141 5.45455, 106.767 6.16294\\nQ 107.394 6.87133, 107.394 8.13897\\nQ 107.394 9.42153, 106.76 10.1523\\nQ 106.126 10.8756, 104.97 10.8756\\nQ 103.807 10.8756, 103.173 10.1523\\nQ 102.547 9.42899, 102.547 8.13897\\nM 104.97 10.2791\\nQ 105.775 10.2791, 106.208 9.74217\\nQ 106.648 9.19783, 106.648 8.13897\\nQ 106.648 7.10249, 106.208 6.58051\\nQ 105.775 6.05108, 104.97 6.05108\\nQ 104.165 6.05108, 103.725 6.57306\\nQ 103.292 7.09503, 103.292 8.13897\\nQ 103.292 9.20529, 103.725 9.74217\\nQ 104.165 10.2791, 104.97 10.2791\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 107.64 6.31625\\nL 109.446 6.31625\\nL 109.446 6.70996\\nL 107.64 6.70996\\nL 107.64 6.31625\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 115.497 30.4868\\nQ 115.497 29.2192, 116.123 28.5108\\nQ 116.749 27.8024, 117.92 27.8024\\nQ 119.091 27.8024, 119.717 28.5108\\nQ 120.343 29.2192, 120.343 30.4868\\nQ 120.343 31.7694, 119.71 32.5002\\nQ 119.076 33.2235, 117.92 33.2235\\nQ 116.757 33.2235, 116.123 32.5002\\nQ 115.497 31.7768, 115.497 30.4868\\nM 117.92 32.6269\\nQ 118.725 32.6269, 119.158 32.09\\nQ 119.598 31.5457, 119.598 30.4868\\nQ 119.598 29.4503, 119.158 28.9284\\nQ 118.725 28.3989, 117.92 28.3989\\nQ 117.115 28.3989, 116.675 28.9209\\nQ 116.242 29.4429, 116.242 30.4868\\nQ 116.242 31.5531, 116.675 32.09\\nQ 117.115 32.6269, 117.92 32.6269\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.53, "data-ID": 1168, "mols2grid-id": 232, "mols2grid-tooltip": "<strong>Name</strong>: Benfluralin<br><strong>SMILES</strong>: CCCCN(CC)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.53</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCCCc1c(C)nc(NCC)nc1OS(=O)(=O)N(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 139.98,102.386 L 140.003,86.0818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 140.003,86.0818 L 122.365,75.8498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 122.365,75.8498 L 122.395,55.4593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 122.395,55.4593 L 104.756,45.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 104.756,45.2273 L 104.756,24.8476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.68,42.1703 L 100.68,27.9046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-4' d='M 87.1071,55.4171 L 104.756,45.2273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 104.756,24.8476 L 118.876,16.6957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 104.756,24.8476 L 97.2806,20.5316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 97.2806,20.5316 L 89.8053,16.2156' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.4088,16.2156 L 76.9335,20.5316' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 76.9335,20.5316 L 69.4583,24.8476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 84.2043,21.0403 L 78.9716,24.0615' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 78.9716,24.0615 L 73.7389,27.0826' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 69.4583,24.8476 L 61.9675,20.5436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 61.9675,20.5436 L 54.4767,16.2395' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 69.4583,24.8476 L 69.4583,33.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-8 atom-12' d='M 69.4583,33.3398 L 69.4583,41.832' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 49.0796,16.252 L 41.6065,20.5804' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 41.6065,20.5804 L 34.1334,24.9087' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 34.1334,24.9087 L 19.9967,16.7867' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 72.1565,46.7852 L 79.6318,51.1012' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 79.6318,51.1012 L 87.1071,55.4171' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 76.4371,44.5501 L 81.6698,47.5713' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 81.6698,47.5713 L 86.9025,50.5925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.1071,55.4171 L 87.0896,63.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 87.0896,63.8984 L 87.072,72.3796' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 83.9058,77.6258 L 77.7833,81.1492' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 77.7833,81.1492 L 71.6608,84.6727' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 68.1556,82.9065 L 63.7278,80.3398' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 63.7278,80.3398 L 59.3,77.7732' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 66.1116,86.4328 L 61.6837,83.8662' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 61.6837,83.8662 L 57.2559,81.2995' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 71.4349,82.6966 L 71.4425,77.854' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 71.4425,77.854 L 71.4502,73.0115' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 67.3589,82.6901 L 67.3666,77.8476' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 67.3666,77.8476 L 67.3743,73.0051' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 69.3844,89.5208 L 69.3704,96.2915' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-18' d='M 69.3704,96.2915 L 69.3564,103.062' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 66.7532,107.863 L 60.9857,111.182' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 60.9857,111.182 L 55.2183,114.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 71.9459,107.874 L 77.7005,111.21' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 77.7005,111.21 L 83.455,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 85.8313 11.772\\nL 87.7225 14.8289\\nQ 87.91 15.1306, 88.2117 15.6767\\nQ 88.5133 16.2229, 88.5296 16.2555\\nL 88.5296 11.772\\nL 89.2959 11.772\\nL 89.2959 17.5435\\nL 88.5051 17.5435\\nL 86.4753 14.2012\\nQ 86.2389 13.81, 85.9862 13.3616\\nQ 85.7416 12.9132, 85.6683 12.7747\\nL 85.6683 17.5435\\nL 84.9183 17.5435\\nL 84.9183 11.772\\nL 85.8313 11.772\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 50.5024 11.8032\\nL 52.3937 14.8602\\nQ 52.5812 15.1618, 52.8828 15.708\\nQ 53.1844 16.2542, 53.2007 16.2868\\nL 53.2007 11.8032\\nL 53.967 11.8032\\nL 53.967 17.5748\\nL 53.1762 17.5748\\nL 51.1464 14.2325\\nQ 50.91 13.8412, 50.6573 13.3928\\nQ 50.4128 12.9445, 50.3394 12.8059\\nL 50.3394 17.5748\\nL 49.5894 17.5748\\nL 49.5894 11.8032\\nL 50.5024 11.8032\\n' fill='#0000FF'/>\\n<path class='atom-9' d='M 49.5201 5.45455\\nL 50.3027 5.45455\\nL 50.3027 7.90826\\nL 53.2537 7.90826\\nL 53.2537 5.45455\\nL 54.0363 5.45455\\nL 54.0363 11.2261\\nL 53.2537 11.2261\\nL 53.2537 8.56041\\nL 50.3027 8.56041\\nL 50.3027 11.2261\\nL 49.5201 11.2261\\nL 49.5201 5.45455\\n' fill='#0000FF'/>\\n<path class='atom-12' d='M 68.1825 42.3415\\nL 70.0737 45.3985\\nQ 70.2612 45.7001, 70.5628 46.2463\\nQ 70.8645 46.7925, 70.8808 46.8251\\nL 70.8808 42.3415\\nL 71.647 42.3415\\nL 71.647 48.1131\\nL 70.8563 48.1131\\nL 68.8265 44.7708\\nQ 68.5901 44.3795, 68.3374 43.9311\\nQ 68.0928 43.4828, 68.0195 43.3442\\nL 68.0195 48.1131\\nL 67.2695 48.1131\\nL 67.2695 42.3415\\nL 68.1825 42.3415\\n' fill='#0000FF'/>\\n<path class='atom-14' d='M 84.4156 75.824\\nQ 84.4156 74.4382, 85.1004 73.6638\\nQ 85.7851 72.8893, 87.065 72.8893\\nQ 88.3448 72.8893, 89.0296 73.6638\\nQ 89.7143 74.4382, 89.7143 75.824\\nQ 89.7143 77.2261, 89.0214 78.025\\nQ 88.3285 78.8158, 87.065 78.8158\\nQ 85.7933 78.8158, 85.1004 78.025\\nQ 84.4156 77.2343, 84.4156 75.824\\nM 87.065 78.1636\\nQ 87.9454 78.1636, 88.4182 77.5767\\nQ 88.8991 76.9816, 88.8991 75.824\\nQ 88.8991 74.6909, 88.4182 74.1203\\nQ 87.9454 73.5415, 87.065 73.5415\\nQ 86.1846 73.5415, 85.7036 74.1121\\nQ 85.2308 74.6828, 85.2308 75.824\\nQ 85.2308 76.9897, 85.7036 77.5767\\nQ 86.1846 78.1636, 87.065 78.1636\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 67.7613 87.9595\\nQ 67.8265 87.9839, 68.0955 88.098\\nQ 68.3645 88.2122, 68.658 88.2855\\nQ 68.9596 88.3507, 69.2531 88.3507\\nQ 69.7993 88.3507, 70.1172 88.0899\\nQ 70.4351 87.8209, 70.4351 87.3562\\nQ 70.4351 87.0383, 70.2721 86.8426\\nQ 70.1172 86.647, 69.8726 86.541\\nQ 69.6281 86.4351, 69.2205 86.3128\\nQ 68.7069 86.1579, 68.3972 86.0112\\nQ 68.0955 85.8644, 67.8754 85.5547\\nQ 67.6635 85.2449, 67.6635 84.7232\\nQ 67.6635 83.9976, 68.1526 83.5493\\nQ 68.6499 83.1009, 69.6281 83.1009\\nQ 70.2965 83.1009, 71.0547 83.4189\\nL 70.8672 84.0466\\nQ 70.1743 83.7612, 69.6525 83.7612\\nQ 69.0901 83.7612, 68.7803 83.9976\\nQ 68.4705 84.2259, 68.4787 84.6253\\nQ 68.4787 84.9351, 68.6336 85.1226\\nQ 68.7966 85.3101, 69.0249 85.4161\\nQ 69.2613 85.522, 69.6525 85.6443\\nQ 70.1743 85.8074, 70.484 85.9704\\nQ 70.7938 86.1334, 71.0139 86.4677\\nQ 71.2422 86.7937, 71.2422 87.3562\\nQ 71.2422 88.1551, 70.7041 88.5872\\nQ 70.1743 89.011, 69.2857 89.011\\nQ 68.7721 89.011, 68.3809 88.8969\\nQ 67.9977 88.7909, 67.5412 88.6035\\nL 67.7613 87.9595\\n' fill='#CCCC00'/>\\n<path class='atom-16' d='M 52.6369 77.8185\\nQ 52.6369 76.4327, 53.3216 75.6583\\nQ 54.0064 74.8838, 55.2862 74.8838\\nQ 56.5661 74.8838, 57.2508 75.6583\\nQ 57.9356 76.4327, 57.9356 77.8185\\nQ 57.9356 79.2206, 57.2427 80.0195\\nQ 56.5498 80.8103, 55.2862 80.8103\\nQ 54.0145 80.8103, 53.3216 80.0195\\nQ 52.6369 79.2288, 52.6369 77.8185\\nM 55.2862 80.1581\\nQ 56.1666 80.1581, 56.6394 79.5712\\nQ 57.1204 78.9761, 57.1204 77.8185\\nQ 57.1204 76.6854, 56.6394 76.1148\\nQ 56.1666 75.536, 55.2862 75.536\\nQ 54.4058 75.536, 53.9249 76.1066\\nQ 53.452 76.6773, 53.452 77.8185\\nQ 53.452 78.9842, 53.9249 79.5712\\nQ 54.4058 80.1581, 55.2862 80.1581\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 66.7681 69.6911\\nQ 66.7681 68.3053, 67.4529 67.5308\\nQ 68.1377 66.7564, 69.4175 66.7564\\nQ 70.6973 66.7564, 71.3821 67.5308\\nQ 72.0669 68.3053, 72.0669 69.6911\\nQ 72.0669 71.0932, 71.374 71.8921\\nQ 70.681 72.6828, 69.4175 72.6828\\nQ 68.1458 72.6828, 67.4529 71.8921\\nQ 66.7681 71.1014, 66.7681 69.6911\\nM 69.4175 72.0307\\nQ 70.2979 72.0307, 70.7707 71.4437\\nQ 71.2517 70.8487, 71.2517 69.6911\\nQ 71.2517 68.558, 70.7707 67.9873\\nQ 70.2979 67.4086, 69.4175 67.4086\\nQ 68.5371 67.4086, 68.0561 67.9792\\nQ 67.5833 68.5498, 67.5833 69.6911\\nQ 67.5833 70.8568, 68.0561 71.4437\\nQ 68.5371 72.0307, 69.4175 72.0307\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 68.0738 103.483\\nL 69.965 106.54\\nQ 70.1525 106.842, 70.4541 107.388\\nQ 70.7558 107.934, 70.7721 107.967\\nL 70.7721 103.483\\nL 71.5383 103.483\\nL 71.5383 109.255\\nL 70.7476 109.255\\nL 68.7178 105.913\\nQ 68.4814 105.521, 68.2287 105.073\\nQ 67.9841 104.625, 67.9108 104.486\\nL 67.9108 109.255\\nL 67.1608 109.255\\nL 67.1608 103.483\\nL 68.0738 103.483\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -4.16, "data-ID": 1173, "mols2grid-id": 233, "mols2grid-tooltip": "<strong>Name</strong>: Bupirimate<br><strong>SMILES</strong>: CCCCc1c(C)nc(NCC)nc1OS(=O)(=O)N(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.16</span>", "style-Solubility": "color: red"}, {"data-SMILES": "Clc1ccc(cc1)C(c2ccccc2Cl)C(Cl)(Cl)Cl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 145.309,102.484 L 138.557,98.5853' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 138.557,98.5853 L 131.804,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 131.804,94.6868 L 131.804,70.7269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 127.012,91.0928 L 127.012,74.3209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-1' d='M 111.055,106.667 L 131.804,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 131.804,70.7269 L 111.055,58.7469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 111.055,58.7469 L 90.3052,70.7269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 110.338,64.6938 L 95.8136,73.0798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.3052,70.7269 L 90.3052,94.6868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-4 atom-7' d='M 90.3052,70.7269 L 69.5191,58.7836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 90.3052,94.6868 L 111.055,106.667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 95.8136,92.3339 L 110.338,100.72' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 69.5191,58.7836 L 48.7746,70.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-7 atom-15' d='M 69.5191,58.7836 L 69.4265,34.8093' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 48.7746,70.7988 L 48.856,94.7603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 43.9948,74.4093 L 44.0519,91.1824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 27.9821,58.8923 L 48.7746,70.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 48.856,94.7603 L 28.1482,106.812' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 28.1482,106.812 L 7.35579,94.9041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 27.4109,100.868 L 12.8562,92.532' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 7.35579,94.9041 L 7.27273,70.9441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 7.27273,70.9441 L 27.9821,58.8923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 12.7894,73.278 L 27.286,64.8417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 27.9821,58.8923 L 27.9559,51.4096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 27.9559,51.4096 L 27.9297,43.9269' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 69.4265,34.8093 L 61.5716,30.3073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 61.5716,30.3073 L 53.7167,25.8053' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 69.4265,34.8093 L 69.4022,27.3274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-15 atom-17' d='M 69.4022,27.3274 L 69.3778,19.8455' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-15 atom-18' d='M 69.4265,34.8093 L 76.1624,30.8893' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-15 atom-18' d='M 76.1624,30.8893 L 82.8983,26.9693' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 145.788 104.506\\nQ 145.788 102.819, 146.574 101.937\\nQ 147.37 101.046, 148.875 101.046\\nQ 150.274 101.046, 151.021 102.033\\nL 150.389 102.55\\nQ 149.842 101.832, 148.875 101.832\\nQ 147.849 101.832, 147.303 102.522\\nQ 146.766 103.202, 146.766 104.506\\nQ 146.766 105.847, 147.322 106.537\\nQ 147.887 107.227, 148.98 107.227\\nQ 149.727 107.227, 150.6 106.777\\nL 150.868 107.496\\nQ 150.513 107.726, 149.977 107.86\\nQ 149.44 107.994, 148.846 107.994\\nQ 147.37 107.994, 146.574 107.093\\nQ 145.788 106.192, 145.788 104.506\\n' fill='#00CC00'/>\\n<path class='atom-0' d='M 151.846 100.634\\nL 152.727 100.634\\nL 152.727 107.908\\nL 151.846 107.908\\nL 151.846 100.634\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 25.2986 39.9591\\nQ 25.2986 38.2723, 26.0845 37.3906\\nQ 26.88 36.4993, 28.3846 36.4993\\nQ 29.7839 36.4993, 30.5315 37.4864\\nL 29.8989 38.004\\nQ 29.3526 37.2852, 28.3846 37.2852\\nQ 27.3592 37.2852, 26.8129 37.9752\\nQ 26.2762 38.6557, 26.2762 39.9591\\nQ 26.2762 41.3008, 26.832 41.9909\\nQ 27.3975 42.6809, 28.4901 42.6809\\nQ 29.2376 42.6809, 30.1098 42.2305\\nL 30.3781 42.9493\\nQ 30.0235 43.1793, 29.4868 43.3135\\nQ 28.9501 43.4477, 28.3559 43.4477\\nQ 26.88 43.4477, 26.0845 42.5468\\nQ 25.2986 41.6459, 25.2986 39.9591\\n' fill='#00CC00'/>\\n<path class='atom-14' d='M 31.3557 36.0872\\nL 32.2374 36.0872\\nL 32.2374 43.3614\\nL 31.3557 43.3614\\nL 31.3557 36.0872\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 46.2987 25.5128\\nQ 46.2987 23.826, 47.0846 22.9443\\nQ 47.8801 22.053, 49.3848 22.053\\nQ 50.784 22.053, 51.5316 23.0402\\nL 50.899 23.5577\\nQ 50.3527 22.8389, 49.3848 22.8389\\nQ 48.3593 22.8389, 47.813 23.5289\\nQ 47.2763 24.2094, 47.2763 25.5128\\nQ 47.2763 26.8546, 47.8322 27.5446\\nQ 48.3976 28.2347, 49.4902 28.2347\\nQ 50.2377 28.2347, 51.1099 27.7842\\nL 51.3782 28.503\\nQ 51.0236 28.733, 50.4869 28.8672\\nQ 49.9502 29.0014, 49.356 29.0014\\nQ 47.8801 29.0014, 47.0846 28.1005\\nQ 46.2987 27.1996, 46.2987 25.5128\\n' fill='#00CC00'/>\\n<path class='atom-16' d='M 52.3558 21.6409\\nL 53.2375 21.6409\\nL 53.2375 28.9151\\nL 52.3558 28.9151\\nL 52.3558 21.6409\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 66.7477 15.8777\\nQ 66.7477 14.1909, 67.5336 13.3092\\nQ 68.3291 12.4179, 69.8338 12.4179\\nQ 71.233 12.4179, 71.9806 13.4051\\nL 71.3481 13.9226\\nQ 70.8018 13.2038, 69.8338 13.2038\\nQ 68.8083 13.2038, 68.262 13.8938\\nQ 67.7253 14.5743, 67.7253 15.8777\\nQ 67.7253 17.2195, 68.2812 17.9095\\nQ 68.8466 18.5996, 69.9392 18.5996\\nQ 70.6868 18.5996, 71.5589 18.1491\\nL 71.8273 18.8679\\nQ 71.4726 19.0979, 70.9359 19.2321\\nQ 70.3992 19.3663, 69.805 19.3663\\nQ 68.3291 19.3663, 67.5336 18.4654\\nQ 66.7477 17.5645, 66.7477 15.8777\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 72.8048 12.0058\\nL 73.6865 12.0058\\nL 73.6865 19.28\\nL 72.8048 19.28\\nL 72.8048 12.0058\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 83.3776 25.4026\\nQ 83.3776 23.7158, 84.1634 22.8341\\nQ 84.9589 21.9428, 86.4636 21.9428\\nQ 87.8629 21.9428, 88.6104 22.9299\\nL 87.9779 23.4475\\nQ 87.4316 22.7287, 86.4636 22.7287\\nQ 85.4381 22.7287, 84.8918 23.4187\\nQ 84.3551 24.0992, 84.3551 25.4026\\nQ 84.3551 26.7444, 84.911 27.4344\\nQ 85.4764 28.1245, 86.569 28.1245\\nQ 87.3166 28.1245, 88.1887 27.674\\nL 88.4571 28.3928\\nQ 88.1025 28.6228, 87.5658 28.757\\nQ 87.0291 28.8912, 86.4348 28.8912\\nQ 84.9589 28.8912, 84.1634 27.9903\\nQ 83.3776 27.0894, 83.3776 25.4026\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 89.4346 21.5307\\nL 90.3164 21.5307\\nL 90.3164 28.8049\\nL 89.4346 28.8049\\nL 89.4346 21.5307\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -6.62, "data-ID": 1178, "mols2grid-id": 234, "mols2grid-tooltip": "<strong>Name</strong>: o,p'-DDT<br><strong>SMILES</strong>: Clc1ccc(cc1)C(c2ccccc2Cl)C(Cl)(Cl)Cl<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-6.62</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)c(c(c(c(ccc1)C(=O)O)c1)ccc2)c2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 99.1834,89.4024 L 93.547,92.6364' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 93.547,92.6364 L 87.9107,95.8705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 101.246,92.9979 L 95.6101,96.232' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 95.6101,96.232 L 89.9738,99.466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.9423,97.6683 L 88.9296,102.92' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.9296,102.92 L 88.917,108.173' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 88.9423,97.6683 L 71.0025,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.0025,87.262 L 71.0025,66.5352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 66.8571,84.153 L 66.8571,69.6442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-3 atom-17' d='M 71.0025,87.262 L 53.053,97.6254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 71.0025,66.5352 L 88.9616,56.1662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-4 atom-14' d='M 71.0025,66.5352 L 53.053,56.1718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 88.9616,56.1662 L 88.9961,35.438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 93.1121,53.0639 L 93.1363,38.5541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-13' d='M 88.9616,56.1662 L 106.897,66.5573' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 88.9961,35.438 L 106.962,25.1036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-6 atom-10' d='M 88.9961,35.438 L 71.0743,25.0027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 106.962,25.1036 L 124.896,35.496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 107.574,30.2492 L 120.128,37.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 124.896,35.496 L 124.863,56.2229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-9' d='M 106.897,66.5573 L 124.863,56.2229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-9' d='M 107.525,61.4138 L 120.101,54.1797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 73.147,25.0091 L 73.1672,18.456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 73.1672,18.456 L 73.1874,11.9028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.0017,24.9963 L 69.0219,18.4432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 69.0219,18.4432 L 69.0421,11.89' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 71.0743,25.0027 L 66.5994,27.5664' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 66.5994,27.5664 L 62.1245,30.13' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 53.053,56.1718 L 35.1036,66.5352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 52.4333,61.3162 L 39.8687,68.5706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 35.1036,66.5352 L 35.1036,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-16' d='M 53.053,97.6254 L 35.1036,87.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-16' d='M 52.4333,92.481 L 39.8687,85.2266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 100.629 89.4328\\nQ 100.629 88.0234, 101.326 87.2358\\nQ 102.022 86.4481, 103.324 86.4481\\nQ 104.626 86.4481, 105.322 87.2358\\nQ 106.018 88.0234, 106.018 89.4328\\nQ 106.018 90.8588, 105.314 91.6713\\nQ 104.609 92.4755, 103.324 92.4755\\nQ 102.031 92.4755, 101.326 91.6713\\nQ 100.629 90.8671, 100.629 89.4328\\nM 103.324 91.8123\\nQ 104.219 91.8123, 104.7 91.2153\\nQ 105.189 90.6101, 105.189 89.4328\\nQ 105.189 88.2804, 104.7 87.7\\nQ 104.219 87.1114, 103.324 87.1114\\nQ 102.429 87.1114, 101.939 87.6918\\nQ 101.459 88.2721, 101.459 89.4328\\nQ 101.459 90.6184, 101.939 91.2153\\nQ 102.429 91.8123, 103.324 91.8123\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 86.2146 111.503\\nQ 86.2146 110.093, 86.911 109.306\\nQ 87.6074 108.518, 88.9091 108.518\\nQ 90.2107 108.518, 90.9072 109.306\\nQ 91.6036 110.093, 91.6036 111.503\\nQ 91.6036 112.929, 90.8989 113.741\\nQ 90.1942 114.545, 88.9091 114.545\\nQ 87.6157 114.545, 86.911 113.741\\nQ 86.2146 112.937, 86.2146 111.503\\nM 88.9091 113.882\\nQ 89.8045 113.882, 90.2854 113.285\\nQ 90.7745 112.68, 90.7745 111.503\\nQ 90.7745 110.35, 90.2854 109.77\\nQ 89.8045 109.181, 88.9091 109.181\\nQ 88.0137 109.181, 87.5245 109.762\\nQ 87.0437 110.342, 87.0437 111.503\\nQ 87.0437 112.688, 87.5245 113.285\\nQ 88.0137 113.882, 88.9091 113.882\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 92.3083 108.584\\nL 93.1042 108.584\\nL 93.1042 111.08\\nL 96.1054 111.08\\nL 96.1054 108.584\\nL 96.9014 108.584\\nL 96.9014 114.454\\nL 96.1054 114.454\\nL 96.1054 111.743\\nL 93.1042 111.743\\nL 93.1042 114.454\\nL 92.3083 114.454\\nL 92.3083 108.584\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 68.431 8.43921\\nQ 68.431 7.02979, 69.1274 6.24217\\nQ 69.8238 5.45455, 71.1255 5.45455\\nQ 72.4271 5.45455, 73.1235 6.24217\\nQ 73.8199 7.02979, 73.8199 8.43921\\nQ 73.8199 9.86522, 73.1152 10.6777\\nQ 72.4105 11.4819, 71.1255 11.4819\\nQ 69.8321 11.4819, 69.1274 10.6777\\nQ 68.431 9.87351, 68.431 8.43921\\nM 71.1255 10.8187\\nQ 72.0209 10.8187, 72.5017 10.2217\\nQ 72.9909 9.6165, 72.9909 8.43921\\nQ 72.9909 7.2868, 72.5017 6.70645\\nQ 72.0209 6.1178, 71.1255 6.1178\\nQ 70.2301 6.1178, 69.7409 6.69816\\nQ 69.26 7.27851, 69.26 8.43921\\nQ 69.26 9.62479, 69.7409 10.2217\\nQ 70.2301 10.8187, 71.1255 10.8187\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 51.3824 28.9698\\nL 52.1784 28.9698\\nL 52.1784 31.4654\\nL 55.1796 31.4654\\nL 55.1796 28.9698\\nL 55.9755 28.9698\\nL 55.9755 34.8397\\nL 55.1796 34.8397\\nL 55.1796 32.1286\\nL 52.1784 32.1286\\nL 52.1784 34.8397\\nL 51.3824 34.8397\\nL 51.3824 28.9698\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 56.3901 31.8882\\nQ 56.3901 30.4788, 57.0865 29.6911\\nQ 57.7829 28.9035, 59.0845 28.9035\\nQ 60.3862 28.9035, 61.0826 29.6911\\nQ 61.779 30.4788, 61.779 31.8882\\nQ 61.779 33.3142, 61.0743 34.1267\\nQ 60.3696 34.9309, 59.0845 34.9309\\nQ 57.7912 34.9309, 57.0865 34.1267\\nQ 56.3901 33.3225, 56.3901 31.8882\\nM 59.0845 34.2676\\nQ 59.9799 34.2676, 60.4608 33.6707\\nQ 60.95 33.0655, 60.95 31.8882\\nQ 60.95 30.7358, 60.4608 30.1554\\nQ 59.9799 29.5668, 59.0845 29.5668\\nQ 58.1891 29.5668, 57.7 30.1471\\nQ 57.2191 30.7275, 57.2191 31.8882\\nQ 57.2191 33.0738, 57.7 33.6707\\nQ 58.1891 34.2676, 59.0845 34.2676\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.28, "data-ID": 1183, "mols2grid-id": 235, "mols2grid-tooltip": "<strong>Name</strong>: Diphenic_Acid<br><strong>SMILES</strong>: O=C(O)c(c(c(c(ccc1)C(=O)O)c1)ccc2)c2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.28</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1ccccc1C(=O)Oc2ccccc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 87.2216,30.6286 L 87.2216,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 83.8651,28.1112 L 83.8651,16.3633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 72.6878,39.0199 L 87.2216,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 87.2216,13.8459 L 72.6878,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.6878,5.45455 L 58.154,13.8459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 72.186,9.62008 L 62.0123,15.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 58.154,13.8459 L 58.154,30.6286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 58.154,30.6286 L 72.6878,39.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 62.0123,28.9805 L 72.186,34.8544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 72.6878,39.0199 L 72.7225,55.8116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 71.8808,54.3596 L 67.3316,56.9966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 67.3316,56.9966 L 62.7824,59.6336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 73.5641,57.2636 L 69.0149,59.9006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 69.0149,59.9006 L 64.4656,62.5376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 72.7225,55.8116 L 78.6987,59.2509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-6 atom-8' d='M 78.6987,59.2509 L 84.6749,62.6901' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.2824,67.0842 L 87.2968,74.0316' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.2968,74.0316 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.3111,80.9789 L 101.845,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 87.8127,85.1445 L 97.9864,91.0193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-9' d='M 72.7773,89.3714 L 87.3111,80.9789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 101.845,89.3714 L 101.846,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 101.846,106.154 L 87.3122,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 97.9877,104.506 L 87.814,110.38' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 87.3122,114.545 L 72.7773,106.154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 72.7773,106.154 L 72.7773,89.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 76.1338,103.637 L 76.1338,91.8888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-7' d='M 58.9248 62.5582\\nQ 58.9248 61.417, 59.4887 60.7793\\nQ 60.0526 60.1415, 61.1066 60.1415\\nQ 62.1605 60.1415, 62.7244 60.7793\\nQ 63.2883 61.417, 63.2883 62.5582\\nQ 63.2883 63.7129, 62.7177 64.3708\\nQ 62.1471 65.0219, 61.1066 65.0219\\nQ 60.0594 65.0219, 59.4887 64.3708\\nQ 58.9248 63.7196, 58.9248 62.5582\\nM 61.1066 64.4849\\nQ 61.8316 64.4849, 62.221 64.0016\\nQ 62.617 63.5115, 62.617 62.5582\\nQ 62.617 61.6251, 62.221 61.1552\\nQ 61.8316 60.6786, 61.1066 60.6786\\nQ 60.3816 60.6786, 59.9855 61.1485\\nQ 59.5962 61.6184, 59.5962 62.5582\\nQ 59.5962 63.5182, 59.9855 64.0016\\nQ 60.3816 64.4849, 61.1066 64.4849\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 85.0947 64.2007\\nQ 85.0947 63.0595, 85.6586 62.4217\\nQ 86.2225 61.784, 87.2764 61.784\\nQ 88.3304 61.784, 88.8943 62.4217\\nQ 89.4582 63.0595, 89.4582 64.2007\\nQ 89.4582 65.3554, 88.8876 66.0132\\nQ 88.3169 66.6644, 87.2764 66.6644\\nQ 86.2292 66.6644, 85.6586 66.0132\\nQ 85.0947 65.3621, 85.0947 64.2007\\nM 87.2764 66.1274\\nQ 88.0014 66.1274, 88.3908 65.644\\nQ 88.7869 65.154, 88.7869 64.2007\\nQ 88.7869 63.2676, 88.3908 62.7977\\nQ 88.0014 62.321, 87.2764 62.321\\nQ 86.5514 62.321, 86.1553 62.791\\nQ 85.766 63.2609, 85.766 64.2007\\nQ 85.766 65.1607, 86.1553 65.644\\nQ 86.5514 66.1274, 87.2764 66.1274\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.85, "data-ID": 1188, "mols2grid-id": 236, "mols2grid-tooltip": "<strong>Name</strong>: Benzoin<br><strong>SMILES</strong>: c1ccccc1C(=O)Oc2ccccc2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.85</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C(C(C(=O)c(c1ccc2)c2)C1=O)C(C)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 129.405,71.6826 L 125.322,64.8219' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 125.322,64.8219 L 121.24,57.9611' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 124.906,74.3594 L 120.824,67.4986' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 120.824,67.4986 L 116.741,60.6378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 118.991,59.2994 L 92.8474,59.6484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-1 atom-13' d='M 118.991,59.2994 L 131.791,36.4541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 92.8474,59.6484 L 77.5781,80.9618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-2 atom-11' d='M 92.8474,59.6484 L 77.5781,38.9701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 75.0933,81.7838 L 77.675,89.5877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 77.675,89.5877 L 80.2566,97.3915' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 80.063,80.1398 L 82.6446,87.9436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 82.6446,87.9436 L 85.2263,95.7475' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 77.5781,80.9618 L 52.7646,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 52.7646,73.0088 L 52.7646,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 47.53,69.0959 L 47.53,50.836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-5 atom-10' d='M 52.7646,73.0088 L 30.1774,86.3691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 52.7646,46.9232 L 30.1774,33.5628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-6' d='M 77.5781,38.9701 L 52.7646,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 30.1774,33.5628 L 7.27273,46.9232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 29.3792,40.0885 L 13.3459,49.4407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 7.27273,46.9232 L 7.27273,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 30.1774,86.3691 L 7.27273,73.0088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-9' d='M 29.3792,79.8435 L 13.3459,70.4912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 80.0688,39.7743 L 82.5774,32.0044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 82.5774,32.0044 L 85.0859,24.2346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 75.0875,38.166 L 77.596,30.3962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-12' d='M 77.596,30.3962 L 80.1045,22.6264' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 131.791,36.4541 L 152.727,36.1714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 131.791,36.4541 L 142.019,18.1837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-16' d='M 131.791,36.4541 L 121.084,18.4594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 126.294 77.3133\\nQ 126.294 75.5336, 127.174 74.539\\nQ 128.053 73.5444, 129.697 73.5444\\nQ 131.341 73.5444, 132.22 74.539\\nQ 133.099 75.5336, 133.099 77.3133\\nQ 133.099 79.114, 132.21 80.14\\nQ 131.32 81.1555, 129.697 81.1555\\nQ 128.064 81.1555, 127.174 80.14\\nQ 126.294 79.1245, 126.294 77.3133\\nM 129.697 80.318\\nQ 130.828 80.318, 131.435 79.5642\\nQ 132.052 78.7999, 132.052 77.3133\\nQ 132.052 75.8581, 131.435 75.1253\\nQ 130.828 74.382, 129.697 74.382\\nQ 128.566 74.382, 127.949 75.1148\\nQ 127.341 75.8476, 127.341 77.3133\\nQ 127.341 78.8104, 127.949 79.5642\\nQ 128.566 80.318, 129.697 80.318\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 80.752 100.862\\nQ 80.752 99.0821, 81.6314 98.0876\\nQ 82.5108 97.093, 84.1545 97.093\\nQ 85.7982 97.093, 86.6776 98.0876\\nQ 87.557 99.0821, 87.557 100.862\\nQ 87.557 102.663, 86.6671 103.689\\nQ 85.7772 104.704, 84.1545 104.704\\nQ 82.5213 104.704, 81.6314 103.689\\nQ 80.752 102.673, 80.752 100.862\\nM 84.1545 103.867\\nQ 85.2852 103.867, 85.8924 103.113\\nQ 86.5101 102.348, 86.5101 100.862\\nQ 86.5101 99.4067, 85.8924 98.6738\\nQ 85.2852 97.9305, 84.1545 97.9305\\nQ 83.0238 97.9305, 82.4062 98.6634\\nQ 81.7989 99.3962, 81.7989 100.862\\nQ 81.7989 102.359, 82.4062 103.113\\nQ 83.0238 103.867, 84.1545 103.867\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 80.609 19.0648\\nQ 80.609 17.2851, 81.4884 16.2905\\nQ 82.3678 15.296, 84.0114 15.296\\nQ 85.6551 15.296, 86.5345 16.2905\\nQ 87.4139 17.2851, 87.4139 19.0648\\nQ 87.4139 20.8655, 86.524 21.8915\\nQ 85.6341 22.907, 84.0114 22.907\\nQ 82.3782 22.907, 81.4884 21.8915\\nQ 80.609 20.876, 80.609 19.0648\\nM 84.0114 22.0695\\nQ 85.1421 22.0695, 85.7493 21.3157\\nQ 86.367 20.5515, 86.367 19.0648\\nQ 86.367 17.6096, 85.7493 16.8768\\nQ 85.1421 16.1335, 84.0114 16.1335\\nQ 82.8808 16.1335, 82.2631 16.8663\\nQ 81.6559 17.5992, 81.6559 19.0648\\nQ 81.6559 20.5619, 82.2631 21.3157\\nQ 82.8808 22.0695, 84.0114 22.0695\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.11, "data-ID": 1193, "mols2grid-id": 237, "mols2grid-tooltip": "<strong>Name</strong>: Pindone<br><strong>SMILES</strong>: O=C(C(C(=O)c(c1ccc2)c2)C1=O)C(C)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.11</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CN(C)CCN(Cc1cccs1)c2ccccn2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 106.747,114.545 L 100.47,110.907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 100.47,110.907 L 94.1936,107.268' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 88.529,107.256 L 82.2373,110.875' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 82.2373,110.875 L 75.9456,114.495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.3655,101.922 L 91.376,92.6512' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 91.376,92.6512 L 91.3865,83.3806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 91.3865,83.3806 L 72.141,72.2246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.141,72.2246 L 72.1515,62.9548' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 72.1515,62.9548 L 72.162,53.6849' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 75.11,48.2946 L 83.2898,43.6093' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 83.2898,43.6093 L 91.4695,38.9241' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-12' d='M 69.2224,48.2697 L 61.0782,43.5361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-5 atom-12' d='M 61.0782,43.5361 L 52.934,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 91.4695,38.9241 L 110.702,50.1008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 110.702,50.1008 L 130.776,40.9946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 115.55,52.7841 L 129.601,46.4098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 112.313,68.3698 L 111.507,59.2353' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-7' d='M 111.507,59.2353 L 110.702,50.1008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 130.776,40.9946 L 145.572,57.5886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 145.572,57.5886 L 134.362,76.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 140.051,58.2267 L 132.204,71.6663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 134.362,76.7881 L 124.788,74.7043' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 124.788,74.7043 L 115.213,72.6204' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 52.934,38.8025 L 52.934,16.5705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 48.4876,35.4677 L 48.4876,19.9053' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-12' d='M 36.6246,48.219 L 44.7793,43.5108' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-12' d='M 44.7793,43.5108 L 52.934,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 52.934,16.5705 L 33.6811,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.6811,5.45455 L 14.4282,16.5705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.0164,10.9726 L 19.5394,18.7538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 14.4282,16.5705 L 14.4282,38.8025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 14.4282,38.8025 L 22.5829,43.5108' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 22.5829,43.5108 L 30.7376,48.219' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 19.0979,36.3643 L 24.8062,39.6601' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 24.8062,39.6601 L 30.5145,42.9559' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 89.9696 102.478\\nL 92.0327 105.813\\nQ 92.2372 106.142, 92.5663 106.738\\nQ 92.8953 107.333, 92.9131 107.369\\nL 92.9131 102.478\\nL 93.749 102.478\\nL 93.749 108.774\\nL 92.8864 108.774\\nL 90.6721 105.128\\nQ 90.4142 104.701, 90.1385 104.212\\nQ 89.8717 103.723, 89.7917 103.572\\nL 89.7917 108.774\\nL 88.9736 108.774\\nL 88.9736 102.478\\nL 89.9696 102.478\\n' fill='#0000FF'/>\\n<path class='atom-5' d='M 70.7745 46.8327\\nL 72.8376 50.1675\\nQ 73.0421 50.4966, 73.3712 51.0924\\nQ 73.7002 51.6882, 73.718 51.7238\\nL 73.718 46.8327\\nL 74.5539 46.8327\\nL 74.5539 53.1288\\nL 73.6913 53.1288\\nL 71.477 49.4828\\nQ 71.2191 49.0559, 70.9434 48.5668\\nQ 70.6766 48.0777, 70.5966 47.9265\\nL 70.5966 53.1288\\nL 69.7785 53.1288\\nL 69.7785 46.8327\\nL 70.7745 46.8327\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 110.86 74.2211\\nQ 110.931 74.2477, 111.225 74.3722\\nQ 111.518 74.4967, 111.838 74.5768\\nQ 112.167 74.6479, 112.488 74.6479\\nQ 113.083 74.6479, 113.43 74.3633\\nQ 113.777 74.0699, 113.777 73.563\\nQ 113.777 73.2162, 113.599 73.0028\\nQ 113.43 72.7893, 113.163 72.6737\\nQ 112.897 72.5581, 112.452 72.4247\\nQ 111.892 72.2558, 111.554 72.0957\\nQ 111.225 71.9356, 110.985 71.5977\\nQ 110.754 71.2598, 110.754 70.6906\\nQ 110.754 69.8992, 111.287 69.4101\\nQ 111.83 68.921, 112.897 68.921\\nQ 113.626 68.921, 114.453 69.2678\\nL 114.248 69.9525\\nQ 113.492 69.6413, 112.923 69.6413\\nQ 112.31 69.6413, 111.972 69.8992\\nQ 111.634 70.1482, 111.643 70.5839\\nQ 111.643 70.9218, 111.812 71.1264\\nQ 111.99 71.3309, 112.239 71.4465\\nQ 112.497 71.5621, 112.923 71.6955\\nQ 113.492 71.8734, 113.83 72.0512\\nQ 114.168 72.2291, 114.408 72.5937\\nQ 114.657 72.9494, 114.657 73.563\\nQ 114.657 74.4345, 114.071 74.9058\\nQ 113.492 75.3682, 112.523 75.3682\\nQ 111.963 75.3682, 111.536 75.2437\\nQ 111.118 75.1281, 110.62 74.9236\\nL 110.86 74.2211\\n' fill='#CCCC00'/>\\n<path class='atom-17' d='M 32.2894 46.7705\\nL 34.3525 50.1053\\nQ 34.5571 50.4343, 34.8861 51.0301\\nQ 35.2151 51.6259, 35.2329 51.6615\\nL 35.2329 46.7705\\nL 36.0688 46.7705\\nL 36.0688 53.0666\\nL 35.2062 53.0666\\nL 32.9919 49.4205\\nQ 32.734 48.9937, 32.4584 48.5046\\nQ 32.1916 48.0155, 32.1115 47.8643\\nL 32.1115 53.0666\\nL 31.2934 53.0666\\nL 31.2934 46.7705\\nL 32.2894 46.7705\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.64, "data-ID": 1198, "mols2grid-id": 238, "mols2grid-tooltip": "<strong>Name</strong>: Methapyrilene<br><strong>SMILES</strong>: CN(C)CCN(Cc1cccs1)c2ccccn2<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.64</span>", "style-Solubility": "color: black"}, {"data-SMILES": "Oc1cc(O)c2C(=O)C(O)=C(c3ccc(O)cc3O)Oc2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 16.5118,50.8778 L 21.309,53.6664' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.309,53.6664 L 26.1062,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 26.1062,56.4551 L 26.1062,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 29.6488,59.107 L 29.6488,71.4829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-1' d='M 41.631,47.614 L 26.1062,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 26.1062,74.1349 L 41.631,82.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 41.631,82.976 L 41.6479,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 41.6479,88.6157 L 41.6648,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 41.631,82.976 L 56.9396,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 42.1556,78.5821 L 52.8716,72.3933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.9396,74.1349 L 72.2483,82.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-20 atom-5' d='M 56.9396,56.4551 L 56.9396,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.477,82.976 L 70.477,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 70.477,88.6157 L 70.477,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.0195,82.976 L 74.0195,88.6157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 74.0195,88.6157 L 74.0195,94.2555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 72.2483,82.976 L 87.5581,74.1349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 87.5581,74.1349 L 92.3654,76.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 92.3654,76.9104 L 97.1726,79.686' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 89.3294,74.1349 L 85.7868,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 85.7868,74.1349 L 89.3294,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 87.5581,56.4551 L 102.906,47.5939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-10 atom-19' d='M 87.5581,56.4551 L 81.2755,52.827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-10 atom-19' d='M 81.2755,52.827 L 74.9929,49.199' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.906,47.5939 L 118.232,56.4751' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 106.981,45.861 L 117.709,52.0778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-11' d='M 102.935,29.881 L 102.906,47.5939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 118.232,56.4751 L 133.587,47.6423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 133.587,47.6423 L 133.614,29.9295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 130.048,44.98 L 130.067,32.5809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 133.614,29.9295 L 138.427,27.161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.427,27.161 L 143.24,24.3926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-16' d='M 133.614,29.9295 L 118.289,21.0494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 118.289,21.0494 L 102.935,29.881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 117.752,25.4449 L 107.005,31.6271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 102.935,29.881 L 98.1333,27.0983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 98.1333,27.0983 L 93.3313,24.3155' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 69.5036,49.1991 L 63.2216,52.8271' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 63.2216,52.8271 L 56.9396,56.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 56.9396,56.4551 L 41.631,47.614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-21' d='M 52.8716,58.1966 L 42.1556,52.0079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 46.8535\\nL 7.9529 46.8535\\nL 7.9529 48.9861\\nL 10.5177 48.9861\\nL 10.5177 46.8535\\nL 11.1979 46.8535\\nL 11.1979 51.8698\\nL 10.5177 51.8698\\nL 10.5177 49.5529\\nL 7.9529 49.5529\\nL 7.9529 51.8698\\nL 7.27273 51.8698\\nL 7.27273 46.8535\\n' fill='#FF0000'/>\\n<path class='atom-0' d='M 11.5522 49.3475\\nQ 11.5522 48.143, 12.1473 47.4699\\nQ 12.7425 46.7968, 13.8548 46.7968\\nQ 14.9672 46.7968, 15.5624 47.4699\\nQ 16.1575 48.143, 16.1575 49.3475\\nQ 16.1575 50.5661, 15.5553 51.2605\\nQ 14.953 51.9477, 13.8548 51.9477\\nQ 12.7495 51.9477, 12.1473 51.2605\\nQ 11.5522 50.5732, 11.5522 49.3475\\nM 13.8548 51.3809\\nQ 14.62 51.3809, 15.031 50.8708\\nQ 15.449 50.3536, 15.449 49.3475\\nQ 15.449 48.3626, 15.031 47.8667\\nQ 14.62 47.3636, 13.8548 47.3636\\nQ 13.0896 47.3636, 12.6716 47.8596\\nQ 12.2607 48.3556, 12.2607 49.3475\\nQ 12.2607 50.3607, 12.6716 50.8708\\nQ 13.0896 51.3809, 13.8548 51.3809\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 39.3708 97.1604\\nQ 39.3708 95.9559, 39.966 95.2829\\nQ 40.5611 94.6098, 41.6735 94.6098\\nQ 42.7859 94.6098, 43.381 95.2829\\nQ 43.9762 95.9559, 43.9762 97.1604\\nQ 43.9762 98.3791, 43.3739 99.0734\\nQ 42.7717 99.7607, 41.6735 99.7607\\nQ 40.5682 99.7607, 39.966 99.0734\\nQ 39.3708 98.3862, 39.3708 97.1604\\nM 41.6735 99.1939\\nQ 42.4387 99.1939, 42.8496 98.6837\\nQ 43.2676 98.1665, 43.2676 97.1604\\nQ 43.2676 96.1756, 42.8496 95.6796\\nQ 42.4387 95.1766, 41.6735 95.1766\\nQ 40.9083 95.1766, 40.4903 95.6725\\nQ 40.0793 96.1685, 40.0793 97.1604\\nQ 40.0793 98.1736, 40.4903 98.6837\\nQ 40.9083 99.1939, 41.6735 99.1939\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 44.5784 94.6664\\nL 45.2586 94.6664\\nL 45.2586 96.7991\\nL 47.8234 96.7991\\nL 47.8234 94.6664\\nL 48.5036 94.6664\\nL 48.5036 99.6827\\nL 47.8234 99.6827\\nL 47.8234 97.3659\\nL 45.2586 97.3659\\nL 45.2586 99.6827\\nL 44.5784 99.6827\\nL 44.5784 94.6664\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 69.9456 97.1604\\nQ 69.9456 95.9559, 70.5407 95.2829\\nQ 71.1359 94.6098, 72.2483 94.6098\\nQ 73.3606 94.6098, 73.9558 95.2829\\nQ 74.5509 95.9559, 74.5509 97.1604\\nQ 74.5509 98.3791, 73.9487 99.0734\\nQ 73.3465 99.7607, 72.2483 99.7607\\nQ 71.143 99.7607, 70.5407 99.0734\\nQ 69.9456 98.3862, 69.9456 97.1604\\nM 72.2483 99.1939\\nQ 73.0135 99.1939, 73.4244 98.6837\\nQ 73.8424 98.1665, 73.8424 97.1604\\nQ 73.8424 96.1756, 73.4244 95.6796\\nQ 73.0135 95.1766, 72.2483 95.1766\\nQ 71.4831 95.1766, 71.065 95.6725\\nQ 70.6541 96.1685, 70.6541 97.1604\\nQ 70.6541 98.1736, 71.065 98.6837\\nQ 71.4831 99.1939, 72.2483 99.1939\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 97.5269 81.2342\\nQ 97.5269 80.0297, 98.122 79.3566\\nQ 98.7172 78.6835, 99.8296 78.6835\\nQ 100.942 78.6835, 101.537 79.3566\\nQ 102.132 80.0297, 102.132 81.2342\\nQ 102.132 82.4528, 101.53 83.1472\\nQ 100.928 83.8344, 99.8296 83.8344\\nQ 98.7243 83.8344, 98.122 83.1472\\nQ 97.5269 82.4599, 97.5269 81.2342\\nM 99.8296 83.2676\\nQ 100.595 83.2676, 101.006 82.7575\\nQ 101.424 82.2403, 101.424 81.2342\\nQ 101.424 80.2494, 101.006 79.7534\\nQ 100.595 79.2503, 99.8296 79.2503\\nQ 99.0644 79.2503, 98.6463 79.7463\\nQ 98.2354 80.2423, 98.2354 81.2342\\nQ 98.2354 82.2474, 98.6463 82.7575\\nQ 99.0644 83.2676, 99.8296 83.2676\\n' fill='#FF0000'/>\\n<path class='atom-9' d='M 102.734 78.7402\\nL 103.415 78.7402\\nL 103.415 80.8728\\nL 105.979 80.8728\\nL 105.979 78.7402\\nL 106.66 78.7402\\nL 106.66 83.7565\\nL 105.979 83.7565\\nL 105.979 81.4397\\nL 103.415 81.4397\\nL 103.415 83.7565\\nL 102.734 83.7565\\nL 102.734 78.7402\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 143.595 22.8785\\nQ 143.595 21.6741, 144.19 21.001\\nQ 144.785 20.3279, 145.897 20.3279\\nQ 147.01 20.3279, 147.605 21.001\\nQ 148.2 21.6741, 148.2 22.8785\\nQ 148.2 24.0972, 147.598 24.7915\\nQ 146.995 25.4788, 145.897 25.4788\\nQ 144.792 25.4788, 144.19 24.7915\\nQ 143.595 24.1043, 143.595 22.8785\\nM 145.897 24.912\\nQ 146.662 24.912, 147.073 24.4019\\nQ 147.491 23.8846, 147.491 22.8785\\nQ 147.491 21.8937, 147.073 21.3978\\nQ 146.662 20.8947, 145.897 20.8947\\nQ 145.132 20.8947, 144.714 21.3907\\nQ 144.303 21.8866, 144.303 22.8785\\nQ 144.303 23.8917, 144.714 24.4019\\nQ 145.132 24.912, 145.897 24.912\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 148.802 20.3846\\nL 149.482 20.3846\\nL 149.482 22.5172\\nL 152.047 22.5172\\nL 152.047 20.3846\\nL 152.727 20.3846\\nL 152.727 25.4009\\nL 152.047 25.4009\\nL 152.047 23.084\\nL 149.482 23.084\\nL 149.482 25.4009\\nL 148.802 25.4009\\nL 148.802 20.3846\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 84.0923 20.296\\nL 84.7724 20.296\\nL 84.7724 22.4286\\nL 87.3373 22.4286\\nL 87.3373 20.296\\nL 88.0174 20.296\\nL 88.0174 25.3123\\nL 87.3373 25.3123\\nL 87.3373 22.9955\\nL 84.7724 22.9955\\nL 84.7724 25.3123\\nL 84.0923 25.3123\\nL 84.0923 20.296\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 88.3717 22.79\\nQ 88.3717 21.5855, 88.9668 20.9124\\nQ 89.562 20.2393, 90.6744 20.2393\\nQ 91.7867 20.2393, 92.3819 20.9124\\nQ 92.977 21.5855, 92.977 22.79\\nQ 92.977 24.0086, 92.3748 24.703\\nQ 91.7726 25.3902, 90.6744 25.3902\\nQ 89.5691 25.3902, 88.9668 24.703\\nQ 88.3717 24.0157, 88.3717 22.79\\nM 90.6744 24.8234\\nQ 91.4396 24.8234, 91.8505 24.3133\\nQ 92.2685 23.7961, 92.2685 22.79\\nQ 92.2685 21.8051, 91.8505 21.3092\\nQ 91.4396 20.8061, 90.6744 20.8061\\nQ 89.9092 20.8061, 89.4911 21.3021\\nQ 89.0802 21.7981, 89.0802 22.79\\nQ 89.0802 23.8032, 89.4911 24.3133\\nQ 89.9092 24.8234, 90.6744 24.8234\\n' fill='#FF0000'/>\\n<path class='atom-19' d='M 69.9456 47.6282\\nQ 69.9456 46.4237, 70.5407 45.7506\\nQ 71.1359 45.0775, 72.2483 45.0775\\nQ 73.3606 45.0775, 73.9558 45.7506\\nQ 74.5509 46.4237, 74.5509 47.6282\\nQ 74.5509 48.8468, 73.9487 49.5411\\nQ 73.3465 50.2284, 72.2483 50.2284\\nQ 71.143 50.2284, 70.5407 49.5411\\nQ 69.9456 48.8539, 69.9456 47.6282\\nM 72.2483 49.6616\\nQ 73.0135 49.6616, 73.4244 49.1515\\nQ 73.8424 48.6342, 73.8424 47.6282\\nQ 73.8424 46.6433, 73.4244 46.1474\\nQ 73.0135 45.6443, 72.2483 45.6443\\nQ 71.4831 45.6443, 71.065 46.1403\\nQ 70.6541 46.6362, 70.6541 47.6282\\nQ 70.6541 48.6413, 71.065 49.1515\\nQ 71.4831 49.6616, 72.2483 49.6616\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.08, "data-ID": 1203, "mols2grid-id": 239, "mols2grid-tooltip": "<strong>Name</strong>: Morin<br><strong>SMILES</strong>: Oc1cc(O)c2C(=O)C(O)=C(c3ccc(O)cc3O)Oc2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.08</span>", "style-Solubility": "color: red"}, {"data-SMILES": "NS(=O)(=O)c3cc2c(NC(Cc1ccccc1)NS2(=O)=O)cc3C(F)(F)F", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 17.4395,49.1315 L 21.1442,46.9916' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 21.1442,46.9916 L 24.8489,44.8517' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.1969,41.2437 L 28.195,37.4014' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 28.195,37.4014 L 28.193,33.5591' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.9628,41.2453 L 24.9609,37.403' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.9609,37.403 L 24.959,33.5607' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 25.5976,41.4168 L 22.0778,39.3861' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 22.0778,39.3861 L 18.5581,37.3553' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.9813,44.2181 L 20.4616,42.1873' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 20.4616,42.1873 L 16.9419,40.1565' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 28.4539,44.9329 L 34.522,48.4379' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 34.522,48.4379 L 40.5901,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.5901,51.9428 L 54.7629,43.8717' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 44.3164,53.5425 L 54.2374,47.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-4' d='M 40.5901,68.083 L 40.5901,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 54.7629,43.8717 L 68.7384,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.7384,51.9428 L 68.7384,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 65.5043,54.3639 L 65.5043,65.662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-6' d='M 80.8421,44.9526 L 74.7903,48.4477' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-6' d='M 74.7903,48.4477 L 68.7384,51.9428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 68.7384,68.083 L 74.656,71.5006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 74.656,71.5006 L 80.5737,74.9182' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-7 atom-21' d='M 68.7384,68.083 L 54.7629,76.1542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 84.8541,74.9183 L 90.7723,71.5007' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 90.7723,71.5007 L 96.6905,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 96.6905,68.083 L 110.719,76.1445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-17' d='M 96.6905,68.083 L 96.6905,61.3596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-9 atom-17' d='M 96.6905,61.3596 L 96.6905,54.6361' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 110.719,76.1445 L 124.719,68.0345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 124.719,68.0345 L 138.752,76.0712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 128.431,66.4336 L 138.254,72.0593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-11' d='M 124.663,51.8641 L 124.719,68.0345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 138.752,76.0712 L 152.727,67.9375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 152.727,67.9375 L 152.671,51.7671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 149.485,65.5232 L 149.446,54.2039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 152.671,51.7671 L 138.64,43.7305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 138.64,43.7305 L 124.663,51.8641' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 138.17,47.7457 L 128.386,53.4393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 94.5503,50.7069 L 89.5371,47.8119' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 89.5371,47.8119 L 84.5239,44.9169' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 81.6974,41.4738 L 78.1042,39.5108' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 78.1042,39.5108 L 74.511,37.5479' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 80.147,44.312 L 76.5537,42.349' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 76.5537,42.349 L 72.9605,40.3861' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 85.2809,44.3118 L 88.8741,42.3485' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 88.8741,42.3485 L 92.4674,40.3852' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 83.7302,41.4737 L 87.3235,39.5104' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 87.3235,39.5104 L 90.9167,37.5471' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 54.7629,76.1542 L 40.5901,68.083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 54.2374,72.1332 L 44.3164,66.4834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 40.5901,68.083 L 26.5811,76.1747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.5811,76.1747 L 26.5786,81.3363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 26.5786,81.3363 L 26.576,86.4978' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-25' d='M 26.5811,76.1747 L 21.8227,73.4262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-23 atom-25' d='M 21.8227,73.4262 L 17.0643,70.6776' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-26' d='M 26.5811,76.1747 L 21.8211,78.9211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-23 atom-26' d='M 21.8211,78.9211 L 17.0611,81.6674' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 7.27273 48.0318\\nL 7.89367 48.0318\\nL 7.89367 49.9787\\nL 10.2351 49.9787\\nL 10.2351 48.0318\\nL 10.8561 48.0318\\nL 10.8561 52.6112\\nL 10.2351 52.6112\\nL 10.2351 50.4961\\nL 7.89367 50.4961\\nL 7.89367 52.6112\\nL 7.27273 52.6112\\nL 7.27273 48.0318\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 11.0781 52.4506\\nQ 11.1891 52.1645, 11.4537 52.0066\\nQ 11.7184 51.8444, 12.0855 51.8444\\nQ 12.5423 51.8444, 12.7985 52.092\\nQ 13.0546 52.3396, 13.0546 52.7793\\nQ 13.0546 53.2275, 12.7216 53.6459\\nQ 12.3929 54.0642, 11.7099 54.5594\\nL 13.1058 54.5594\\nL 13.1058 54.9009\\nL 11.0695 54.9009\\nL 11.0695 54.6149\\nQ 11.633 54.2136, 11.966 53.9148\\nQ 12.3033 53.616, 12.4655 53.347\\nQ 12.6277 53.0781, 12.6277 52.8006\\nQ 12.6277 52.5103, 12.4826 52.3481\\nQ 12.3374 52.1859, 12.0855 52.1859\\nQ 11.8422 52.1859, 11.68 52.2841\\nQ 11.5178 52.3822, 11.4025 52.6\\nL 11.0781 52.4506\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 14.3671 48.0318\\nL 15.8677 50.4573\\nQ 16.0165 50.6966, 16.2558 51.13\\nQ 16.4951 51.5634, 16.5081 51.5893\\nL 16.5081 48.0318\\nL 17.1161 48.0318\\nL 17.1161 52.6112\\nL 16.4887 52.6112\\nL 14.8781 49.9593\\nQ 14.6905 49.6488, 14.49 49.2931\\nQ 14.296 48.9373, 14.2378 48.8274\\nL 14.2378 52.6112\\nL 13.6427 52.6112\\nL 13.6427 48.0318\\nL 14.3671 48.0318\\n' fill='#0000FF'/>\\n<path class='atom-1' d='M 25.2875 45.423\\nQ 25.3393 45.4424, 25.5527 45.5329\\nQ 25.7662 45.6235, 25.999 45.6817\\nQ 26.2383 45.7334, 26.4712 45.7334\\nQ 26.9045 45.7334, 27.1568 45.5264\\nQ 27.4091 45.313, 27.4091 44.9443\\nQ 27.4091 44.692, 27.2797 44.5368\\nQ 27.1568 44.3816, 26.9628 44.2975\\nQ 26.7687 44.2134, 26.4453 44.1164\\nQ 26.0378 43.9935, 25.792 43.8771\\nQ 25.5527 43.7606, 25.3781 43.5148\\nQ 25.2099 43.2691, 25.2099 42.8551\\nQ 25.2099 42.2794, 25.598 41.9237\\nQ 25.9925 41.5679, 26.7687 41.5679\\nQ 27.2991 41.5679, 27.9006 41.8202\\nL 27.7519 42.3182\\nQ 27.2021 42.0919, 26.7881 42.0919\\nQ 26.3418 42.0919, 26.096 42.2794\\nQ 25.8502 42.4605, 25.8567 42.7775\\nQ 25.8567 43.0233, 25.9796 43.172\\nQ 26.109 43.3208, 26.2901 43.4049\\nQ 26.4777 43.489, 26.7881 43.586\\nQ 27.2021 43.7154, 27.4479 43.8447\\nQ 27.6937 43.9741, 27.8683 44.2393\\nQ 28.0494 44.498, 28.0494 44.9443\\nQ 28.0494 45.5782, 27.6225 45.921\\nQ 27.2021 46.2573, 26.4971 46.2573\\nQ 26.0896 46.2573, 25.7791 46.1668\\nQ 25.4751 46.0827, 25.1129 45.9339\\nL 25.2875 45.423\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 24.4725 30.9278\\nQ 24.4725 29.8282, 25.0158 29.2138\\nQ 25.5592 28.5993, 26.5747 28.5993\\nQ 27.5902 28.5993, 28.1335 29.2138\\nQ 28.6768 29.8282, 28.6768 30.9278\\nQ 28.6768 32.0404, 28.127 32.6742\\nQ 27.5772 33.3016, 26.5747 33.3016\\nQ 25.5656 33.3016, 25.0158 32.6742\\nQ 24.4725 32.0468, 24.4725 30.9278\\nM 26.5747 32.7842\\nQ 27.2732 32.7842, 27.6484 32.3185\\nQ 28.03 31.8463, 28.03 30.9278\\nQ 28.03 30.0288, 27.6484 29.576\\nQ 27.2732 29.1167, 26.5747 29.1167\\nQ 25.8761 29.1167, 25.4945 29.5695\\nQ 25.1193 30.0223, 25.1193 30.9278\\nQ 25.1193 31.8528, 25.4945 32.3185\\nQ 25.8761 32.7842, 26.5747 32.7842\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 13.274 37.3992\\nQ 13.274 36.2996, 13.8173 35.6852\\nQ 14.3607 35.0707, 15.3762 35.0707\\nQ 16.3917 35.0707, 16.935 35.6852\\nQ 17.4783 36.2996, 17.4783 37.3992\\nQ 17.4783 38.5117, 16.9285 39.1456\\nQ 16.3787 39.773, 15.3762 39.773\\nQ 14.3671 39.773, 13.8173 39.1456\\nQ 13.274 38.5182, 13.274 37.3992\\nM 15.3762 39.2556\\nQ 16.0747 39.2556, 16.4499 38.7899\\nQ 16.8315 38.3177, 16.8315 37.3992\\nQ 16.8315 36.5001, 16.4499 36.0474\\nQ 16.0747 35.5881, 15.3762 35.5881\\nQ 14.6776 35.5881, 14.296 36.0409\\nQ 13.9208 36.4937, 13.9208 37.3992\\nQ 13.9208 38.3242, 14.296 38.7899\\nQ 14.6776 39.2556, 15.3762 39.2556\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 81.7016 73.8645\\nL 83.2022 76.29\\nQ 83.351 76.5294, 83.5903 76.9627\\nQ 83.8296 77.3961, 83.8426 77.422\\nL 83.8426 73.8645\\nL 84.4506 73.8645\\nL 84.4506 78.4439\\nL 83.8232 78.4439\\nL 82.2126 75.792\\nQ 82.025 75.4815, 81.8245 75.1258\\nQ 81.6305 74.77, 81.5723 74.6601\\nL 81.5723 78.4439\\nL 80.9772 78.4439\\nL 80.9772 73.8645\\nL 81.7016 73.8645\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 80.9222 78.9019\\nL 81.5431 78.9019\\nL 81.5431 80.8488\\nL 83.8846 80.8488\\nL 83.8846 78.9019\\nL 84.5056 78.9019\\nL 84.5056 83.4813\\nL 83.8846 83.4813\\nL 83.8846 81.3662\\nL 81.5431 81.3662\\nL 81.5431 83.4813\\nL 80.9222 83.4813\\nL 80.9222 78.9019\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 95.6782 49.6531\\nL 97.1788 52.0787\\nQ 97.3276 52.318, 97.5669 52.7514\\nQ 97.8062 53.1847, 97.8192 53.2106\\nL 97.8192 49.6531\\nL 98.4272 49.6531\\nL 98.4272 54.2326\\nL 97.7998 54.2326\\nL 96.1892 51.5806\\nQ 96.0016 51.2702, 95.8011 50.9144\\nQ 95.6071 50.5587, 95.5488 50.4487\\nL 95.5488 54.2326\\nL 94.9538 54.2326\\nL 94.9538 49.6531\\nL 95.6782 49.6531\\n' fill='#0000FF'/>\\n<path class='atom-17' d='M 98.977 49.6531\\nL 99.5979 49.6531\\nL 99.5979 51.6\\nL 101.939 51.6\\nL 101.939 49.6531\\nL 102.56 49.6531\\nL 102.56 54.2326\\nL 101.939 54.2326\\nL 101.939 52.1175\\nL 99.5979 52.1175\\nL 99.5979 54.2326\\nL 98.977 54.2326\\nL 98.977 49.6531\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 81.4203 45.4434\\nQ 81.472 45.4628, 81.6854 45.5534\\nQ 81.8989 45.6439, 82.1318 45.7022\\nQ 82.3711 45.7539, 82.6039 45.7539\\nQ 83.0373 45.7539, 83.2895 45.5469\\nQ 83.5418 45.3335, 83.5418 44.9648\\nQ 83.5418 44.7125, 83.4124 44.5573\\nQ 83.2895 44.4021, 83.0955 44.318\\nQ 82.9015 44.2339, 82.5781 44.1369\\nQ 82.1706 44.014, 81.9248 43.8975\\nQ 81.6854 43.7811, 81.5108 43.5353\\nQ 81.3426 43.2895, 81.3426 42.8756\\nQ 81.3426 42.2999, 81.7307 41.9442\\nQ 82.1253 41.5884, 82.9015 41.5884\\nQ 83.4318 41.5884, 84.0334 41.8407\\nL 83.8846 42.3387\\nQ 83.3348 42.1123, 82.9209 42.1123\\nQ 82.4746 42.1123, 82.2288 42.2999\\nQ 81.983 42.481, 81.9895 42.798\\nQ 81.9895 43.0438, 82.1123 43.1925\\nQ 82.2417 43.3413, 82.4228 43.4254\\nQ 82.6104 43.5095, 82.9209 43.6065\\nQ 83.3348 43.7358, 83.5806 43.8652\\nQ 83.8264 43.9946, 84.001 44.2598\\nQ 84.1822 44.5185, 84.1822 44.9648\\nQ 84.1822 45.5987, 83.7553 45.9415\\nQ 83.3348 46.2778, 82.6298 46.2778\\nQ 82.2223 46.2778, 81.9118 46.1873\\nQ 81.6078 46.1032, 81.2456 45.9544\\nL 81.4203 45.4434\\n' fill='#CCCC00'/>\\n<path class='atom-19' d='M 69.2591 37.6827\\nQ 69.2591 36.5831, 69.8024 35.9687\\nQ 70.3457 35.3542, 71.3612 35.3542\\nQ 72.3767 35.3542, 72.92 35.9687\\nQ 73.4634 36.5831, 73.4634 37.6827\\nQ 73.4634 38.7953, 72.9136 39.4291\\nQ 72.3638 40.0565, 71.3612 40.0565\\nQ 70.3522 40.0565, 69.8024 39.4291\\nQ 69.2591 38.8017, 69.2591 37.6827\\nM 71.3612 39.5391\\nQ 72.0598 39.5391, 72.4349 39.0734\\nQ 72.8165 38.6012, 72.8165 37.6827\\nQ 72.8165 36.7837, 72.4349 36.3309\\nQ 72.0598 35.8717, 71.3612 35.8717\\nQ 70.6626 35.8717, 70.281 36.3244\\nQ 69.9059 36.7772, 69.9059 37.6827\\nQ 69.9059 38.6077, 70.281 39.0734\\nQ 70.6626 39.5391, 71.3612 39.5391\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 91.9644 37.6817\\nQ 91.9644 36.5821, 92.5077 35.9676\\nQ 93.0511 35.3531, 94.0666 35.3531\\nQ 95.0821 35.3531, 95.6254 35.9676\\nQ 96.1687 36.5821, 96.1687 37.6817\\nQ 96.1687 38.7942, 95.6189 39.4281\\nQ 95.0691 40.0555, 94.0666 40.0555\\nQ 93.0575 40.0555, 92.5077 39.4281\\nQ 91.9644 38.8006, 91.9644 37.6817\\nM 94.0666 39.538\\nQ 94.7651 39.538, 95.1403 39.0723\\nQ 95.5219 38.6001, 95.5219 37.6817\\nQ 95.5219 36.7826, 95.1403 36.3298\\nQ 94.7651 35.8706, 94.0666 35.8706\\nQ 93.368 35.8706, 92.9864 36.3233\\nQ 92.6112 36.7761, 92.6112 37.6817\\nQ 92.6112 38.6066, 92.9864 39.0723\\nQ 93.368 39.538, 94.0666 39.538\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 25.2131 86.8213\\nL 27.9362 86.8213\\nL 27.9362 87.3452\\nL 25.8276 87.3452\\nL 25.8276 88.7358\\nL 27.7034 88.7358\\nL 27.7034 89.2662\\nL 25.8276 89.2662\\nL 25.8276 91.4007\\nL 25.2131 91.4007\\nL 25.2131 86.8213\\n' fill='#33CCCC'/>\\n<path class='atom-25' d='M 14.0178 67.4147\\nL 16.7409 67.4147\\nL 16.7409 67.9386\\nL 14.6323 67.9386\\nL 14.6323 69.3292\\nL 16.5081 69.3292\\nL 16.5081 69.8596\\nL 14.6323 69.8596\\nL 14.6323 71.9941\\nL 14.0178 71.9941\\nL 14.0178 67.4147\\n' fill='#33CCCC'/>\\n<path class='atom-26' d='M 14.0146 80.3499\\nL 16.7377 80.3499\\nL 16.7377 80.8738\\nL 14.6291 80.8738\\nL 14.6291 82.2644\\nL 16.5048 82.2644\\nL 16.5048 82.7948\\nL 14.6291 82.7948\\nL 14.6291 84.9293\\nL 14.0146 84.9293\\nL 14.0146 80.3499\\n' fill='#33CCCC'/>\\n</svg>\\n", "data-Solubility": -3.59, "data-ID": 1208, "mols2grid-id": 240, "mols2grid-tooltip": "<strong>Name</strong>: Bendroflumethiazide<br><strong>SMILES</strong>: NS(=O)(=O)c3cc2c(NC(Cc1ccccc1)NS2(=O)=O)cc3C(F)(F)F<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.59</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CC(C)Oc1cc(c(Cl)cc1Cl)N2N=C(OC2=O)C(C)(C)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 120.256,98.0699 L 109.473,91.8748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 109.473,91.8748 L 109.451,79.4389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 109.473,91.8748 L 103.949,95.0746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 103.949,95.0746 L 98.424,98.2744' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 93.6047,98.2855 L 88.0667,95.1035' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 88.0667,95.1035 L 82.5286,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 82.5286,91.9214 L 82.5286,76.3765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 79.4197,89.5897 L 79.4197,78.7083' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-4' d='M 69.0668,99.6939 L 82.5286,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 82.5286,76.3765 L 69.0668,68.6041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 69.0668,68.6041 L 55.6049,76.3765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.602,72.4624 L 59.1787,77.9031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-6 atom-12' d='M 69.0668,68.6041 L 69.0668,62.1225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-6 atom-12' d='M 69.0668,62.1225 L 69.0668,55.6409' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 55.6049,76.3765 L 50.5181,73.4399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 50.5181,73.4399 L 45.4313,70.5032' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 55.6049,76.3765 L 55.6049,91.9214' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 55.6049,91.9214 L 69.0668,99.6939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 59.1787,90.3949 L 68.602,95.8356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.0668,99.6939 L 69.0668,104.71' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 69.0668,104.71 L 69.0668,109.727' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 67.0119,51.5999 L 58.4684,45.5669' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-12' d='M 81.6281,44.1209 L 76.3748,47.8555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-12' d='M 76.3748,47.8555 L 71.1216,51.5901' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 58.7926,42.0486 L 59.2852,35.4697' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 59.2852,35.4697 L 59.7779,28.8907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 55.8343,41.0924 L 59.2852,35.4697' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 59.2852,35.4697 L 62.7362,29.8469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 61.257,29.3688 L 67.8242,29.3583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 67.8242,29.3583 L 74.3914,29.3478' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-14 atom-18' d='M 61.257,29.3688 L 52.1104,16.822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 77.6773,32.027 L 79.6527,38.0739' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 79.6527,38.0739 L 81.6281,44.1209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 81.1413,45.5972 L 85.8809,47.16' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 85.8809,47.16 L 90.6205,48.7229' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 82.1149,42.6446 L 86.8545,44.2074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 86.8545,44.2074 L 91.5941,45.7702' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 52.1104,16.822 L 39.7439,18.134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-20' d='M 52.1104,16.822 L 57.1542,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-21' d='M 52.1104,16.822 L 44.7898,6.76964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 93.9935 99.6825\\nQ 93.9935 98.6254, 94.5158 98.0347\\nQ 95.0381 97.444, 96.0143 97.444\\nQ 96.9906 97.444, 97.5129 98.0347\\nQ 98.0352 98.6254, 98.0352 99.6825\\nQ 98.0352 100.752, 97.5067 101.361\\nQ 96.9781 101.964, 96.0143 101.964\\nQ 95.0443 101.964, 94.5158 101.361\\nQ 93.9935 100.758, 93.9935 99.6825\\nM 96.0143 101.467\\nQ 96.6859 101.467, 97.0465 101.019\\nQ 97.4134 100.565, 97.4134 99.6825\\nQ 97.4134 98.8182, 97.0465 98.3829\\nQ 96.6859 97.9414, 96.0143 97.9414\\nQ 95.3428 97.9414, 94.9759 98.3767\\nQ 94.6153 98.812, 94.6153 99.6825\\nQ 94.6153 100.572, 94.9759 101.019\\nQ 95.3428 101.467, 96.0143 101.467\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 40.6186 70.3109\\nQ 40.6186 69.2166, 41.1285 68.6445\\nQ 41.6445 68.0662, 42.6208 68.0662\\nQ 43.5286 68.0662, 44.0136 68.7067\\nL 43.6032 69.0425\\nQ 43.2488 68.5761, 42.6208 68.5761\\nQ 41.9554 68.5761, 41.601 69.0238\\nQ 41.2528 69.4653, 41.2528 70.3109\\nQ 41.2528 71.1814, 41.6135 71.6291\\nQ 41.9803 72.0768, 42.6892 72.0768\\nQ 43.1742 72.0768, 43.74 71.7846\\nL 43.9141 72.2509\\nQ 43.684 72.4002, 43.3358 72.4872\\nQ 42.9876 72.5743, 42.6021 72.5743\\nQ 41.6445 72.5743, 41.1285 71.9898\\nQ 40.6186 71.4053, 40.6186 70.3109\\n' fill='#00CC00'/>\\n<path class='atom-8' d='M 44.5483 67.7989\\nL 45.1204 67.7989\\nL 45.1204 72.5183\\nL 44.5483 72.5183\\nL 44.5483 67.7989\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 67.3693 112.282\\nQ 67.3693 111.188, 67.8791 110.616\\nQ 68.3952 110.037, 69.3714 110.037\\nQ 70.2793 110.037, 70.7643 110.678\\nL 70.3539 111.014\\nQ 69.9995 110.547, 69.3714 110.547\\nQ 68.7061 110.547, 68.3517 110.995\\nQ 68.0035 111.436, 68.0035 112.282\\nQ 68.0035 113.153, 68.3641 113.6\\nQ 68.731 114.048, 69.4398 114.048\\nQ 69.9248 114.048, 70.4907 113.756\\nL 70.6648 114.222\\nQ 70.4347 114.371, 70.0865 114.458\\nQ 69.7383 114.545, 69.3528 114.545\\nQ 68.3952 114.545, 67.8791 113.961\\nQ 67.3693 113.376, 67.3693 112.282\\n' fill='#00CC00'/>\\n<path class='atom-11' d='M 71.299 109.77\\nL 71.8711 109.77\\nL 71.8711 114.489\\nL 71.299 114.489\\nL 71.299 109.77\\n' fill='#00CC00'/>\\n<path class='atom-12' d='M 68.0937 50.8498\\nL 69.5362 53.1815\\nQ 69.6792 53.4116, 69.9093 53.8282\\nQ 70.1394 54.2448, 70.1518 54.2696\\nL 70.1518 50.8498\\nL 70.7363 50.8498\\nL 70.7363 55.2521\\nL 70.1331 55.2521\\nL 68.5849 52.7027\\nQ 68.4046 52.4042, 68.2118 52.0623\\nQ 68.0253 51.7203, 67.9693 51.6146\\nL 67.9693 55.2521\\nL 67.3972 55.2521\\nL 67.3972 50.8498\\nL 68.0937 50.8498\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 55.5033 41.9591\\nL 56.9459 44.2909\\nQ 57.0889 44.5209, 57.319 44.9375\\nQ 57.549 45.3541, 57.5615 45.379\\nL 57.5615 41.9591\\nL 58.146 41.9591\\nL 58.146 46.3614\\nL 57.5428 46.3614\\nL 55.9945 43.8121\\nQ 55.8142 43.5136, 55.6215 43.1716\\nQ 55.4349 42.8296, 55.379 42.7239\\nL 55.379 46.3614\\nL 54.8069 46.3614\\nL 54.8069 41.9591\\nL 55.5033 41.9591\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 74.78 29.3564\\nQ 74.78 28.2993, 75.3023 27.7086\\nQ 75.8246 27.1179, 76.8009 27.1179\\nQ 77.7771 27.1179, 78.2994 27.7086\\nQ 78.8217 28.2993, 78.8217 29.3564\\nQ 78.8217 30.4259, 78.2932 31.0352\\nQ 77.7646 31.6384, 76.8009 31.6384\\nQ 75.8309 31.6384, 75.3023 31.0352\\nQ 74.78 30.4321, 74.78 29.3564\\nM 76.8009 31.1409\\nQ 77.4724 31.1409, 77.833 30.6932\\nQ 78.1999 30.2393, 78.1999 29.3564\\nQ 78.1999 28.4921, 77.833 28.0568\\nQ 77.4724 27.6153, 76.8009 27.6153\\nQ 76.1293 27.6153, 75.7625 28.0506\\nQ 75.4018 28.4859, 75.4018 29.3564\\nQ 75.4018 30.2455, 75.7625 30.6932\\nQ 76.1293 31.1409, 76.8009 31.1409\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 91.4182 48.0278\\nQ 91.4182 46.9708, 91.9405 46.3801\\nQ 92.4629 45.7894, 93.4391 45.7894\\nQ 94.4153 45.7894, 94.9376 46.3801\\nQ 95.4599 46.9708, 95.4599 48.0278\\nQ 95.4599 49.0973, 94.9314 49.7067\\nQ 94.4029 50.3098, 93.4391 50.3098\\nQ 92.4691 50.3098, 91.9405 49.7067\\nQ 91.4182 49.1036, 91.4182 48.0278\\nM 93.4391 49.8124\\nQ 94.1106 49.8124, 94.4713 49.3647\\nQ 94.8381 48.9108, 94.8381 48.0278\\nQ 94.8381 47.1636, 94.4713 46.7283\\nQ 94.1106 46.2868, 93.4391 46.2868\\nQ 92.7675 46.2868, 92.4007 46.7221\\nQ 92.04 47.1573, 92.04 48.0278\\nQ 92.04 48.917, 92.4007 49.3647\\nQ 92.7675 49.8124, 93.4391 49.8124\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.69, "data-ID": 1213, "mols2grid-id": 241, "mols2grid-tooltip": "<strong>Name</strong>: Oxadiazon<br><strong>SMILES</strong>: CC(C)Oc1cc(c(Cl)cc1Cl)N2N=C(OC2=O)C(C)(C)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.69</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CCc1cccc(C)c1N(C(C)COC)C(=O)CCl", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 119.952,35.5063 L 106.93,43.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 106.93,43.0484 L 90.6102,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 90.6102,33.6716 L 90.6102,14.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 86.848,30.8499 L 86.848,17.6819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-2' d='M 74.3196,43.0773 L 90.6102,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.6102,14.8602 L 74.3196,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 74.3196,5.45455 L 58.0289,14.8602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 73.7572,10.1236 L 62.3537,16.7076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 58.0289,14.8602 L 58.0289,33.6716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 58.0289,33.6716 L 44.9952,41.1962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 58.0289,33.6716 L 74.3196,43.0773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-8' d='M 62.3537,31.8243 L 73.7572,38.4082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 74.3196,43.0773 L 74.3358,50.9209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 74.3358,50.9209 L 74.352,58.7645' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 76.8494,63.3322 L 83.7605,67.3095' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 83.7605,67.3095 L 90.6717,71.2868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-9 atom-15' d='M 71.8676,63.3496 L 64.9809,67.3608' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-9 atom-15' d='M 64.9809,67.3608 L 58.0942,71.3721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 90.6717,71.2868 L 103.692,63.7397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-12' d='M 90.6717,71.2868 L 90.7106,90.1082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 90.7106,90.1082 L 97.4092,93.9632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 97.4092,93.9632 L 104.108,97.8182' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.03,102.649 L 107.043,108.597' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 107.043,108.597 L 107.055,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 59.0291,69.7397 L 53.9105,66.8081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 53.9105,66.8081 L 48.7919,63.8765' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 57.1592,73.0045 L 52.0407,70.0728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 52.0407,70.0728 L 46.9221,67.1412' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 58.0942,71.3721 L 58.1531,90.1935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 58.1531,90.1935 L 52.0124,93.7699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 52.0124,93.7699 L 45.8718,97.3463' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-9' d='M 73.1809 59.235\\nL 74.9266 62.0567\\nQ 75.0996 62.3351, 75.378 62.8393\\nQ 75.6565 63.3434, 75.6715 63.3735\\nL 75.6715 59.235\\nL 76.3788 59.235\\nL 76.3788 64.5624\\nL 75.6489 64.5624\\nL 73.7753 61.4773\\nQ 73.5571 61.1161, 73.3238 60.7023\\nQ 73.0981 60.2884, 73.0304 60.1605\\nL 73.0304 64.5624\\nL 72.3381 64.5624\\nL 72.3381 59.235\\nL 73.1809 59.235\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 104.578 99.5114\\nQ 104.578 98.2322, 105.21 97.5174\\nQ 105.842 96.8026, 107.024 96.8026\\nQ 108.205 96.8026, 108.837 97.5174\\nQ 109.469 98.2322, 109.469 99.5114\\nQ 109.469 100.806, 108.83 101.543\\nQ 108.19 102.273, 107.024 102.273\\nQ 105.85 102.273, 105.21 101.543\\nQ 104.578 100.813, 104.578 99.5114\\nM 107.024 101.671\\nQ 107.836 101.671, 108.273 101.129\\nQ 108.717 100.58, 108.717 99.5114\\nQ 108.717 98.4655, 108.273 97.9388\\nQ 107.836 97.4045, 107.024 97.4045\\nQ 106.211 97.4045, 105.767 97.9313\\nQ 105.331 98.458, 105.331 99.5114\\nQ 105.331 100.587, 105.767 101.129\\nQ 106.211 101.671, 107.024 101.671\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 42.5898 63.9077\\nQ 42.5898 62.6286, 43.2219 61.9137\\nQ 43.8539 61.1989, 45.0353 61.1989\\nQ 46.2167 61.1989, 46.8487 61.9137\\nQ 47.4808 62.6286, 47.4808 63.9077\\nQ 47.4808 65.202, 46.8412 65.9394\\nQ 46.2016 66.6693, 45.0353 66.6693\\nQ 43.8615 66.6693, 43.2219 65.9394\\nQ 42.5898 65.2095, 42.5898 63.9077\\nM 45.0353 66.0673\\nQ 45.848 66.0673, 46.2844 65.5255\\nQ 46.7283 64.9762, 46.7283 63.9077\\nQ 46.7283 62.8618, 46.2844 62.3351\\nQ 45.848 61.8009, 45.0353 61.8009\\nQ 44.2227 61.8009, 43.7787 62.3276\\nQ 43.3423 62.8543, 43.3423 63.9077\\nQ 43.3423 64.9838, 43.7787 65.5255\\nQ 44.2227 66.0673, 45.0353 66.0673\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 40.0478 97.9513\\nQ 40.0478 96.627, 40.6648 95.9347\\nQ 41.2893 95.235, 42.4707 95.235\\nQ 43.5693 95.235, 44.1562 96.01\\nL 43.6596 96.4163\\nQ 43.2307 95.852, 42.4707 95.852\\nQ 41.6656 95.852, 41.2367 96.3937\\nQ 40.8153 96.928, 40.8153 97.9513\\nQ 40.8153 99.0048, 41.2517 99.5465\\nQ 41.6957 100.088, 42.5535 100.088\\nQ 43.1404 100.088, 43.8251 99.7346\\nL 44.0358 100.299\\nQ 43.7574 100.48, 43.336 100.585\\nQ 42.9146 100.69, 42.4481 100.69\\nQ 41.2893 100.69, 40.6648 99.9829\\nQ 40.0478 99.2756, 40.0478 97.9513\\n' fill='#00CC00'/>\\n<path class='atom-18' d='M 44.8033 94.9114\\nL 45.4956 94.9114\\nL 45.4956 100.623\\nL 44.8033 100.623\\nL 44.8033 94.9114\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -2.73, "data-ID": 1218, "mols2grid-id": 242, "mols2grid-tooltip": "<strong>Name</strong>: Metolachlor<br><strong>SMILES</strong>: CCc1cccc(C)c1N(C(C)COC)C(=O)CCl<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.73</span>", "style-Solubility": "color: black"}, {"data-SMILES": "O=C1C=C2CC3(O)COc4c(O)c(O)ccc4C3=C2C=C1O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 147.365,59.2768 L 141.097,59.1509' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.097,59.1509 L 134.829,59.0249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 147.287,63.134 L 141.019,63.0081' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 141.019,63.0081 L 134.751,62.8822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 134.79,60.9536 L 124.805,77.3888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-1' d='M 125.267,43.7493 L 134.79,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.851,75.4603 L 105.252,78.8569' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 124.76,79.3173 L 105.343,75' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 105.298,76.9284 L 92.3952,91.3665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-3' d='M 95.9279,60.3389 L 105.298,76.9284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 92.3952,91.3665 L 74.8836,83.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.8836,83.5334 L 74.8938,89.6754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 74.8938,89.6754 L 74.9041,95.8174' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 74.8836,83.5334 L 57.5263,91.3665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-5' d='M 77.1881,64.4863 L 74.8836,83.5334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 57.5263,91.3665 L 51.1906,86.6461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 51.1906,86.6461 L 44.8549,81.9257' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 42.2298,76.4594 L 43.1194,68.7065' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 43.1194,68.7065 L 44.009,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 44.009,60.9536 L 28.6476,49.1248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 44.0586,56.1225 L 33.3056,47.8423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-9' d='M 61.5193,53.1192 L 44.009,60.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 28.6476,49.1248 L 22.991,51.5243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 22.991,51.5243 L 17.3345,53.9237' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 28.6476,49.1248 L 30.7991,30.0777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 30.7991,30.0777 L 26.0241,26.5749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 26.0241,26.5749 L 21.2491,23.0722' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 30.7991,30.0777 L 48.4637,22.2446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 35.0127,32.4296 L 47.378,26.9464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 48.4637,22.2446 L 63.6708,33.9177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 63.6708,33.9177 L 61.5193,53.1192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 59.5141,36.3683 L 58.008,49.8094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 61.5193,53.1192 L 77.1881,64.4863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 77.605,66.3697 L 95.5111,58.4554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 76.7713,62.6028 L 96.3448,62.2223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 95.9279,60.3389 L 105.758,43.4419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 105.728,45.3707 L 125.297,41.8205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 105.789,41.5132 L 125.237,45.6781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-21' d='M 125.267,43.7493 L 128.267,38.7493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-21' d='M 128.267,38.7493 L 131.267,33.7493' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 147.712 61.2789\\nQ 147.712 59.9672, 148.36 59.2342\\nQ 149.008 58.5012, 150.22 58.5012\\nQ 151.431 58.5012, 152.079 59.2342\\nQ 152.727 59.9672, 152.727 61.2789\\nQ 152.727 62.6061, 152.071 63.3623\\nQ 151.416 64.1107, 150.22 64.1107\\nQ 149.016 64.1107, 148.36 63.3623\\nQ 147.712 62.6138, 147.712 61.2789\\nM 150.22 63.4935\\nQ 151.053 63.4935, 151.5 62.9379\\nQ 151.956 62.3746, 151.956 61.2789\\nQ 151.956 60.2064, 151.5 59.6663\\nQ 151.053 59.1184, 150.22 59.1184\\nQ 149.386 59.1184, 148.931 59.6586\\nQ 148.483 60.1987, 148.483 61.2789\\nQ 148.483 62.3823, 148.931 62.9379\\nQ 149.386 63.4935, 150.22 63.4935\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 72.4016 98.981\\nQ 72.4016 97.6693, 73.0497 96.9362\\nQ 73.6979 96.2032, 74.9093 96.2032\\nQ 76.1207 96.2032, 76.7689 96.9362\\nQ 77.417 97.6693, 77.417 98.981\\nQ 77.417 100.308, 76.7612 101.064\\nQ 76.1053 101.813, 74.9093 101.813\\nQ 73.7056 101.813, 73.0497 101.064\\nQ 72.4016 100.316, 72.4016 98.981\\nM 74.9093 101.196\\nQ 75.7427 101.196, 76.1902 100.64\\nQ 76.6454 100.077, 76.6454 98.981\\nQ 76.6454 97.9085, 76.1902 97.3683\\nQ 75.7427 96.8205, 74.9093 96.8205\\nQ 74.076 96.8205, 73.6207 97.3606\\nQ 73.1732 97.9007, 73.1732 98.981\\nQ 73.1732 100.084, 73.6207 100.64\\nQ 74.076 101.196, 74.9093 101.196\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 78.0729 96.2649\\nL 78.8137 96.2649\\nL 78.8137 98.5875\\nL 81.6069 98.5875\\nL 81.6069 96.2649\\nL 82.3476 96.2649\\nL 82.3476 101.728\\nL 81.6069 101.728\\nL 81.6069 99.2048\\nL 78.8137 99.2048\\nL 78.8137 101.728\\nL 78.0729 101.728\\nL 78.0729 96.2649\\n' fill='#FF0000'/>\\n<path class='atom-8' d='M 39.351 79.7088\\nQ 39.351 78.3971, 39.9992 77.664\\nQ 40.6473 76.931, 41.8588 76.931\\nQ 43.0702 76.931, 43.7183 77.664\\nQ 44.3665 78.3971, 44.3665 79.7088\\nQ 44.3665 81.036, 43.7106 81.7921\\nQ 43.0548 82.5406, 41.8588 82.5406\\nQ 40.6551 82.5406, 39.9992 81.7921\\nQ 39.351 81.0437, 39.351 79.7088\\nM 41.8588 81.9233\\nQ 42.6921 81.9233, 43.1396 81.3678\\nQ 43.5949 80.8045, 43.5949 79.7088\\nQ 43.5949 78.6363, 43.1396 78.0961\\nQ 42.6921 77.5483, 41.8588 77.5483\\nQ 41.0254 77.5483, 40.5702 78.0884\\nQ 40.1227 78.6285, 40.1227 79.7088\\nQ 40.1227 80.8122, 40.5702 81.3678\\nQ 41.0254 81.9233, 41.8588 81.9233\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 7.27273 52.4505\\nL 8.01347 52.4505\\nL 8.01347 54.773\\nL 10.8067 54.773\\nL 10.8067 52.4505\\nL 11.5474 52.4505\\nL 11.5474 57.9134\\nL 10.8067 57.9134\\nL 10.8067 55.3903\\nL 8.01347 55.3903\\nL 8.01347 57.9134\\nL 7.27273 57.9134\\nL 7.27273 52.4505\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 11.9332 55.1665\\nQ 11.9332 53.8548, 12.5814 53.1218\\nQ 13.2295 52.3887, 14.441 52.3887\\nQ 15.6524 52.3887, 16.3005 53.1218\\nQ 16.9487 53.8548, 16.9487 55.1665\\nQ 16.9487 56.4937, 16.2928 57.2499\\nQ 15.637 57.9983, 14.441 57.9983\\nQ 13.2373 57.9983, 12.5814 57.2499\\nQ 11.9332 56.5014, 11.9332 55.1665\\nM 14.441 57.381\\nQ 15.2743 57.381, 15.7218 56.8255\\nQ 16.1771 56.2622, 16.1771 55.1665\\nQ 16.1771 54.094, 15.7218 53.5539\\nQ 15.2743 53.006, 14.441 53.006\\nQ 13.6076 53.006, 13.1524 53.5461\\nQ 12.7048 54.0863, 12.7048 55.1665\\nQ 12.7048 56.2699, 13.1524 56.8255\\nQ 13.6076 57.381, 14.441 57.381\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 11.1874 18.2489\\nL 11.9281 18.2489\\nL 11.9281 20.5715\\nL 14.7213 20.5715\\nL 14.7213 18.2489\\nL 15.4621 18.2489\\nL 15.4621 23.7119\\nL 14.7213 23.7119\\nL 14.7213 21.1888\\nL 11.9281 21.1888\\nL 11.9281 23.7119\\nL 11.1874 23.7119\\nL 11.1874 18.2489\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 15.8479 20.965\\nQ 15.8479 19.6533, 16.496 18.9202\\nQ 17.1442 18.1872, 18.3556 18.1872\\nQ 19.567 18.1872, 20.2152 18.9202\\nQ 20.8633 19.6533, 20.8633 20.965\\nQ 20.8633 22.2922, 20.2075 23.0483\\nQ 19.5516 23.7968, 18.3556 23.7968\\nQ 17.1519 23.7968, 16.496 23.0483\\nQ 15.8479 22.2999, 15.8479 20.965\\nM 18.3556 23.1795\\nQ 19.1889 23.1795, 19.6365 22.6239\\nQ 20.0917 22.0607, 20.0917 20.965\\nQ 20.0917 19.8925, 19.6365 19.3523\\nQ 19.1889 18.8045, 18.3556 18.8045\\nQ 17.5223 18.8045, 17.067 19.3446\\nQ 16.6195 19.8847, 16.6195 20.965\\nQ 16.6195 22.0684, 17.067 22.6239\\nQ 17.5223 23.1795, 18.3556 23.1795\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 130.699 30.5316\\nQ 130.699 29.2199, 131.347 28.4869\\nQ 131.995 27.7539, 133.207 27.7539\\nQ 134.418 27.7539, 135.066 28.4869\\nQ 135.715 29.2199, 135.715 30.5316\\nQ 135.715 31.8588, 135.059 32.615\\nQ 134.403 33.3634, 133.207 33.3634\\nQ 132.003 33.3634, 131.347 32.615\\nQ 130.699 31.8665, 130.699 30.5316\\nM 133.207 32.7462\\nQ 134.04 32.7462, 134.488 32.1906\\nQ 134.943 31.6273, 134.943 30.5316\\nQ 134.943 29.4591, 134.488 28.919\\nQ 134.04 28.3711, 133.207 28.3711\\nQ 132.374 28.3711, 131.918 28.9113\\nQ 131.471 29.4514, 131.471 30.5316\\nQ 131.471 31.635, 131.918 32.1906\\nQ 132.374 32.7462, 133.207 32.7462\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 136.37 27.8156\\nL 137.111 27.8156\\nL 137.111 30.1381\\nL 139.904 30.1381\\nL 139.904 27.8156\\nL 140.645 27.8156\\nL 140.645 33.2786\\nL 139.904 33.2786\\nL 139.904 30.7554\\nL 137.111 30.7554\\nL 137.111 33.2786\\nL 136.37 33.2786\\nL 136.37 27.8156\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -2.7, "data-ID": 1223, "mols2grid-id": 243, "mols2grid-tooltip": "<strong>Name</strong>: Hematein<br><strong>SMILES</strong>: O=C1C=C2CC3(O)COc4c(O)c(O)ccc4C3=C2C=C1O<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.7</span>", "style-Solubility": "color: black"}, {"data-SMILES": "n(cc(C(O)(c(ccc(c1)Cl)c1)c(c(ccc2)Cl)c2)cn3)c3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 89.2795,100.159 L 89.2795,91.1657' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 89.2795,91.1657 L 89.2795,82.1726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.9631,97.461 L 84.9631,91.1657' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 84.9631,91.1657 L 84.9631,84.8705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-21' d='M 86.4221,105.404 L 78.5058,109.975' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-0 atom-21' d='M 78.5058,109.975 L 70.5896,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 89.2795,82.1726 L 70.5896,71.3816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 70.5896,71.3816 L 70.5896,49.7881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-2 atom-19' d='M 70.5896,71.3816 L 51.8996,82.1726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-2 atom-19' d='M 69.9443,76.7383 L 56.8613,84.292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 70.5896,49.7881 L 64.7308,46.4078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 64.7308,46.4078 L 58.872,43.0275' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 70.5896,49.7881 L 89.2838,38.9785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-3 atom-12' d='M 70.5896,49.7881 L 51.891,60.5877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 89.2838,38.9785 L 107.981,49.7579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 94.2443,36.856 L 107.332,44.4016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-5 atom-11' d='M 89.2838,38.9785 L 89.2694,17.3965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 107.981,49.7579 L 126.664,38.9555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 126.664,38.9555 L 126.651,17.3735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 122.345,35.7208 L 122.336,20.6134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 126.651,17.3735 L 107.954,6.59407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 126.651,17.3735 L 132.73,13.8583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-10' d='M 132.73,13.8583 L 138.809,10.3431' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-9' d='M 89.2694,17.3965 L 107.954,6.59407' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-9' d='M 94.2325,19.513 L 107.311,11.9512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 51.891,60.5877 L 51.8953,82.1697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 47.5752,63.8259 L 47.5783,78.9333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-12 atom-18' d='M 51.891,60.5877 L 33.1996,49.7997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 51.8953,82.1697 L 33.2053,92.9635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-17' d='M 51.8953,82.1697 L 57.9778,85.68' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-13 atom-17' d='M 57.9778,85.68 L 64.0603,89.1904' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 33.2053,92.9635 L 14.5139,82.1754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 32.5593,87.6069 L 19.4753,80.0553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 14.5139,82.1754 L 14.5096,60.5935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-16' d='M 33.1996,49.7997 L 14.5096,60.5935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-16' d='M 32.5548,55.1566 L 19.4718,62.7123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 51.8996,82.1726 L 51.8996,91.1657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 51.8996,91.1657 L 51.8996,100.159' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 70.5896,114.545 L 62.6733,109.975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 62.6733,109.975 L 54.757,105.404' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 70.3729,109.436 L 64.8315,106.237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-20' d='M 64.8315,106.237 L 59.2902,103.037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 87.9285 100.698\\nL 89.9313 103.936\\nQ 90.1298 104.255, 90.4493 104.834\\nQ 90.7687 105.412, 90.7859 105.447\\nL 90.7859 100.698\\nL 91.5974 100.698\\nL 91.5974 106.81\\nL 90.76 106.81\\nL 88.6105 103.271\\nQ 88.3601 102.857, 88.0925 102.382\\nQ 87.8335 101.907, 87.7558 101.76\\nL 87.7558 106.81\\nL 86.9616 106.81\\nL 86.9616 100.698\\nL 87.9285 100.698\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 47.6149 38.1382\\nL 48.4436 38.1382\\nL 48.4436 40.7367\\nL 51.5687 40.7367\\nL 51.5687 38.1382\\nL 52.3974 38.1382\\nL 52.3974 44.2502\\nL 51.5687 44.2502\\nL 51.5687 41.4273\\nL 48.4436 41.4273\\nL 48.4436 44.2502\\nL 47.6149 44.2502\\nL 47.6149 38.1382\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 52.8291 41.177\\nQ 52.8291 39.7094, 53.5542 38.8893\\nQ 54.2794 38.0692, 55.6347 38.0692\\nQ 56.9901 38.0692, 57.7152 38.8893\\nQ 58.4404 39.7094, 58.4404 41.177\\nQ 58.4404 42.6618, 57.7066 43.5078\\nQ 56.9728 44.3452, 55.6347 44.3452\\nQ 54.288 44.3452, 53.5542 43.5078\\nQ 52.8291 42.6704, 52.8291 41.177\\nM 55.6347 43.6546\\nQ 56.5671 43.6546, 57.0678 43.033\\nQ 57.5771 42.4028, 57.5771 41.177\\nQ 57.5771 39.977, 57.0678 39.3727\\nQ 56.5671 38.7598, 55.6347 38.7598\\nQ 54.7024 38.7598, 54.193 39.3641\\nQ 53.6923 39.9684, 53.6923 41.177\\nQ 53.6923 42.4114, 54.193 43.033\\nQ 54.7024 43.6546, 55.6347 43.6546\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 139.24 8.94219\\nQ 139.24 7.42282, 139.948 6.6286\\nQ 140.665 5.82575, 142.02 5.82575\\nQ 143.28 5.82575, 143.954 6.71493\\nL 143.384 7.1811\\nQ 142.892 6.53364, 142.02 6.53364\\nQ 141.096 6.53364, 140.604 7.1552\\nQ 140.121 7.76813, 140.121 8.94219\\nQ 140.121 10.1508, 140.621 10.7723\\nQ 141.131 11.3939, 142.115 11.3939\\nQ 142.788 11.3939, 143.574 10.9882\\nL 143.816 11.6356\\nQ 143.496 11.8428, 143.013 11.9637\\nQ 142.529 12.0845, 141.994 12.0845\\nQ 140.665 12.0845, 139.948 11.273\\nQ 139.24 10.4616, 139.24 8.94219\\n' fill='#00CC00'/>\\n<path class='atom-10' d='M 144.696 5.45455\\nL 145.49 5.45455\\nL 145.49 12.0068\\nL 144.696 12.0068\\nL 144.696 5.45455\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 64.4919 91.0111\\nQ 64.4919 89.4917, 65.1998 88.6975\\nQ 65.9164 87.8946, 67.2717 87.8946\\nQ 68.5321 87.8946, 69.2054 88.7838\\nL 68.6357 89.25\\nQ 68.1436 88.6025, 67.2717 88.6025\\nQ 66.348 88.6025, 65.8559 89.2241\\nQ 65.3725 89.837, 65.3725 91.0111\\nQ 65.3725 92.2197, 65.8732 92.8412\\nQ 66.3825 93.4628, 67.3667 93.4628\\nQ 68.04 93.4628, 68.8256 93.057\\nL 69.0673 93.7045\\nQ 68.7479 93.9117, 68.2645 94.0325\\nQ 67.781 94.1534, 67.2458 94.1534\\nQ 65.9164 94.1534, 65.1998 93.3419\\nQ 64.4919 92.5304, 64.4919 91.0111\\n' fill='#00CC00'/>\\n<path class='atom-17' d='M 69.9479 87.5234\\nL 70.7421 87.5234\\nL 70.7421 94.0757\\nL 69.9479 94.0757\\nL 69.9479 87.5234\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 50.5486 100.698\\nL 52.5514 103.936\\nQ 52.7499 104.255, 53.0693 104.834\\nQ 53.3888 105.412, 53.406 105.447\\nL 53.406 100.698\\nL 54.2175 100.698\\nL 54.2175 106.81\\nL 53.3801 106.81\\nL 51.2306 103.271\\nQ 50.9802 102.857, 50.7126 102.382\\nQ 50.4536 101.907, 50.3759 101.76\\nL 50.3759 106.81\\nL 49.5817 106.81\\nL 49.5817 100.698\\nL 50.5486 100.698\\n' fill='#0000FF'/>\\n<path d='M 50.4565,83.6085 L 50.4565,80.7309 L 53.3341,80.7309 L 53.3341,83.6085 L 50.4565,83.6085' style='fill:none;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n</svg>\\n", "data-Solubility": -4.38, "data-ID": 1228, "mols2grid-id": 244, "mols2grid-tooltip": "<strong>Name</strong>: Fenarimol<br><strong>SMILES</strong>: n(cc(C(O)(c(ccc(c1)Cl)c1)c(c(ccc2)Cl)c2)cn3)c3<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.38</span>", "style-Solubility": "color: red"}, {"data-SMILES": "N1CCN=C1CN(c2ccccc2)Cc3ccccc3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 54.1165,88.7777 L 49.3683,94.0186' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 49.3683,94.0186 L 44.6201,99.2595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 72.3001,93.5464 L 65.5391,90.4142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-0' d='M 65.5391,90.4142 L 58.7782,87.282' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 44.6201,99.2595 L 53.3824,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 53.3824,114.545 L 60.8386,112.984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 60.8386,112.984 L 68.2948,111.423' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.6632,108.172 L 71.6048,100.775' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.6048,100.775 L 70.5463,93.3777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 69.1557,107.835 L 71.6048,100.775' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 71.6048,100.775 L 74.0538,93.7151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-5' d='M 72.3001,93.5464 L 87.5754,84.7489' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.5754,84.7489 L 87.5877,77.402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 87.5877,77.402 L 87.5999,70.0552' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 85.2719,65.7686 L 78.8112,62.0272' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 78.8112,62.0272 L 72.3506,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-13' d='M 89.9377,65.7762 L 96.4095,62.0491' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-13' d='M 96.4095,62.0491 L 102.881,58.3221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 72.3506,58.2857 L 72.3506,40.6671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 68.8269,55.6429 L 68.8269,43.3099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-7' d='M 57.0929,67.095 L 72.3506,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.3506,40.6671 L 57.0929,31.8578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 57.0929,31.8578 L 41.8352,40.6671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 56.5661,36.2308 L 45.8857,42.3973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 41.8352,40.6671 L 41.8352,58.2857' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 41.8352,58.2857 L 57.0929,67.095' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 45.8857,56.5555 L 56.5661,62.722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 102.881,58.3221 L 102.911,40.6929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 102.911,40.6929 L 118.165,31.8778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-14 atom-15' d='M 103.436,36.3197 L 114.114,30.1491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-14' d='M 87.6482,31.8883 L 102.911,40.6929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 118.165,31.8778 L 118.158,14.2592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 118.158,14.2592 L 102.897,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 114.108,15.9907 L 103.425,9.82743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 102.897,5.45455 L 87.6424,14.2697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 87.6424,14.2697 L 87.6482,31.8883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-19' d='M 91.167,16.9113 L 91.1711,29.2444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 55.3463 83.7082\\nL 56.9813 86.351\\nQ 57.1434 86.6117, 57.4041 87.0839\\nQ 57.6649 87.5561, 57.679 87.5843\\nL 57.679 83.7082\\nL 58.3414 83.7082\\nL 58.3414 88.6978\\nL 57.6578 88.6978\\nL 55.903 85.8083\\nQ 55.6987 85.47, 55.4802 85.0824\\nQ 55.2688 84.6948, 55.2053 84.575\\nL 55.2053 88.6978\\nL 54.557 88.6978\\nL 54.557 83.7082\\nL 55.3463 83.7082\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 54.4971 78.2196\\nL 55.1736 78.2196\\nL 55.1736 80.3409\\nL 57.7248 80.3409\\nL 57.7248 78.2196\\nL 58.4013 78.2196\\nL 58.4013 83.2092\\nL 57.7248 83.2092\\nL 57.7248 80.9047\\nL 55.1736 80.9047\\nL 55.1736 83.2092\\nL 54.4971 83.2092\\nL 54.4971 78.2196\\n' fill='#0000FF'/>\\n<path class='atom-3' d='M 69.5246 108.44\\nL 71.1596 111.083\\nQ 71.3217 111.344, 71.5824 111.816\\nQ 71.8432 112.288, 71.8573 112.316\\nL 71.8573 108.44\\nL 72.5197 108.44\\nL 72.5197 113.43\\nL 71.8361 113.43\\nL 70.0813 110.54\\nQ 69.8769 110.202, 69.6585 109.814\\nQ 69.447 109.427, 69.3836 109.307\\nL 69.3836 113.43\\nL 68.7352 113.43\\nL 68.7352 108.44\\nL 69.5246 108.44\\n' fill='#0000FF'/>\\n<path class='atom-6' d='M 86.5019 64.6249\\nL 88.1369 67.2677\\nQ 88.299 67.5284, 88.5597 68.0006\\nQ 88.8205 68.4728, 88.8346 68.501\\nL 88.8346 64.6249\\nL 89.497 64.6249\\nL 89.497 69.6145\\nL 88.8134 69.6145\\nL 87.0586 66.725\\nQ 86.8542 66.3867, 86.6358 65.9991\\nQ 86.4243 65.6115, 86.3609 65.4917\\nL 86.3609 69.6145\\nL 85.7125 69.6145\\nL 85.7125 64.6249\\nL 86.5019 64.6249\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.6, "data-ID": 1233, "mols2grid-id": 245, "mols2grid-tooltip": "<strong>Name</strong>: Antazoline<br><strong>SMILES</strong>: N1CCN=C1CN(c2ccccc2)Cc3ccccc3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.6</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1cc(O)ccc1C(C=C)C(C=C)c2ccc(O)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 85.5848,37.2559 L 85.5848,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.989,35.3091 L 82.989,26.224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 74.3452,43.7453 L 85.5848,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.5848,24.2772 L 74.3452,17.7878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,17.7878 L 74.3452,13.8331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,13.8331 L 74.3452,9.87836' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 74.3452,17.7878 L 63.1056,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9571,21.0092 L 66.0894,25.5517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.1056,24.2772 L 63.1056,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.1056,37.2559 L 74.3452,43.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.0894,35.9814 L 73.9571,40.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.3452,43.7453 L 74.372,56.731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 74.372,56.731 L 63.1505,63.2671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 74.372,56.731 L 85.6272,63.2082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 61.8527,63.2712 L 61.8856,73.6542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 64.4484,63.263 L 64.4813,73.646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6272,63.2082 L 96.8486,56.6721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-13' d='M 85.6272,63.2082 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 98.1465,56.668 L 98.1136,46.285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 95.5507,56.6762 L 95.5178,46.2932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 85.654,76.1939 L 96.8936,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0419,79.4153 L 93.9096,83.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-13' d='M 74.4144,82.6842 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.8936,82.6842 L 96.8944,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.8944,95.6629 L 85.6548,102.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.9106,94.3883 L 86.0429,98.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,102.152 L 85.6548,106.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,106.14 L 85.6548,110.128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 85.6548,102.152 L 74.4144,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 74.4144,95.6629 L 74.4144,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 77.0101,93.7161 L 77.0101,84.631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 72.3952 7.41679\\nQ 72.3952 6.39679, 72.8992 5.82679\\nQ 73.4032 5.25679, 74.3452 5.25679\\nQ 75.2872 5.25679, 75.7912 5.82679\\nQ 76.2952 6.39679, 76.2952 7.41679\\nQ 76.2952 8.44879, 75.7852 9.03679\\nQ 75.2752 9.61879, 74.3452 9.61879\\nQ 73.4092 9.61879, 72.8992 9.03679\\nQ 72.3952 8.45479, 72.3952 7.41679\\nM 74.3452 9.13879\\nQ 74.9932 9.13879, 75.3412 8.70679\\nQ 75.6952 8.26879, 75.6952 7.41679\\nQ 75.6952 6.58279, 75.3412 6.16279\\nQ 74.9932 5.73679, 74.3452 5.73679\\nQ 73.6972 5.73679, 73.3432 6.15679\\nQ 72.9952 6.57679, 72.9952 7.41679\\nQ 72.9952 8.27479, 73.3432 8.70679\\nQ 73.6972 9.13879, 74.3452 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 76.8052 5.30479\\nL 77.3812 5.30479\\nL 77.3812 7.11079\\nL 79.5532 7.11079\\nL 79.5532 5.30479\\nL 80.1292 5.30479\\nL 80.1292 9.55279\\nL 79.5532 9.55279\\nL 79.5532 7.59079\\nL 77.3812 7.59079\\nL 77.3812 9.55279\\nL 76.8052 9.55279\\nL 76.8052 5.30479\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 83.7048 112.547\\nQ 83.7048 111.527, 84.2088 110.957\\nQ 84.7128 110.387, 85.6548 110.387\\nQ 86.5968 110.387, 87.1008 110.957\\nQ 87.6048 111.527, 87.6048 112.547\\nQ 87.6048 113.579, 87.0948 114.167\\nQ 86.5848 114.749, 85.6548 114.749\\nQ 84.7188 114.749, 84.2088 114.167\\nQ 83.7048 113.585, 83.7048 112.547\\nM 85.6548 114.269\\nQ 86.3028 114.269, 86.6508 113.837\\nQ 87.0048 113.399, 87.0048 112.547\\nQ 87.0048 111.713, 86.6508 111.293\\nQ 86.3028 110.867, 85.6548 110.867\\nQ 85.0068 110.867, 84.6528 111.287\\nQ 84.3048 111.707, 84.3048 112.547\\nQ 84.3048 113.405, 84.6528 113.837\\nQ 85.0068 114.269, 85.6548 114.269\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 88.1148 110.435\\nL 88.6908 110.435\\nL 88.6908 112.241\\nL 90.8628 112.241\\nL 90.8628 110.435\\nL 91.4388 110.435\\nL 91.4388 114.683\\nL 90.8628 114.683\\nL 90.8628 112.721\\nL 88.6908 112.721\\nL 88.6908 114.683\\nL 88.1148 114.683\\nL 88.1148 110.435\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.95, "data-ID": 1237, "mols2grid-id": 246, "mols2grid-tooltip": "<strong>Name</strong>: Dienestrol<br><strong>SMILES</strong>: c1cc(O)ccc1C(C=C)C(C=C)c2ccc(O)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.95</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1cc(O)ccc1C(CC)C(CC)c2ccc(O)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 85.5848,37.2559 L 85.5848,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 82.989,35.3091 L 82.989,26.224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-0' d='M 74.3452,43.7453 L 85.5848,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 85.5848,24.2772 L 74.3452,17.7878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,17.7878 L 74.3452,13.8331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 74.3452,13.8331 L 74.3452,9.87836' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 74.3452,17.7878 L 63.1056,24.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-4' d='M 73.9571,21.0092 L 66.0894,25.5517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 63.1056,24.2772 L 63.1056,37.2559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.1056,37.2559 L 74.3452,43.7453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 66.0894,35.9814 L 73.9571,40.5239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.3452,43.7453 L 74.372,56.731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 74.372,56.731 L 63.1505,63.2671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-7 atom-10' d='M 74.372,56.731 L 85.6272,63.2082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 63.1505,63.2671 L 63.1834,73.6501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 85.6272,63.2082 L 96.8486,56.6721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-13' d='M 85.6272,63.2082 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 96.8486,56.6721 L 96.8157,46.2891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 85.654,76.1939 L 96.8936,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0419,79.4153 L 93.9096,83.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-13' d='M 74.4144,82.6842 L 85.654,76.1939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 96.8936,82.6842 L 96.8944,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 96.8944,95.6629 L 85.6548,102.152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 93.9106,94.3883 L 86.0429,98.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,102.152 L 85.6548,106.14' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 85.6548,106.14 L 85.6548,110.128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-18' d='M 85.6548,102.152 L 74.4144,95.6629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 74.4144,95.6629 L 74.4144,82.6842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 77.0101,93.7161 L 77.0101,84.631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 72.3952 7.41679\\nQ 72.3952 6.39679, 72.8992 5.82679\\nQ 73.4032 5.25679, 74.3452 5.25679\\nQ 75.2872 5.25679, 75.7912 5.82679\\nQ 76.2952 6.39679, 76.2952 7.41679\\nQ 76.2952 8.44879, 75.7852 9.03679\\nQ 75.2752 9.61879, 74.3452 9.61879\\nQ 73.4092 9.61879, 72.8992 9.03679\\nQ 72.3952 8.45479, 72.3952 7.41679\\nM 74.3452 9.13879\\nQ 74.9932 9.13879, 75.3412 8.70679\\nQ 75.6952 8.26879, 75.6952 7.41679\\nQ 75.6952 6.58279, 75.3412 6.16279\\nQ 74.9932 5.73679, 74.3452 5.73679\\nQ 73.6972 5.73679, 73.3432 6.15679\\nQ 72.9952 6.57679, 72.9952 7.41679\\nQ 72.9952 8.27479, 73.3432 8.70679\\nQ 73.6972 9.13879, 74.3452 9.13879\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 76.8052 5.30479\\nL 77.3812 5.30479\\nL 77.3812 7.11079\\nL 79.5532 7.11079\\nL 79.5532 5.30479\\nL 80.1292 5.30479\\nL 80.1292 9.55279\\nL 79.5532 9.55279\\nL 79.5532 7.59079\\nL 77.3812 7.59079\\nL 77.3812 9.55279\\nL 76.8052 9.55279\\nL 76.8052 5.30479\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 83.7048 112.547\\nQ 83.7048 111.527, 84.2088 110.957\\nQ 84.7128 110.387, 85.6548 110.387\\nQ 86.5968 110.387, 87.1008 110.957\\nQ 87.6048 111.527, 87.6048 112.547\\nQ 87.6048 113.579, 87.0948 114.167\\nQ 86.5848 114.749, 85.6548 114.749\\nQ 84.7188 114.749, 84.2088 114.167\\nQ 83.7048 113.585, 83.7048 112.547\\nM 85.6548 114.269\\nQ 86.3028 114.269, 86.6508 113.837\\nQ 87.0048 113.399, 87.0048 112.547\\nQ 87.0048 111.713, 86.6508 111.293\\nQ 86.3028 110.867, 85.6548 110.867\\nQ 85.0068 110.867, 84.6528 111.287\\nQ 84.3048 111.707, 84.3048 112.547\\nQ 84.3048 113.405, 84.6528 113.837\\nQ 85.0068 114.269, 85.6548 114.269\\n' fill='#FF0000'/>\\n<path class='atom-17' d='M 88.1148 110.435\\nL 88.6908 110.435\\nL 88.6908 112.241\\nL 90.8628 112.241\\nL 90.8628 110.435\\nL 91.4388 110.435\\nL 91.4388 114.683\\nL 90.8628 114.683\\nL 90.8628 112.721\\nL 88.6908 112.721\\nL 88.6908 114.683\\nL 88.1148 114.683\\nL 88.1148 110.435\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -4.43, "data-ID": 1242, "mols2grid-id": 247, "mols2grid-tooltip": "<strong>Name</strong>: Hexestrol<br><strong>SMILES</strong>: c1cc(O)ccc1C(CC)C(CC)c2ccc(O)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.43</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c12ccccc1nccc2C(O)C3N(C4)CCC(C4CC)C3", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 56.1823,84.459 L 40.316,75.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 51.9661,86.2641 L 40.8597,79.8499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 56.1823,102.783 L 56.1823,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-0' d='M 72.0485,75.2959 L 56.1823,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 40.316,75.2959 L 24.2258,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 24.2258,84.459 L 24.2258,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 27.8974,87.2076 L 27.8974,100.034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 24.2258,102.783 L 40.316,111.946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.316,111.946 L 56.1823,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 40.8597,107.392 L 51.9661,100.978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 56.1823,102.783 L 62.9005,106.663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 62.9005,106.663 L 69.6188,110.543' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.4782,110.543 L 81.1971,106.663' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 81.1971,106.663 L 87.916,102.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 74.6578,106.199 L 79.361,103.483' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 79.361,103.483 L 84.0642,100.767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 87.916,102.783 L 87.916,84.459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 87.916,84.459 L 72.0485,75.2959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 83.6998,86.2641 L 72.5925,79.8499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-10' d='M 72.0485,75.2959 L 72.0865,56.9281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 72.0865,56.9281 L 67.1102,54.0436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-10 atom-11' d='M 67.1102,54.0436 L 62.1339,51.159' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-10 atom-12' d='M 72.0865,56.9281 L 88.0066,47.7662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 88.0066,47.7662 L 88.0209,40.0567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-12 atom-13' d='M 88.0209,40.0567 L 88.0352,32.3473' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-21 atom-12' d='M 104.613,57.1508 L 88.0066,47.7662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 90.4549,27.8833 L 96.8983,24.14' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 96.8983,24.14 L 103.342,20.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 90.4132,28.983 L 97.1773,28.1198' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 97.1773,28.1198 L 103.941,27.2566' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-14' d='M 120.021,29.7875 L 103.342,20.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 103.941,27.2566 L 104.487,48.8432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 104.487,48.8432 L 120.355,47.481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-18' d='M 120.355,47.481 L 120.021,29.7875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-17 atom-21' d='M 120.355,47.481 L 104.613,57.1508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-19' d='M 120.021,29.7875 L 135.774,20.1373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-19 atom-20' d='M 135.774,20.1373 L 135.407,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-6' d='M 70.8993 109.346\\nL 72.6029 112.1\\nQ 72.7718 112.372, 73.0435 112.864\\nQ 73.3152 113.356, 73.3299 113.385\\nL 73.3299 109.346\\nL 74.0202 109.346\\nL 74.0202 114.545\\nL 73.3079 114.545\\nL 71.4794 111.535\\nQ 71.2665 111.182, 71.0388 110.778\\nQ 70.8185 110.375, 70.7524 110.25\\nL 70.7524 114.545\\nL 70.0769 114.545\\nL 70.0769 109.346\\nL 70.8993 109.346\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 52.5584 46.9927\\nL 53.2633 46.9927\\nL 53.2633 49.203\\nL 55.9216 49.203\\nL 55.9216 46.9927\\nL 56.6265 46.9927\\nL 56.6265 52.1917\\nL 55.9216 52.1917\\nL 55.9216 49.7905\\nL 53.2633 49.7905\\nL 53.2633 52.1917\\nL 52.5584 52.1917\\nL 52.5584 46.9927\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 56.9937 49.5775\\nQ 56.9937 48.3292, 57.6105 47.6316\\nQ 58.2273 46.934, 59.3802 46.934\\nQ 60.5331 46.934, 61.1499 47.6316\\nQ 61.7668 48.3292, 61.7668 49.5775\\nQ 61.7668 50.8406, 61.1426 51.5602\\nQ 60.5184 52.2725, 59.3802 52.2725\\nQ 58.2347 52.2725, 57.6105 51.5602\\nQ 56.9937 50.8479, 56.9937 49.5775\\nM 59.3802 51.685\\nQ 60.1733 51.685, 60.5992 51.1563\\nQ 61.0325 50.6203, 61.0325 49.5775\\nQ 61.0325 48.5568, 60.5992 48.0428\\nQ 60.1733 47.5214, 59.3802 47.5214\\nQ 58.5872 47.5214, 58.1539 48.0354\\nQ 57.728 48.5495, 57.728 49.5775\\nQ 57.728 50.6276, 58.1539 51.1563\\nQ 58.5872 51.685, 59.3802 51.685\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 86.8916 26.6862\\nL 88.5952 29.44\\nQ 88.7641 29.7117, 89.0358 30.2037\\nQ 89.3075 30.6956, 89.3222 30.725\\nL 89.3222 26.6862\\nL 90.0125 26.6862\\nL 90.0125 31.8852\\nL 89.3002 31.8852\\nL 87.4717 28.8745\\nQ 87.2588 28.5221, 87.0311 28.1182\\nQ 86.8108 27.7143, 86.7447 27.5895\\nL 86.7447 31.8852\\nL 86.0692 31.8852\\nL 86.0692 26.6862\\nL 86.8916 26.6862\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -2.63, "data-ID": 1253, "mols2grid-id": 248, "mols2grid-tooltip": "<strong>Name</strong>: Hydrocinchonine<br><strong>SMILES</strong>: c12ccccc1nccc2C(O)C3N(C4)CCC(C4CC)C3<br><strong>Class</strong>: (B) medium<br><strong>Solubility</strong>: <span style=\\"color: black\\">-2.63</span>", "style-Solubility": "color: black"}, {"data-SMILES": "C1(S5)C5CC2CCC3C4CCC(O)C4(C)CCC3C2(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 40.6388,74.5682 L 26.1483,77.1041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 26.1483,77.1041 L 11.6578,79.6399' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-0 atom-2' d='M 40.6388,74.5682 L 40.9019,92.9865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-0' d='M 56.689,65.0959 L 40.6388,74.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-1' d='M 40.9019,92.9865 L 26.3085,87.0768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-1' d='M 26.3085,87.0768 L 11.7151,81.1671' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-2 atom-3' d='M 40.9019,92.9865 L 57.0837,102.064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-4' d='M 57.0837,102.064 L 73.0024,92.5918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-4 atom-5' d='M 73.0024,92.5918 L 89.1842,101.669' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-4' d='M 72.7392,74.1735 L 73.0024,92.5918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-6' d='M 89.1842,101.669 L 104.971,92.3287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-6 atom-7' d='M 104.971,92.3287 L 104.708,73.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-8' d='M 104.708,73.9104 L 120.627,64.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-17 atom-7' d='M 88.6579,64.7013 L 104.708,73.9104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 120.627,64.4382 L 152.727,64.175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-8' d='M 120.364,46.0199 L 120.627,64.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 152.727,64.175 L 152.464,45.6252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-11' d='M 152.464,45.6252 L 136.282,36.5476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 136.282,36.5476 L 136.203,30.3084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 136.203,30.3084 L 136.123,24.0692' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-11 atom-13' d='M 136.282,36.5476 L 120.364,46.0199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-13 atom-14' d='M 120.364,46.0199 L 120.19,30.2341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-13 atom-15' d='M 120.364,46.0199 L 104.313,36.9423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-16' d='M 104.313,36.9423 L 88.3948,46.4145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-17' d='M 88.3948,46.4145 L 88.6579,64.7013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-17 atom-18' d='M 88.6579,64.7013 L 72.7392,74.1735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-18 atom-19' d='M 72.7392,74.1735 L 72.5656,58.3877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-18 atom-20' d='M 72.7392,74.1735 L 56.689,65.0959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 7.48585 82.0118\\nQ 7.549 82.0355, 7.80949 82.146\\nQ 8.06998 82.2565, 8.35414 82.3276\\nQ 8.64621 82.3907, 8.93037 82.3907\\nQ 9.45924 82.3907, 9.76709 82.1381\\nQ 10.0749 81.8776, 10.0749 81.4277\\nQ 10.0749 81.1199, 9.91707 80.9304\\nQ 9.76709 80.741, 9.53028 80.6384\\nQ 9.29348 80.5357, 8.8988 80.4173\\nQ 8.40151 80.2674, 8.10155 80.1253\\nQ 7.80949 79.9832, 7.59636 79.6832\\nQ 7.39113 79.3833, 7.39113 78.8781\\nQ 7.39113 78.1756, 7.86474 77.7414\\nQ 8.34625 77.3073, 9.29348 77.3073\\nQ 9.94075 77.3073, 10.6748 77.6151\\nL 10.4933 78.2229\\nQ 9.82235 77.9467, 9.31716 77.9467\\nQ 8.7725 77.9467, 8.47255 78.1756\\nQ 8.17259 78.3966, 8.18049 78.7834\\nQ 8.18049 79.0833, 8.33046 79.2649\\nQ 8.48833 79.4464, 8.70935 79.549\\nQ 8.93827 79.6517, 9.31716 79.7701\\nQ 9.82235 79.9279, 10.1223 80.0858\\nQ 10.4223 80.2437, 10.6354 80.5673\\nQ 10.8564 80.8831, 10.8564 81.4277\\nQ 10.8564 82.2013, 10.3354 82.6196\\nQ 9.82235 83.0301, 8.96195 83.0301\\nQ 8.46465 83.0301, 8.08576 82.9196\\nQ 7.71477 82.817, 7.27273 82.6354\\nL 7.48585 82.0118\\n' fill='#CCCC00'/>\\n<path class='atom-12' d='M 133.516 20.7776\\nQ 133.516 19.4357, 134.179 18.6858\\nQ 134.842 17.9359, 136.081 17.9359\\nQ 137.32 17.9359, 137.983 18.6858\\nQ 138.646 19.4357, 138.646 20.7776\\nQ 138.646 22.1353, 137.976 22.9088\\nQ 137.305 23.6745, 136.081 23.6745\\nQ 134.85 23.6745, 134.179 22.9088\\nQ 133.516 22.1432, 133.516 20.7776\\nM 136.081 23.043\\nQ 136.934 23.043, 137.391 22.4747\\nQ 137.857 21.8985, 137.857 20.7776\\nQ 137.857 19.6804, 137.391 19.1278\\nQ 136.934 18.5674, 136.081 18.5674\\nQ 135.229 18.5674, 134.763 19.1199\\nQ 134.305 19.6725, 134.305 20.7776\\nQ 134.305 21.9064, 134.763 22.4747\\nQ 135.229 23.043, 136.081 23.043\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 139.317 17.999\\nL 140.075 17.999\\nL 140.075 20.375\\nL 142.933 20.375\\nL 142.933 17.999\\nL 143.69 17.999\\nL 143.69 23.5877\\nL 142.933 23.5877\\nL 142.933 21.0065\\nL 140.075 21.0065\\nL 140.075 23.5877\\nL 139.317 23.5877\\nL 139.317 17.999\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.41, "data-ID": 1258, "mols2grid-id": 249, "mols2grid-tooltip": "<strong>Name</strong>: Epitiostanol<br><strong>SMILES</strong>: C1(S5)C5CC2CCC3C4CCC(O)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.41</span>", "style-Solubility": "color: red"}, {"data-SMILES": "CN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 135.885,7.34252 L 131.202,9.98731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.202,9.98731 L 126.519,12.6321' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 122.243,12.5306 L 116.247,8.99259' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 116.247,8.99259 L 110.25,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-1' d='M 124.267,30.2713 L 124.332,23.4144' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-1' d='M 124.332,23.4144 L 124.396,16.5575' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 110.25,5.45455 L 95.9227,13.5473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.9227,13.5473 L 95.8573,20.4042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 95.8573,20.4042 L 95.792,27.2611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 93.5869,31.239 L 87.5167,34.6836' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 87.5167,34.6836 L 81.4464,38.1282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-4 atom-23' d='M 97.9445,31.2878 L 103.942,34.8259' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-4 atom-23' d='M 103.942,34.8259 L 109.939,38.364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 81.4464,38.1282 L 81.3148,54.5922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 81.3148,54.5922 L 66.9954,62.719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 66.9954,62.719 L 66.9405,69.5796' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 66.9405,69.5796 L 66.8857,76.4403' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 64.6851,80.4401 L 58.6498,83.9254' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 58.6498,83.9254 L 52.6146,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-8' d='M 80.9122,87.4107 L 74.9751,83.9331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-8' d='M 74.9751,83.9331 L 69.0381,80.4555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 52.6146,87.4107 L 38.3654,79.1819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 48.8314,89.0263 L 38.8569,83.2662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-9' d='M 52.6146,103.868 L 52.6146,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 38.3654,79.1819 L 24.1151,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 24.1151,87.4107 L 24.1151,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 27.4061,89.8793 L 27.4061,101.4' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 24.1151,103.868 L 38.3654,112.097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 38.3654,112.097 L 52.6146,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 38.8569,108.013 L 48.8314,102.253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 52.6146,103.868 L 58.7864,107.432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 58.7864,107.432 L 64.9582,110.997' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 68.7649,110.983 L 74.8385,107.426' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 74.8385,107.426 L 80.9122,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 80.9122,103.868 L 95.3621,112.097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.7083,102.243 L 94.8232,108.003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-16' d='M 80.9122,87.4107 L 80.9122,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 95.3621,112.097 L 109.612,103.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 109.612,103.868 L 109.612,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 106.321,101.4 L 106.321,89.8793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 109.612,87.4107 L 114.25,84.7338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 114.25,84.7338 L 118.887,82.0569' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 109.612,87.4107 L 95.3621,79.1819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 95.3621,79.1819 L 80.9122,87.4107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 94.8232,83.2761 L 84.7083,89.0362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-23 atom-24' d='M 109.939,38.364 L 124.267,30.2713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 123.392 11.486\\nL 124.919 13.9543\\nQ 125.07 14.1978, 125.314 14.6388\\nQ 125.558 15.0798, 125.571 15.1061\\nL 125.571 11.486\\nL 126.189 11.486\\nL 126.189 16.1461\\nL 125.551 16.1461\\nL 123.912 13.4474\\nQ 123.721 13.1315, 123.517 12.7695\\nQ 123.32 12.4075, 123.26 12.2956\\nL 123.26 16.1461\\nL 122.655 16.1461\\nL 122.655 11.486\\nL 123.392 11.486\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 94.7357 27.6725\\nL 96.2628 30.1408\\nQ 96.4142 30.3843, 96.6577 30.8253\\nQ 96.9012 31.2663, 96.9144 31.2926\\nL 96.9144 27.6725\\nL 97.5331 27.6725\\nL 97.5331 32.3326\\nL 96.8946 32.3326\\nL 95.2557 29.634\\nQ 95.0648 29.318, 94.8608 28.956\\nQ 94.6633 28.594, 94.6041 28.4821\\nL 94.6041 32.3326\\nL 93.9985 32.3326\\nL 93.9985 27.6725\\nL 94.7357 27.6725\\n' fill='#0000FF'/>\\n<path class='atom-8' d='M 65.8336 76.8519\\nL 67.3607 79.3202\\nQ 67.5121 79.5637, 67.7556 80.0047\\nQ 67.9992 80.4457, 68.0123 80.472\\nL 68.0123 76.8519\\nL 68.631 76.8519\\nL 68.631 81.512\\nL 67.9926 81.512\\nL 66.3536 78.8133\\nQ 66.1627 78.4974, 65.9587 78.1354\\nQ 65.7612 77.7734, 65.702 77.6615\\nL 65.702 81.512\\nL 65.0964 81.512\\nL 65.0964 76.8519\\nL 65.8336 76.8519\\n' fill='#0000FF'/>\\n<path class='atom-15' d='M 65.5473 113.696\\nQ 65.6 113.716, 65.8172 113.808\\nQ 66.0344 113.9, 66.2713 113.96\\nQ 66.5149 114.012, 66.7518 114.012\\nQ 67.1928 114.012, 67.4495 113.802\\nQ 67.7063 113.584, 67.7063 113.209\\nQ 67.7063 112.953, 67.5746 112.795\\nQ 67.4495 112.637, 67.2521 112.551\\nQ 67.0546 112.466, 66.7255 112.367\\nQ 66.3108 112.242, 66.0607 112.123\\nQ 65.8172 112.005, 65.6395 111.755\\nQ 65.4683 111.505, 65.4683 111.083\\nQ 65.4683 110.497, 65.8633 110.135\\nQ 66.2648 109.773, 67.0546 109.773\\nQ 67.5944 109.773, 68.2065 110.03\\nL 68.0551 110.537\\nQ 67.4956 110.307, 67.0744 110.307\\nQ 66.6202 110.307, 66.3701 110.497\\nQ 66.12 110.682, 66.1265 111.004\\nQ 66.1265 111.254, 66.2516 111.406\\nQ 66.3832 111.557, 66.5675 111.643\\nQ 66.7584 111.728, 67.0744 111.827\\nQ 67.4956 111.959, 67.7457 112.09\\nQ 67.9959 112.222, 68.1736 112.492\\nQ 68.3579 112.755, 68.3579 113.209\\nQ 68.3579 113.854, 67.9235 114.203\\nQ 67.4956 114.545, 66.7782 114.545\\nQ 66.3635 114.545, 66.0476 114.453\\nQ 65.7382 114.368, 65.3696 114.216\\nL 65.5473 113.696\\n' fill='#CCCC00'/>\\n<path class='atom-20' d='M 119.216 80.9909\\nQ 119.216 79.8325, 119.755 79.2269\\nQ 120.302 78.6148, 121.335 78.6148\\nQ 122.296 78.6148, 122.81 79.2927\\nL 122.375 79.6482\\nQ 122 79.1545, 121.335 79.1545\\nQ 120.631 79.1545, 120.256 79.6284\\nQ 119.887 80.0958, 119.887 80.9909\\nQ 119.887 81.9124, 120.269 82.3863\\nQ 120.657 82.8602, 121.408 82.8602\\nQ 121.921 82.8602, 122.52 82.5509\\nL 122.704 83.0445\\nQ 122.461 83.2025, 122.092 83.2947\\nQ 121.723 83.3868, 121.315 83.3868\\nQ 120.302 83.3868, 119.755 82.7681\\nQ 119.216 82.1494, 119.216 80.9909\\n' fill='#00CC00'/>\\n<path class='atom-20' d='M 123.376 78.3317\\nL 123.981 78.3317\\nL 123.981 83.3276\\nL 123.376 83.3276\\nL 123.376 78.3317\\n' fill='#00CC00'/>\\n</svg>\\n", "data-Solubility": -4.4, "data-ID": 1264, "mols2grid-id": 250, "mols2grid-tooltip": "<strong>Name</strong>: Prochlorperazine<br><strong>SMILES</strong>: CN4CCN(CCCN2c1ccccc1Sc3ccc(Cl)cc23)CC4<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-4.4</span>", "style-Solubility": "color: red"}, {"data-SMILES": "O=C(O)C(C(C(C(C(=C1)C=C(C2)C(C)C)C2)(CC3)C)C1)(C3)C", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 131.154,26.8715 L 131.039,32.7585' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 131.039,32.7585 L 130.925,38.6456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.878,26.9438 L 134.764,32.8309' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 134.764,32.8309 L 134.649,38.7179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 132.787,38.6817 L 137.77,41.687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 137.77,41.687 L 142.752,44.6922' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 132.787,38.6817 L 116.892,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 116.892,47.9453 L 100.593,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-3 atom-20' d='M 116.892,47.9453 L 116.892,29.3822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-3 atom-21' d='M 116.892,47.9453 L 116.268,62.8308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 100.593,56.5471 L 84.52,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-4 atom-19' d='M 100.593,56.5471 L 100.593,75.7894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 84.52,47.9453 L 68.6735,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-5 atom-16' d='M 84.52,47.9453 L 84.52,29.3822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-5 atom-18' d='M 84.52,47.9453 L 71.7154,40.3269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 68.6735,56.5471 L 68.6735,75.7894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-6 atom-15' d='M 68.6735,56.5471 L 52.375,47.9453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 67.7323,77.3965 L 85.4613,83.4633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 69.6147,74.1824 L 83.5788,86.6774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-7 atom-9' d='M 68.6735,75.7894 L 52.375,85.0704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-8' d='M 100.593,75.7894 L 84.52,85.0704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 53.3064,83.4575 L 35.3712,77.4022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 51.4437,86.6832 L 37.2339,74.1766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 36.3025,75.7894 L 36.3025,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 36.3025,75.7894 L 20.2387,85.228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-11' d='M 52.375,47.9453 L 36.3025,56.5471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 20.2387,85.228 L 7.27273,77.8877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-14' d='M 20.2387,85.228 L 20.3604,100.126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 84.52,29.3822 L 100.593,19.874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-17' d='M 116.892,29.3822 L 100.593,19.874' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 130.655 23.8012\\nQ 130.655 22.5348, 131.281 21.827\\nQ 131.907 21.1193, 133.076 21.1193\\nQ 134.246 21.1193, 134.872 21.827\\nQ 135.498 22.5348, 135.498 23.8012\\nQ 135.498 25.0825, 134.864 25.8126\\nQ 134.231 26.5352, 133.076 26.5352\\nQ 131.914 26.5352, 131.281 25.8126\\nQ 130.655 25.09, 130.655 23.8012\\nM 133.076 25.9392\\nQ 133.881 25.9392, 134.313 25.4028\\nQ 134.753 24.859, 134.753 23.8012\\nQ 134.753 22.7657, 134.313 22.2442\\nQ 133.881 21.7153, 133.076 21.7153\\nQ 132.272 21.7153, 131.832 22.2368\\nQ 131.4 22.7582, 131.4 23.8012\\nQ 131.4 24.8665, 131.832 25.4028\\nQ 132.272 25.9392, 133.076 25.9392\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 143.125 46.3921\\nQ 143.125 45.1256, 143.751 44.4179\\nQ 144.376 43.7102, 145.546 43.7102\\nQ 146.715 43.7102, 147.341 44.4179\\nQ 147.967 45.1256, 147.967 46.3921\\nQ 147.967 47.6734, 147.334 48.4035\\nQ 146.701 49.1261, 145.546 49.1261\\nQ 144.384 49.1261, 143.751 48.4035\\nQ 143.125 47.6809, 143.125 46.3921\\nM 145.546 48.5301\\nQ 146.35 48.5301, 146.782 47.9937\\nQ 147.222 47.4499, 147.222 46.3921\\nQ 147.222 45.3566, 146.782 44.8351\\nQ 146.35 44.3062, 145.546 44.3062\\nQ 144.741 44.3062, 144.302 44.8277\\nQ 143.87 45.3491, 143.87 46.3921\\nQ 143.87 47.4574, 144.302 47.9937\\nQ 144.741 48.5301, 145.546 48.5301\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 148.6 43.7698\\nL 149.315 43.7698\\nL 149.315 46.0121\\nL 152.012 46.0121\\nL 152.012 43.7698\\nL 152.727 43.7698\\nL 152.727 49.0441\\nL 152.012 49.0441\\nL 152.012 46.6081\\nL 149.315 46.6081\\nL 149.315 49.0441\\nL 148.6 49.0441\\nL 148.6 43.7698\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.8, "data-ID": 1270, "mols2grid-id": 251, "mols2grid-tooltip": "<strong>Name</strong>: Abietic_Acid<br><strong>SMILES</strong>: O=C(O)C(C(C(C(C(=C1)C=C(C2)C(C)C)C2)(CC3)C)C1)(C3)C<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.8</span>", "style-Solubility": "color: red"}, {"data-SMILES": "C1C(=O)C=C2CCC3C4CCC(O)(C#C)C4(C)CCC3C2(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 23.5521,73.1872 L 23.5521,92.1651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-0' d='M 39.6472,63.8187 L 23.5521,73.1872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 22.5718,90.4511 L 17.1964,93.5256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 17.1964,93.5256 L 11.8211,96.6' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 24.5324,93.8791 L 19.1571,96.9535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.1571,96.9535 L 13.7817,100.028' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 23.5521,92.1651 L 39.888,101.775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 40.8967,103.472 L 55.455,90.2281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 38.8794,100.077 L 57.4722,93.623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 56.4636,91.9255 L 73.0404,101.535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-20 atom-4' d='M 56.4636,72.9463 L 56.4636,91.9255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.0404,101.535 L 89.3751,91.6847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 89.3751,91.6847 L 89.1355,72.7068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 89.1355,72.7068 L 105.471,63.3383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-7' d='M 72.7995,63.5779 L 89.1355,72.7068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 105.471,63.3383 L 138.624,63.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-8' d='M 105.471,44.3591 L 105.471,63.3383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 138.624,63.5779 L 138.624,44.1195' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 138.624,44.1195 L 122.047,34.5101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 122.047,34.5101 L 116.58,31.556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 116.58,31.556 L 111.112,28.6019' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-13' d='M 122.047,34.5101 L 139.096,25.0626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-11 atom-15' d='M 122.047,34.5101 L 105.471,44.3591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 139.096,25.0626 L 152.727,17.0776' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 143.137,27.2723 L 154.723,20.4851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 139.145,20.4574 L 150.731,13.6702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 105.471,44.3591 L 91.809,52.2875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-15 atom-17' d='M 105.471,44.3591 L 89.1355,34.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 89.1355,34.7497 L 72.56,44.3591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 72.56,44.3591 L 72.7995,63.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-20' d='M 72.7995,63.5779 L 56.4636,72.9463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-20 atom-21' d='M 56.4636,72.9463 L 56.2793,57.1514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-20 atom-22' d='M 56.4636,72.9463 L 39.6472,63.8187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 7.27273 100.024\\nQ 7.27273 98.6811, 7.93617 97.9308\\nQ 8.59961 97.1804, 9.83962 97.1804\\nQ 11.0796 97.1804, 11.7431 97.9308\\nQ 12.4065 98.6811, 12.4065 100.024\\nQ 12.4065 101.382, 11.7352 102.156\\nQ 11.0638 102.922, 9.83962 102.922\\nQ 8.60751 102.922, 7.93617 102.156\\nQ 7.27273 101.39, 7.27273 100.024\\nM 9.83962 102.291\\nQ 10.6926 102.291, 11.1507 101.722\\nQ 11.6167 101.145, 11.6167 100.024\\nQ 11.6167 98.9259, 11.1507 98.3731\\nQ 10.6926 97.8123, 9.83962 97.8123\\nQ 8.98662 97.8123, 8.52063 98.3652\\nQ 8.06254 98.918, 8.06254 100.024\\nQ 8.06254 101.153, 8.52063 101.722\\nQ 8.98662 102.291, 9.83962 102.291\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 100.813 24.2373\\nL 101.571 24.2373\\nL 101.571 26.6146\\nL 104.43 26.6146\\nL 104.43 24.2373\\nL 105.188 24.2373\\nL 105.188 29.8292\\nL 104.43 29.8292\\nL 104.43 27.2465\\nL 101.571 27.2465\\nL 101.571 29.8292\\nL 100.813 29.8292\\nL 100.813 24.2373\\n' fill='#FF0000'/>\\n<path class='atom-12' d='M 105.583 27.0174\\nQ 105.583 25.6747, 106.247 24.9244\\nQ 106.91 24.1741, 108.15 24.1741\\nQ 109.39 24.1741, 110.054 24.9244\\nQ 110.717 25.6747, 110.717 27.0174\\nQ 110.717 28.3759, 110.046 29.1499\\nQ 109.374 29.916, 108.15 29.916\\nQ 106.918 29.916, 106.247 29.1499\\nQ 105.583 28.3838, 105.583 27.0174\\nM 108.15 29.2842\\nQ 109.003 29.2842, 109.461 28.7155\\nQ 109.927 28.139, 109.927 27.0174\\nQ 109.927 25.9196, 109.461 25.3667\\nQ 109.003 24.8059, 108.15 24.8059\\nQ 107.297 24.8059, 106.831 25.3588\\nQ 106.373 25.9117, 106.373 27.0174\\nQ 106.373 28.1469, 106.831 28.7155\\nQ 107.297 29.2842, 108.15 29.2842\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -5.66, "data-ID": 1275, "mols2grid-id": 252, "mols2grid-tooltip": "<strong>Name</strong>: Ethisterone<br><strong>SMILES</strong>: C1C(=O)C=C2CCC3C4CCC(O)(C#C)C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.66</span>", "style-Solubility": "color: red"}, {"data-SMILES": "c1ccc2OC(=O)C(C(C(=O)OCC)C3=C(O)c4ccccc4OC3=O)=C(O)c2c1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 13.4726,63.517 L 13.4726,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 16.8811,66.0686 L 16.8811,77.976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-29 atom-0' d='M 28.4097,55.0105 L 13.4726,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 13.4726,80.5276 L 28.4097,89.0341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 28.4097,89.0341 L 43.1389,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 28.9145,84.8065 L 39.2249,78.852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 43.1389,80.5276 L 49.1831,84.0183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 49.1831,84.0183 L 55.2274,87.509' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-3' d='M 43.1389,63.517 L 43.1389,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 60.5089,87.5091 L 66.5537,84.0183' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 66.5537,84.0183 L 72.5985,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 71.7463,82.0035 L 76.3717,84.674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 76.3717,84.674 L 80.997,87.3445' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 73.4506,79.0517 L 78.0759,81.7222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 78.0759,81.7222 L 82.7013,84.3927' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 72.5985,80.5276 L 72.5985,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 72.5985,63.517 L 87.3413,54.9469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-7 atom-26' d='M 73.4507,62.0412 L 57.0159,56.4864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-7 atom-26' d='M 71.7462,64.9928 L 58.7204,53.5347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 87.3413,54.9469 L 87.322,37.8954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-8 atom-14' d='M 87.3413,54.9469 L 102.139,63.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 88.172,36.4182 L 83.5416,33.7538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 83.5416,33.7538 L 78.9111,31.0893' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 86.472,39.3725 L 81.8416,36.7081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 81.8416,36.7081 L 77.2112,34.0436' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 87.322,37.8954 L 93.3771,34.3852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-11' d='M 93.3771,34.3852 L 99.4321,30.875' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.071,26.4767 L 102.063,19.3844' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 102.063,19.3844 L 102.055,12.292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 102.055,12.292 L 113.85,5.45455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 100.435,63.4363 L 103.98,80.5844' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 103.843,63.409 L 100.572,80.6117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-14' d='M 116.846,54.8708 L 102.139,63.4227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 102.276,80.5981 L 97.6685,83.2904' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 97.6685,83.2904 L 93.0608,85.9827' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 102.276,80.5981 L 117.027,89.0681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 117.027,89.0681 L 117.064,106.076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 120.441,91.6119 L 120.467,103.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-22 atom-17' d='M 131.739,80.5276 L 117.027,89.0681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-19' d='M 117.064,106.076 L 131.815,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 131.815,114.545 L 146.527,106.006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 132.311,110.317 L 142.61,104.339' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-20 atom-21' d='M 146.527,106.006 L 146.49,88.9977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 146.49,88.9977 L 131.739,80.5276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 142.58,90.683 L 132.254,84.754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 131.739,80.5276 L 131.724,73.4938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 131.724,73.4938 L 131.708,66.4599' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 129.056,61.9793 L 122.951,58.425' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 122.951,58.425 L 116.846,54.8708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 118.551,54.8714 L 118.552,49.4825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 118.552,49.4825 L 118.554,44.0937' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 115.142,54.8702 L 115.144,49.4814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-24 atom-25' d='M 115.144,49.4814 L 115.146,44.0926' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-27' d='M 57.8681,55.0105 L 57.8681,49.6217' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-26 atom-27' d='M 57.8681,49.6217 L 57.8681,44.2329' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-28' d='M 57.8681,55.0105 L 43.1389,63.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-29' d='M 43.1389,63.517 L 28.4097,55.0105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-28 atom-29' d='M 39.2249,65.1926 L 28.9145,59.2381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-4' d='M 55.6526 89.0477\\nQ 55.6526 87.8888, 56.2252 87.2412\\nQ 56.7979 86.5936, 57.8681 86.5936\\nQ 58.9384 86.5936, 59.511 87.2412\\nQ 60.0836 87.8888, 60.0836 89.0477\\nQ 60.0836 90.2202, 59.5042 90.8883\\nQ 58.9248 91.5495, 57.8681 91.5495\\nQ 56.8047 91.5495, 56.2252 90.8883\\nQ 55.6526 90.227, 55.6526 89.0477\\nM 57.8681 91.0042\\nQ 58.6044 91.0042, 58.9997 90.5133\\nQ 59.4019 90.0157, 59.4019 89.0477\\nQ 59.4019 88.1001, 58.9997 87.6229\\nQ 58.6044 87.1389, 57.8681 87.1389\\nQ 57.1319 87.1389, 56.7297 87.6161\\nQ 56.3343 88.0933, 56.3343 89.0477\\nQ 56.3343 90.0225, 56.7297 90.5133\\nQ 57.1319 91.0042, 57.8681 91.0042\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 82.19 87.3582\\nQ 82.19 86.1993, 82.7626 85.5517\\nQ 83.3352 84.9041, 84.4055 84.9041\\nQ 85.4757 84.9041, 86.0484 85.5517\\nQ 86.621 86.1993, 86.621 87.3582\\nQ 86.621 88.5307, 86.0415 89.1988\\nQ 85.4621 89.8601, 84.4055 89.8601\\nQ 83.342 89.8601, 82.7626 89.1988\\nQ 82.19 88.5376, 82.19 87.3582\\nM 84.4055 89.3147\\nQ 85.1417 89.3147, 85.5371 88.8239\\nQ 85.9393 88.3262, 85.9393 87.3582\\nQ 85.9393 86.4107, 85.5371 85.9335\\nQ 85.1417 85.4495, 84.4055 85.4495\\nQ 83.6692 85.4495, 83.267 85.9267\\nQ 82.8717 86.4038, 82.8717 87.3582\\nQ 82.8717 88.3331, 83.267 88.8239\\nQ 83.6692 89.3147, 84.4055 89.3147\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 73.2893 31.1091\\nQ 73.2893 29.9502, 73.8619 29.3026\\nQ 74.4345 28.655, 75.5048 28.655\\nQ 76.575 28.655, 77.1477 29.3026\\nQ 77.7203 29.9502, 77.7203 31.1091\\nQ 77.7203 32.2816, 77.1408 32.9497\\nQ 76.5614 33.6109, 75.5048 33.6109\\nQ 74.4413 33.6109, 73.8619 32.9497\\nQ 73.2893 32.2884, 73.2893 31.1091\\nM 75.5048 33.0656\\nQ 76.241 33.0656, 76.6364 32.5747\\nQ 77.0386 32.0771, 77.0386 31.1091\\nQ 77.0386 30.1615, 76.6364 29.6843\\nQ 76.241 29.2003, 75.5048 29.2003\\nQ 74.7685 29.2003, 74.3663 29.6775\\nQ 73.971 30.1547, 73.971 31.1091\\nQ 73.971 32.0839, 74.3663 32.5747\\nQ 74.7685 33.0656, 75.5048 33.0656\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 99.8584 29.3571\\nQ 99.8584 28.1982, 100.431 27.5506\\nQ 101.004 26.903, 102.074 26.903\\nQ 103.144 26.903, 103.717 27.5506\\nQ 104.289 28.1982, 104.289 29.3571\\nQ 104.289 30.5297, 103.71 31.1977\\nQ 103.131 31.859, 102.074 31.859\\nQ 101.01 31.859, 100.431 31.1977\\nQ 99.8584 30.5365, 99.8584 29.3571\\nM 102.074 31.3136\\nQ 102.81 31.3136, 103.206 30.8228\\nQ 103.608 30.3251, 103.608 29.3571\\nQ 103.608 28.4096, 103.206 27.9324\\nQ 102.81 27.4484, 102.074 27.4484\\nQ 101.338 27.4484, 100.935 27.9256\\nQ 100.54 28.4028, 100.54 29.3571\\nQ 100.54 30.332, 100.935 30.8228\\nQ 101.338 31.3136, 102.074 31.3136\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 84.1714 85.0904\\nL 84.8258 85.0904\\nL 84.8258 87.1424\\nL 87.2936 87.1424\\nL 87.2936 85.0904\\nL 87.948 85.0904\\nL 87.948 89.9169\\nL 87.2936 89.9169\\nL 87.2936 87.6877\\nL 84.8258 87.6877\\nL 84.8258 89.9169\\nL 84.1714 89.9169\\nL 84.1714 85.0904\\n' fill='#FF0000'/>\\n<path class='atom-16' d='M 88.2889 87.49\\nQ 88.2889 86.3311, 88.8615 85.6835\\nQ 89.4341 85.0359, 90.5044 85.0359\\nQ 91.5747 85.0359, 92.1473 85.6835\\nQ 92.7199 86.3311, 92.7199 87.49\\nQ 92.7199 88.6625, 92.1405 89.3306\\nQ 91.561 89.9918, 90.5044 89.9918\\nQ 89.4409 89.9918, 88.8615 89.3306\\nQ 88.2889 88.6694, 88.2889 87.49\\nM 90.5044 89.4465\\nQ 91.2406 89.4465, 91.636 88.9557\\nQ 92.0382 88.458, 92.0382 87.49\\nQ 92.0382 86.5425, 91.636 86.0653\\nQ 91.2406 85.5813, 90.5044 85.5813\\nQ 89.7682 85.5813, 89.366 86.0585\\nQ 88.9706 86.5356, 88.9706 87.49\\nQ 88.9706 88.4648, 89.366 88.9557\\nQ 89.7682 89.4465, 90.5044 89.4465\\n' fill='#FF0000'/>\\n<path class='atom-23' d='M 129.486 63.5329\\nQ 129.486 62.374, 130.059 61.7264\\nQ 130.631 61.0788, 131.702 61.0788\\nQ 132.772 61.0788, 133.345 61.7264\\nQ 133.917 62.374, 133.917 63.5329\\nQ 133.917 64.7054, 133.338 65.3735\\nQ 132.758 66.0347, 131.702 66.0347\\nQ 130.638 66.0347, 130.059 65.3735\\nQ 129.486 64.7122, 129.486 63.5329\\nM 131.702 65.4894\\nQ 132.438 65.4894, 132.833 64.9985\\nQ 133.235 64.5009, 133.235 63.5329\\nQ 133.235 62.5853, 132.833 62.1081\\nQ 132.438 61.6241, 131.702 61.6241\\nQ 130.965 61.6241, 130.563 62.1013\\nQ 130.168 62.5785, 130.168 63.5329\\nQ 130.168 64.5077, 130.563 64.9985\\nQ 130.965 65.4894, 131.702 65.4894\\n' fill='#FF0000'/>\\n<path class='atom-25' d='M 114.635 41.2505\\nQ 114.635 40.0916, 115.208 39.444\\nQ 115.781 38.7964, 116.851 38.7964\\nQ 117.921 38.7964, 118.494 39.444\\nQ 119.066 40.0916, 119.066 41.2505\\nQ 119.066 42.423, 118.487 43.0911\\nQ 117.907 43.7523, 116.851 43.7523\\nQ 115.787 43.7523, 115.208 43.0911\\nQ 114.635 42.4298, 114.635 41.2505\\nM 116.851 43.207\\nQ 117.587 43.207, 117.982 42.7161\\nQ 118.385 42.2185, 118.385 41.2505\\nQ 118.385 40.3029, 117.982 39.8257\\nQ 117.587 39.3417, 116.851 39.3417\\nQ 116.115 39.3417, 115.712 39.8189\\nQ 115.317 40.2961, 115.317 41.2505\\nQ 115.317 42.2253, 115.712 42.7161\\nQ 116.115 43.207, 116.851 43.207\\n' fill='#FF0000'/>\\n<path class='atom-27' d='M 55.6526 41.3902\\nQ 55.6526 40.2313, 56.2252 39.5837\\nQ 56.7979 38.9361, 57.8681 38.9361\\nQ 58.9384 38.9361, 59.511 39.5837\\nQ 60.0836 40.2313, 60.0836 41.3902\\nQ 60.0836 42.5627, 59.5042 43.2308\\nQ 58.9248 43.8921, 57.8681 43.8921\\nQ 56.8047 43.8921, 56.2252 43.2308\\nQ 55.6526 42.5696, 55.6526 41.3902\\nM 57.8681 43.3467\\nQ 58.6044 43.3467, 58.9997 42.8559\\nQ 59.4019 42.3582, 59.4019 41.3902\\nQ 59.4019 40.4427, 58.9997 39.9655\\nQ 58.6044 39.4815, 57.8681 39.4815\\nQ 57.1319 39.4815, 56.7297 39.9587\\nQ 56.3343 40.4359, 56.3343 41.3902\\nQ 56.3343 42.3651, 56.7297 42.8559\\nQ 57.1319 43.3467, 57.8681 43.3467\\n' fill='#FF0000'/>\\n<path class='atom-27' d='M 60.6631 38.9907\\nL 61.3175 38.9907\\nL 61.3175 41.0426\\nL 63.7853 41.0426\\nL 63.7853 38.9907\\nL 64.4397 38.9907\\nL 64.4397 43.8171\\nL 63.7853 43.8171\\nL 63.7853 41.5879\\nL 61.3175 41.5879\\nL 61.3175 43.8171\\nL 60.6631 43.8171\\nL 60.6631 38.9907\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -3.66, "data-ID": 1280, "mols2grid-id": 253, "mols2grid-tooltip": "<strong>Name</strong>: Ethyl_Biscoumacetate<br><strong>SMILES</strong>: c1ccc2OC(=O)C(C(C(=O)OCC)C3=C(O)c4ccccc4OC3=O)=C(O)c2c1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-3.66</span>", "style-Solubility": "color: red"}, {"data-SMILES": "NCCC(O)C(=O)NC2CC(N)C(OC1OC(CN)C(O)C(O)C1O)C(O)C2OC3OC(CO)C(O)C(N)C3O", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 121.919,108.355 L 121.915,105.221' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 121.915,105.221 L 121.91,102.088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 121.91,102.088 L 112.584,96.713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 112.584,96.713 L 112.569,85.9493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 112.569,85.9493 L 115.211,84.4202' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 115.211,84.4202 L 117.852,82.891' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-3 atom-5' d='M 112.569,85.9493 L 103.243,80.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 102.704,79.6436 L 100.062,81.1725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 100.062,81.1725 L 97.4202,82.7015' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 103.782,81.5058 L 101.14,83.0347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 101.14,83.0347 L 98.498,84.5637' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.243,80.5747 L 103.237,76.3894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-5 atom-7' d='M 103.237,76.3894 L 103.231,72.2041' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 101.348,68.7275 L 97.6244,66.5819' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 97.6244,66.5819 L 93.9012,64.4363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 93.9012,64.4363 L 84.5999,69.8418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-27 atom-8' d='M 93.8704,53.6784 L 93.9012,64.4363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 84.5999,69.8418 L 75.2678,64.4894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 75.2678,64.4894 L 72.4604,66.1208' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 72.4604,66.1208 L 69.653,67.7522' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-10 atom-12' d='M 75.2678,64.4894 L 75.2376,53.7314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 75.2376,53.7314 L 71.684,51.6835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 71.684,51.6835 L 68.1303,49.6356' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-12 atom-25' d='M 75.2376,53.7314 L 84.539,48.3259' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 63.6921,49.6384 L 60.1413,51.6892' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 60.1413,51.6892 L 56.5906,53.7401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 56.5906,53.7401 L 56.5995,57.9109' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 56.5995,57.9109 L 56.6083,62.0817' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-23 atom-14' d='M 47.2613,48.3819 L 56.5906,53.7401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 54.3946,65.7862 L 50.8516,67.842' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 50.8516,67.842 L 47.3086,69.8978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-16 atom-17' d='M 47.3086,69.8978 L 47.3545,80.6622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-16 atom-19' d='M 47.3086,69.8978 L 37.98,64.5396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 47.3545,80.6622 L 50.1759,82.2774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 50.1759,82.2774 L 52.9972,83.8926' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 37.98,64.5396 L 35.3407,66.0709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-19 atom-20' d='M 35.3407,66.0709 L 32.7014,67.6023' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-21' d='M 37.98,64.5396 L 37.9564,53.7817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 37.9564,53.7817 L 35.3077,52.2602' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-21 atom-22' d='M 35.3077,52.2602 L 32.6591,50.7387' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-23' d='M 37.9564,53.7817 L 47.2613,48.3819' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 47.2613,48.3819 L 47.2546,45.2933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-23 atom-24' d='M 47.2546,45.2933 L 47.2479,42.2047' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 84.539,48.3259 L 84.53,45.2373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 84.53,45.2373 L 84.5209,42.1487' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-25 atom-27' d='M 84.539,48.3259 L 93.8704,53.6784' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-27 atom-28' d='M 93.8704,53.6784 L 97.4198,51.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-27 atom-28' d='M 97.4198,51.6253 L 100.969,49.5723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-29' d='M 103.188,45.8716 L 103.187,41.6983' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-28 atom-29' d='M 103.187,41.6983 L 103.187,37.525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-29 atom-30' d='M 103.187,37.525 L 106.741,35.4817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-29 atom-30' d='M 106.741,35.4817 L 110.294,33.4383' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-40 atom-38 atom-29' d='M 93.8797,32.1281 L 103.187,37.525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-30 atom-31' d='M 112.518,29.7455 L 112.525,25.5751' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-30 atom-31' d='M 112.525,25.5751 L 112.533,21.4046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 112.533,21.4046 L 121.876,16.0593' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-35 atom-31 atom-34' d='M 112.533,21.4046 L 103.227,16.0084' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-33' d='M 121.876,16.0593 L 124.513,17.5936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-33' d='M 124.513,17.5936 L 127.15,19.1279' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-36 atom-34 atom-35' d='M 103.227,16.0084 L 103.233,12.9198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-36 atom-34 atom-35' d='M 103.233,12.9198 L 103.238,9.83118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-37 atom-34 atom-36' d='M 103.227,16.0084 L 93.8998,21.3701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-38 atom-36 atom-37' d='M 93.8998,21.3701 L 91.0903,19.7409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-38 atom-36 atom-37' d='M 91.0903,19.7409 L 88.2808,18.1116' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-39 atom-36 atom-38' d='M 93.8998,21.3701 L 93.8797,32.1281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-41 atom-38 atom-39' d='M 93.8797,32.1281 L 91.2318,33.6502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-41 atom-38 atom-39' d='M 91.2318,33.6502 L 88.5839,35.1723' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 120.984 108.57\\nL 122.376 110.82\\nQ 122.514 111.042, 122.736 111.444\\nQ 122.958 111.846, 122.97 111.87\\nL 122.97 108.57\\nL 123.534 108.57\\nL 123.534 112.818\\nL 122.952 112.818\\nL 121.458 110.358\\nQ 121.284 110.07, 121.098 109.74\\nQ 120.918 109.41, 120.864 109.308\\nL 120.864 112.818\\nL 120.312 112.818\\nL 120.312 108.57\\nL 120.984 108.57\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 124.044 108.57\\nL 124.62 108.57\\nL 124.62 110.376\\nL 126.792 110.376\\nL 126.792 108.57\\nL 127.368 108.57\\nL 127.368 112.818\\nL 126.792 112.818\\nL 126.792 110.856\\nL 124.62 110.856\\nL 124.62 112.818\\nL 124.044 112.818\\nL 124.044 108.57\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 127.574 112.669\\nQ 127.677 112.404, 127.922 112.257\\nQ 128.168 112.107, 128.508 112.107\\nQ 128.932 112.107, 129.17 112.336\\nQ 129.407 112.566, 129.407 112.974\\nQ 129.407 113.39, 129.098 113.778\\nQ 128.793 114.166, 128.16 114.625\\nL 129.455 114.625\\nL 129.455 114.942\\nL 127.566 114.942\\nL 127.566 114.677\\nQ 128.089 114.304, 128.397 114.027\\nQ 128.71 113.75, 128.861 113.501\\nQ 129.011 113.251, 129.011 112.994\\nQ 129.011 112.724, 128.877 112.574\\nQ 128.742 112.423, 128.508 112.423\\nQ 128.283 112.423, 128.132 112.515\\nQ 127.982 112.606, 127.875 112.808\\nL 127.574 112.669\\n' fill='#0000FF'/>\\n<path class='atom-4' d='M 118.067 81.6495\\nQ 118.067 80.6295, 118.571 80.0595\\nQ 119.075 79.4895, 120.017 79.4895\\nQ 120.959 79.4895, 121.463 80.0595\\nQ 121.967 80.6295, 121.967 81.6495\\nQ 121.967 82.6815, 121.457 83.2695\\nQ 120.947 83.8515, 120.017 83.8515\\nQ 119.081 83.8515, 118.571 83.2695\\nQ 118.067 82.6875, 118.067 81.6495\\nM 120.017 83.3715\\nQ 120.665 83.3715, 121.013 82.9395\\nQ 121.367 82.5015, 121.367 81.6495\\nQ 121.367 80.8155, 121.013 80.3955\\nQ 120.665 79.9695, 120.017 79.9695\\nQ 119.369 79.9695, 119.015 80.3895\\nQ 118.667 80.8095, 118.667 81.6495\\nQ 118.667 82.5075, 119.015 82.9395\\nQ 119.369 83.3715, 120.017 83.3715\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 122.477 79.5375\\nL 123.053 79.5375\\nL 123.053 81.3435\\nL 125.225 81.3435\\nL 125.225 79.5375\\nL 125.801 79.5375\\nL 125.801 83.7855\\nL 125.225 83.7855\\nL 125.225 81.8235\\nL 123.053 81.8235\\nL 123.053 83.7855\\nL 122.477 83.7855\\nL 122.477 79.5375\\n' fill='#FF0000'/>\\n<path class='atom-6' d='M 93.8439 84.8977\\nQ 93.8439 83.8777, 94.3479 83.3077\\nQ 94.8519 82.7377, 95.7939 82.7377\\nQ 96.7359 82.7377, 97.2399 83.3077\\nQ 97.7439 83.8777, 97.7439 84.8977\\nQ 97.7439 85.9297, 97.2339 86.5177\\nQ 96.7239 87.0997, 95.7939 87.0997\\nQ 94.8579 87.0997, 94.3479 86.5177\\nQ 93.8439 85.9357, 93.8439 84.8977\\nM 95.7939 86.6197\\nQ 96.4419 86.6197, 96.7899 86.1877\\nQ 97.1439 85.7497, 97.1439 84.8977\\nQ 97.1439 84.0637, 96.7899 83.6437\\nQ 96.4419 83.2177, 95.7939 83.2177\\nQ 95.1459 83.2177, 94.7919 83.6377\\nQ 94.4439 84.0577, 94.4439 84.8977\\nQ 94.4439 85.7557, 94.7919 86.1877\\nQ 95.1459 86.6197, 95.7939 86.6197\\n' fill='#FF0000'/>\\n<path class='atom-7' d='M 102.289 67.687\\nL 103.681 69.937\\nQ 103.819 70.159, 104.041 70.561\\nQ 104.263 70.963, 104.275 70.987\\nL 104.275 67.687\\nL 104.839 67.687\\nL 104.839 71.935\\nL 104.257 71.935\\nL 102.763 69.475\\nQ 102.589 69.187, 102.403 68.857\\nQ 102.223 68.527, 102.169 68.425\\nL 102.169 71.935\\nL 101.617 71.935\\nL 101.617 67.687\\nL 102.289 67.687\\n' fill='#0000FF'/>\\n<path class='atom-7' d='M 105.349 67.687\\nL 105.925 67.687\\nL 105.925 69.493\\nL 108.097 69.493\\nL 108.097 67.687\\nL 108.673 67.687\\nL 108.673 71.935\\nL 108.097 71.935\\nL 108.097 69.973\\nL 105.925 69.973\\nL 105.925 71.935\\nL 105.349 71.935\\nL 105.349 67.687\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 60.3069 66.6894\\nL 60.8829 66.6894\\nL 60.8829 68.4954\\nL 63.0549 68.4954\\nL 63.0549 66.6894\\nL 63.6309 66.6894\\nL 63.6309 70.9374\\nL 63.0549 70.9374\\nL 63.0549 68.9754\\nL 60.8829 68.9754\\nL 60.8829 70.9374\\nL 60.3069 70.9374\\nL 60.3069 66.6894\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 63.8369 70.7883\\nQ 63.9398 70.523, 64.1853 70.3765\\nQ 64.4309 70.226, 64.7714 70.226\\nQ 65.1951 70.226, 65.4327 70.4557\\nQ 65.6703 70.6854, 65.6703 71.0932\\nQ 65.6703 71.509, 65.3615 71.8971\\nQ 65.0565 72.2852, 64.4229 72.7446\\nL 65.7179 72.7446\\nL 65.7179 73.0614\\nL 63.8289 73.0614\\nL 63.8289 72.796\\nQ 64.3517 72.4238, 64.6605 72.1466\\nQ 64.9734 71.8694, 65.1239 71.6199\\nQ 65.2743 71.3704, 65.2743 71.113\\nQ 65.2743 70.8438, 65.1397 70.6933\\nQ 65.0051 70.5428, 64.7714 70.5428\\nQ 64.5457 70.5428, 64.3952 70.6339\\nQ 64.2447 70.725, 64.1378 70.9269\\nL 63.8369 70.7883\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 66.8879 66.6894\\nL 68.2799 68.9394\\nQ 68.4179 69.1614, 68.6399 69.5634\\nQ 68.8619 69.9654, 68.8739 69.9894\\nL 68.8739 66.6894\\nL 69.4379 66.6894\\nL 69.4379 70.9374\\nL 68.8559 70.9374\\nL 67.3619 68.4774\\nQ 67.1879 68.1894, 67.0019 67.8594\\nQ 66.8219 67.5294, 66.7679 67.4274\\nL 66.7679 70.9374\\nL 66.2159 70.9374\\nL 66.2159 66.6894\\nL 66.8879 66.6894\\n' fill='#0000FF'/>\\n<path class='atom-13' d='M 63.9612 48.3688\\nQ 63.9612 47.3488, 64.4652 46.7788\\nQ 64.9692 46.2088, 65.9112 46.2088\\nQ 66.8532 46.2088, 67.3572 46.7788\\nQ 67.8612 47.3488, 67.8612 48.3688\\nQ 67.8612 49.4008, 67.3512 49.9888\\nQ 66.8412 50.5708, 65.9112 50.5708\\nQ 64.9752 50.5708, 64.4652 49.9888\\nQ 63.9612 49.4068, 63.9612 48.3688\\nM 65.9112 50.0908\\nQ 66.5592 50.0908, 66.9072 49.6588\\nQ 67.2612 49.2208, 67.2612 48.3688\\nQ 67.2612 47.5348, 66.9072 47.1148\\nQ 66.5592 46.6888, 65.9112 46.6888\\nQ 65.2632 46.6888, 64.9092 47.1088\\nQ 64.5612 47.5288, 64.5612 48.3688\\nQ 64.5612 49.2268, 64.9092 49.6588\\nQ 65.2632 50.0908, 65.9112 50.0908\\n' fill='#FF0000'/>\\n<path class='atom-15' d='M 54.6635 64.5107\\nQ 54.6635 63.4907, 55.1675 62.9207\\nQ 55.6715 62.3507, 56.6135 62.3507\\nQ 57.5555 62.3507, 58.0595 62.9207\\nQ 58.5635 63.4907, 58.5635 64.5107\\nQ 58.5635 65.5427, 58.0535 66.1307\\nQ 57.5435 66.7127, 56.6135 66.7127\\nQ 55.6775 66.7127, 55.1675 66.1307\\nQ 54.6635 65.5487, 54.6635 64.5107\\nM 56.6135 66.2327\\nQ 57.2615 66.2327, 57.6095 65.8007\\nQ 57.9635 65.3627, 57.9635 64.5107\\nQ 57.9635 63.6767, 57.6095 63.2567\\nQ 57.2615 62.8307, 56.6135 62.8307\\nQ 55.9655 62.8307, 55.6115 63.2507\\nQ 55.2635 63.6707, 55.2635 64.5107\\nQ 55.2635 65.3687, 55.6115 65.8007\\nQ 55.9655 66.2327, 56.6135 66.2327\\n' fill='#FF0000'/>\\n<path class='atom-18' d='M 53.8844 82.8141\\nL 55.2764 85.0641\\nQ 55.4144 85.2861, 55.6364 85.6881\\nQ 55.8584 86.0901, 55.8704 86.1141\\nL 55.8704 82.8141\\nL 56.4344 82.8141\\nL 56.4344 87.0621\\nL 55.8524 87.0621\\nL 54.3584 84.6021\\nQ 54.1844 84.3141, 53.9984 83.9841\\nQ 53.8184 83.6541, 53.7644 83.5521\\nL 53.7644 87.0621\\nL 53.2124 87.0621\\nL 53.2124 82.8141\\nL 53.8844 82.8141\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 56.9444 82.8141\\nL 57.5204 82.8141\\nL 57.5204 84.6201\\nL 59.6924 84.6201\\nL 59.6924 82.8141\\nL 60.2684 82.8141\\nL 60.2684 87.0621\\nL 59.6924 87.0621\\nL 59.6924 85.1001\\nL 57.5204 85.1001\\nL 57.5204 87.0621\\nL 56.9444 87.0621\\nL 56.9444 82.8141\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 60.4743 86.913\\nQ 60.5773 86.6477, 60.8228 86.5012\\nQ 61.0683 86.3507, 61.4089 86.3507\\nQ 61.8326 86.3507, 62.0702 86.5804\\nQ 62.3078 86.8101, 62.3078 87.218\\nQ 62.3078 87.6338, 61.9989 88.0218\\nQ 61.694 88.4099, 61.0604 88.8693\\nL 62.3553 88.8693\\nL 62.3553 89.1861\\nL 60.4664 89.1861\\nL 60.4664 88.9208\\nQ 60.9891 88.5485, 61.298 88.2713\\nQ 61.6108 87.9941, 61.7613 87.7446\\nQ 61.9118 87.4952, 61.9118 87.2378\\nQ 61.9118 86.9685, 61.7771 86.818\\nQ 61.6425 86.6675, 61.4089 86.6675\\nQ 61.1831 86.6675, 61.0327 86.7586\\nQ 60.8822 86.8497, 60.7753 87.0516\\nL 60.4743 86.913\\n' fill='#0000FF'/>\\n<path class='atom-20' d='M 24.9623 66.7585\\nL 25.5383 66.7585\\nL 25.5383 68.5645\\nL 27.7103 68.5645\\nL 27.7103 66.7585\\nL 28.2863 66.7585\\nL 28.2863 71.0065\\nL 27.7103 71.0065\\nL 27.7103 69.0445\\nL 25.5383 69.0445\\nL 25.5383 71.0065\\nL 24.9623 71.0065\\nL 24.9623 66.7585\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 28.5863 68.8705\\nQ 28.5863 67.8505, 29.0903 67.2805\\nQ 29.5943 66.7105, 30.5363 66.7105\\nQ 31.4783 66.7105, 31.9823 67.2805\\nQ 32.4863 67.8505, 32.4863 68.8705\\nQ 32.4863 69.9025, 31.9763 70.4905\\nQ 31.4663 71.0725, 30.5363 71.0725\\nQ 29.6003 71.0725, 29.0903 70.4905\\nQ 28.5863 69.9085, 28.5863 68.8705\\nM 30.5363 70.5925\\nQ 31.1843 70.5925, 31.5323 70.1605\\nQ 31.8863 69.7225, 31.8863 68.8705\\nQ 31.8863 68.0365, 31.5323 67.6165\\nQ 31.1843 67.1905, 30.5363 67.1905\\nQ 29.8883 67.1905, 29.5343 67.6105\\nQ 29.1863 68.0305, 29.1863 68.8705\\nQ 29.1863 69.7285, 29.5343 70.1605\\nQ 29.8883 70.5925, 30.5363 70.5925\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 24.9199 47.395\\nL 25.4959 47.395\\nL 25.4959 49.201\\nL 27.6679 49.201\\nL 27.6679 47.395\\nL 28.2439 47.395\\nL 28.2439 51.643\\nL 27.6679 51.643\\nL 27.6679 49.681\\nL 25.4959 49.681\\nL 25.4959 51.643\\nL 24.9199 51.643\\nL 24.9199 47.395\\n' fill='#FF0000'/>\\n<path class='atom-22' d='M 28.5439 49.507\\nQ 28.5439 48.487, 29.0479 47.917\\nQ 29.5519 47.347, 30.4939 47.347\\nQ 31.4359 47.347, 31.9399 47.917\\nQ 32.4439 48.487, 32.4439 49.507\\nQ 32.4439 50.539, 31.9339 51.127\\nQ 31.4239 51.709, 30.4939 51.709\\nQ 29.5579 51.709, 29.0479 51.127\\nQ 28.5439 50.545, 28.5439 49.507\\nM 30.4939 51.229\\nQ 31.1419 51.229, 31.4899 50.797\\nQ 31.8439 50.359, 31.8439 49.507\\nQ 31.8439 48.673, 31.4899 48.253\\nQ 31.1419 47.827, 30.4939 47.827\\nQ 29.8459 47.827, 29.4919 48.247\\nQ 29.1439 48.667, 29.1439 49.507\\nQ 29.1439 50.365, 29.4919 50.797\\nQ 29.8459 51.229, 30.4939 51.229\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 45.2926 39.7875\\nQ 45.2926 38.7675, 45.7966 38.1975\\nQ 46.3006 37.6275, 47.2426 37.6275\\nQ 48.1846 37.6275, 48.6886 38.1975\\nQ 49.1926 38.7675, 49.1926 39.7875\\nQ 49.1926 40.8195, 48.6826 41.4075\\nQ 48.1726 41.9895, 47.2426 41.9895\\nQ 46.3066 41.9895, 45.7966 41.4075\\nQ 45.2926 40.8255, 45.2926 39.7875\\nM 47.2426 41.5095\\nQ 47.8906 41.5095, 48.2386 41.0775\\nQ 48.5926 40.6395, 48.5926 39.7875\\nQ 48.5926 38.9535, 48.2386 38.5335\\nQ 47.8906 38.1075, 47.2426 38.1075\\nQ 46.5946 38.1075, 46.2406 38.5275\\nQ 45.8926 38.9475, 45.8926 39.7875\\nQ 45.8926 40.6455, 46.2406 41.0775\\nQ 46.5946 41.5095, 47.2426 41.5095\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 49.7026 37.6755\\nL 50.2786 37.6755\\nL 50.2786 39.4815\\nL 52.4506 39.4815\\nL 52.4506 37.6755\\nL 53.0266 37.6755\\nL 53.0266 41.9235\\nL 52.4506 41.9235\\nL 52.4506 39.9615\\nL 50.2786 39.9615\\nL 50.2786 41.9235\\nL 49.7026 41.9235\\nL 49.7026 37.6755\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 82.5639 39.7316\\nQ 82.5639 38.7116, 83.0679 38.1416\\nQ 83.5719 37.5716, 84.5139 37.5716\\nQ 85.4559 37.5716, 85.9599 38.1416\\nQ 86.4639 38.7116, 86.4639 39.7316\\nQ 86.4639 40.7636, 85.9539 41.3516\\nQ 85.4439 41.9336, 84.5139 41.9336\\nQ 83.5779 41.9336, 83.0679 41.3516\\nQ 82.5639 40.7696, 82.5639 39.7316\\nM 84.5139 41.4536\\nQ 85.1619 41.4536, 85.5099 41.0216\\nQ 85.8639 40.5836, 85.8639 39.7316\\nQ 85.8639 38.8976, 85.5099 38.4776\\nQ 85.1619 38.0516, 84.5139 38.0516\\nQ 83.8659 38.0516, 83.5119 38.4716\\nQ 83.1639 38.8916, 83.1639 39.7316\\nQ 83.1639 40.5896, 83.5119 41.0216\\nQ 83.8659 41.4536, 84.5139 41.4536\\n' fill='#FF0000'/>\\n<path class='atom-26' d='M 86.9739 37.6196\\nL 87.5499 37.6196\\nL 87.5499 39.4256\\nL 89.7219 39.4256\\nL 89.7219 37.6196\\nL 90.2979 37.6196\\nL 90.2979 41.8676\\nL 89.7219 41.8676\\nL 89.7219 39.9056\\nL 87.5499 39.9056\\nL 87.5499 41.8676\\nL 86.9739 41.8676\\nL 86.9739 37.6196\\n' fill='#FF0000'/>\\n<path class='atom-28' d='M 101.238 48.3006\\nQ 101.238 47.2806, 101.742 46.7106\\nQ 102.246 46.1406, 103.188 46.1406\\nQ 104.13 46.1406, 104.634 46.7106\\nQ 105.138 47.2806, 105.138 48.3006\\nQ 105.138 49.3326, 104.628 49.9206\\nQ 104.118 50.5026, 103.188 50.5026\\nQ 102.252 50.5026, 101.742 49.9206\\nQ 101.238 49.3386, 101.238 48.3006\\nM 103.188 50.0226\\nQ 103.836 50.0226, 104.184 49.5906\\nQ 104.538 49.1526, 104.538 48.3006\\nQ 104.538 47.4666, 104.184 47.0466\\nQ 103.836 46.6206, 103.188 46.6206\\nQ 102.54 46.6206, 102.186 47.0406\\nQ 101.838 47.4606, 101.838 48.3006\\nQ 101.838 49.1586, 102.186 49.5906\\nQ 102.54 50.0226, 103.188 50.0226\\n' fill='#FF0000'/>\\n<path class='atom-30' d='M 110.563 32.1745\\nQ 110.563 31.1545, 111.067 30.5845\\nQ 111.571 30.0145, 112.513 30.0145\\nQ 113.455 30.0145, 113.959 30.5845\\nQ 114.463 31.1545, 114.463 32.1745\\nQ 114.463 33.2065, 113.953 33.7945\\nQ 113.443 34.3765, 112.513 34.3765\\nQ 111.577 34.3765, 111.067 33.7945\\nQ 110.563 33.2125, 110.563 32.1745\\nM 112.513 33.8965\\nQ 113.161 33.8965, 113.509 33.4645\\nQ 113.863 33.0265, 113.863 32.1745\\nQ 113.863 31.3405, 113.509 30.9205\\nQ 113.161 30.4945, 112.513 30.4945\\nQ 111.865 30.4945, 111.511 30.9145\\nQ 111.163 31.3345, 111.163 32.1745\\nQ 111.163 33.0325, 111.511 33.4645\\nQ 111.865 33.8965, 112.513 33.8965\\n' fill='#FF0000'/>\\n<path class='atom-33' d='M 127.366 20.3996\\nQ 127.366 19.3796, 127.87 18.8096\\nQ 128.374 18.2396, 129.316 18.2396\\nQ 130.258 18.2396, 130.762 18.8096\\nQ 131.266 19.3796, 131.266 20.3996\\nQ 131.266 21.4316, 130.756 22.0196\\nQ 130.246 22.6016, 129.316 22.6016\\nQ 128.38 22.6016, 127.87 22.0196\\nQ 127.366 21.4376, 127.366 20.3996\\nM 129.316 22.1216\\nQ 129.964 22.1216, 130.312 21.6896\\nQ 130.666 21.2516, 130.666 20.3996\\nQ 130.666 19.5656, 130.312 19.1456\\nQ 129.964 18.7196, 129.316 18.7196\\nQ 128.668 18.7196, 128.314 19.1396\\nQ 127.966 19.5596, 127.966 20.3996\\nQ 127.966 21.2576, 128.314 21.6896\\nQ 128.668 22.1216, 129.316 22.1216\\n' fill='#FF0000'/>\\n<path class='atom-33' d='M 131.776 18.2876\\nL 132.352 18.2876\\nL 132.352 20.0936\\nL 134.524 20.0936\\nL 134.524 18.2876\\nL 135.1 18.2876\\nL 135.1 22.5356\\nL 134.524 22.5356\\nL 134.524 20.5736\\nL 132.352 20.5736\\nL 132.352 22.5356\\nL 131.776 22.5356\\nL 131.776 18.2876\\n' fill='#FF0000'/>\\n<path class='atom-35' d='M 101.293 7.41402\\nQ 101.293 6.39402, 101.797 5.82402\\nQ 102.301 5.25402, 103.243 5.25402\\nQ 104.185 5.25402, 104.689 5.82402\\nQ 105.193 6.39402, 105.193 7.41402\\nQ 105.193 8.44602, 104.683 9.03402\\nQ 104.173 9.61602, 103.243 9.61602\\nQ 102.307 9.61602, 101.797 9.03402\\nQ 101.293 8.45202, 101.293 7.41402\\nM 103.243 9.13602\\nQ 103.891 9.13602, 104.239 8.70402\\nQ 104.593 8.26602, 104.593 7.41402\\nQ 104.593 6.58002, 104.239 6.16002\\nQ 103.891 5.73402, 103.243 5.73402\\nQ 102.595 5.73402, 102.241 6.15402\\nQ 101.893 6.57402, 101.893 7.41402\\nQ 101.893 8.27202, 102.241 8.70402\\nQ 102.595 9.13602, 103.243 9.13602\\n' fill='#FF0000'/>\\n<path class='atom-35' d='M 105.703 5.30202\\nL 106.279 5.30202\\nL 106.279 7.10802\\nL 108.451 7.10802\\nL 108.451 5.30202\\nL 109.027 5.30202\\nL 109.027 9.55002\\nL 108.451 9.55002\\nL 108.451 7.58802\\nL 106.279 7.58802\\nL 106.279 9.55002\\nL 105.703 9.55002\\nL 105.703 5.30202\\n' fill='#FF0000'/>\\n<path class='atom-37' d='M 78.9347 14.9286\\nL 79.5107 14.9286\\nL 79.5107 16.7346\\nL 81.6827 16.7346\\nL 81.6827 14.9286\\nL 82.2587 14.9286\\nL 82.2587 19.1766\\nL 81.6827 19.1766\\nL 81.6827 17.2146\\nL 79.5107 17.2146\\nL 79.5107 19.1766\\nL 78.9347 19.1766\\nL 78.9347 14.9286\\n' fill='#0000FF'/>\\n<path class='atom-37' d='M 82.4646 19.0276\\nQ 82.5676 18.7622, 82.8131 18.6157\\nQ 83.0586 18.4652, 83.3992 18.4652\\nQ 83.8229 18.4652, 84.0605 18.6949\\nQ 84.2981 18.9246, 84.2981 19.3325\\nQ 84.2981 19.7483, 83.9892 20.1364\\nQ 83.6843 20.5244, 83.0507 20.9838\\nL 84.3456 20.9838\\nL 84.3456 21.3006\\nL 82.4567 21.3006\\nL 82.4567 21.0353\\nQ 82.9794 20.663, 83.2883 20.3858\\nQ 83.6011 20.1086, 83.7516 19.8592\\nQ 83.9021 19.6097, 83.9021 19.3523\\nQ 83.9021 19.083, 83.7674 18.9325\\nQ 83.6328 18.782, 83.3992 18.782\\nQ 83.1734 18.782, 83.023 18.8731\\nQ 82.8725 18.9642, 82.7656 19.1662\\nL 82.4646 19.0276\\n' fill='#0000FF'/>\\n<path class='atom-37' d='M 85.5156 14.9286\\nL 86.9076 17.1786\\nQ 87.0456 17.4006, 87.2676 17.8026\\nQ 87.4896 18.2046, 87.5016 18.2286\\nL 87.5016 14.9286\\nL 88.0656 14.9286\\nL 88.0656 19.1766\\nL 87.4836 19.1766\\nL 85.9896 16.7166\\nQ 85.8156 16.4286, 85.6296 16.0986\\nQ 85.4496 15.7686, 85.3956 15.6666\\nL 85.3956 19.1766\\nL 84.8436 19.1766\\nL 84.8436 14.9286\\nL 85.5156 14.9286\\n' fill='#0000FF'/>\\n<path class='atom-39' d='M 80.8447 34.3169\\nL 81.4207 34.3169\\nL 81.4207 36.1229\\nL 83.5927 36.1229\\nL 83.5927 34.3169\\nL 84.1687 34.3169\\nL 84.1687 38.5649\\nL 83.5927 38.5649\\nL 83.5927 36.6029\\nL 81.4207 36.6029\\nL 81.4207 38.5649\\nL 80.8447 38.5649\\nL 80.8447 34.3169\\n' fill='#FF0000'/>\\n<path class='atom-39' d='M 84.4687 36.4289\\nQ 84.4687 35.4089, 84.9727 34.8389\\nQ 85.4767 34.2689, 86.4187 34.2689\\nQ 87.3607 34.2689, 87.8647 34.8389\\nQ 88.3687 35.4089, 88.3687 36.4289\\nQ 88.3687 37.4609, 87.8587 38.0489\\nQ 87.3487 38.6309, 86.4187 38.6309\\nQ 85.4827 38.6309, 84.9727 38.0489\\nQ 84.4687 37.4669, 84.4687 36.4289\\nM 86.4187 38.1509\\nQ 87.0667 38.1509, 87.4147 37.7189\\nQ 87.7687 37.2809, 87.7687 36.4289\\nQ 87.7687 35.5949, 87.4147 35.1749\\nQ 87.0667 34.7489, 86.4187 34.7489\\nQ 85.7707 34.7489, 85.4167 35.1689\\nQ 85.0687 35.5889, 85.0687 36.4289\\nQ 85.0687 37.2869, 85.4167 37.7189\\nQ 85.7707 38.1509, 86.4187 38.1509\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -0.5, "data-ID": 1285, "mols2grid-id": 254, "mols2grid-tooltip": "<strong>Name</strong>: Amikacin<br><strong>SMILES</strong>: NCCC(O)C(=O)NC2CC(N)C(OC1OC(CN)C(O)C(O)C1O)C(O)C2OC3OC(CO)C(O)C(N)C3O<br><strong>Class</strong>: (C) high<br><strong>Solubility</strong>: <span style=\\"color: black\\">-0.5</span>", "style-Solubility": "color: black"}, {"data-SMILES": "c1c(Cl)ccc(OC)c1C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 79.3058,18.2794 L 79.3058,10.5801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 77.7659,17.1245 L 77.7659,11.735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-0' d='M 72.6381,22.1291 L 79.3058,18.2794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 79.3058,10.5801 L 81.0771,9.55748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 81.0771,9.55748 L 82.8484,8.53488' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 79.3058,10.5801 L 72.6381,6.7304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.6381,6.7304 L 65.9705,10.5801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 72.4079,8.64141 L 67.7406,11.3362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 65.9705,10.5801 L 65.9705,18.2794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 65.9705,18.2794 L 63.7021,19.583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 63.7021,19.583 L 61.4336,20.8866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 65.9705,18.2794 L 72.6381,22.1291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-5 atom-8' d='M 67.7406,17.5233 L 72.4079,20.2181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 57.1871,20.8991 L 55.5741,19.9647' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 55.5741,19.9647 L 53.961,19.0304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-8 atom-9' d='M 72.6381,22.1291 L 72.654,29.8326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 72.2679,29.1664 L 70.6554,30.1011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 70.6554,30.1011 L 69.0429,31.0358' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 73.0402,30.4987 L 71.4277,31.4334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-9 atom-10' d='M 71.4277,31.4334 L 69.8152,32.3681' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 72.654,29.8326 L 75.0907,31.2348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-9 atom-11' d='M 75.0907,31.2348 L 77.5273,32.6371' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 79.3357,35.9916 L 79.3413,38.6851' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-11 atom-12' d='M 79.3413,38.6851 L 79.3468,41.3785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-12 atom-13' d='M 79.3468,41.3785 L 86.0237,45.221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-13 atom-14' d='M 86.0237,45.221 L 86.0396,52.9245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 86.0396,52.9245 L 92.7078,56.7746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-14 atom-15' d='M 86.2699,54.8355 L 90.9376,57.5307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-32 atom-14' d='M 79.372,56.7746 L 86.0396,52.9245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-16' d='M 92.7078,56.7746 L 92.7078,64.474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 92.7078,64.474 L 86.0401,68.3237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-16 atom-17' d='M 90.9377,63.7179 L 86.2703,66.4127' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 86.0401,68.3237 L 86.0401,71.0201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-17 atom-18' d='M 86.0401,71.0201 L 86.0401,73.7165' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-17 atom-31' d='M 86.0401,68.3237 L 79.372,64.474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.1394,76.2349 L 83.2599,76.7423' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 83.2599,76.7423 L 82.3805,77.2498' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.9089,77.5687 L 84.0295,78.0761' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-18 atom-19' d='M 84.0295,78.0761 L 83.15,78.5835' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 85.2692,78.4128 L 85.2689,79.1784' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 85.2689,79.1784 L 85.2686,79.944' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 86.8091,78.4134 L 86.8088,79.179' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-18 atom-20' d='M 86.8088,79.179 L 86.8084,79.9446' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 87.5947,76.9259 L 89.2727,77.8961' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-18 atom-21' d='M 89.2727,77.8961 L 90.9506,78.8662' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.7095,82.1996 L 92.7097,84.893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-22' d='M 92.7097,84.893 L 92.7098,87.5864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 92.3251,86.9195 L 90.7093,87.8517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 90.7093,87.8517 L 89.0934,88.7839' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 93.0946,88.2533 L 91.4788,89.1855' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-22 atom-23' d='M 91.4788,89.1855 L 89.8629,90.1177' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 92.7098,87.5864 L 95.1424,88.9929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-24' d='M 95.1424,88.9929 L 97.5749,90.3994' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 99.3787,93.7589 L 99.3788,96.4526' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-24 atom-25' d='M 99.3788,96.4526 L 99.379,99.1462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-25 atom-26' d='M 99.379,99.1462 L 106.039,103.01' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-30 atom-25' d='M 92.7032,102.983 L 99.379,99.1462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-26 atom-27' d='M 106.039,103.01 L 106.024,110.709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-27 atom-28' d='M 106.024,110.709 L 99.3477,114.545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-28 atom-29' d='M 99.3477,114.545 L 92.6878,110.682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-29 atom-30' d='M 92.6878,110.682 L 92.7032,102.983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 79.372,64.474 L 79.372,56.7746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-31 atom-32' d='M 80.9119,63.3191 L 80.9119,57.9296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 83.0024 7.64734\\nQ 83.0024 6.59134, 83.4944 6.03934\\nQ 83.9924 5.48134, 84.9344 5.48134\\nQ 85.8104 5.48134, 86.2784 6.09934\\nL 85.8824 6.42334\\nQ 85.5404 5.97334, 84.9344 5.97334\\nQ 84.2924 5.97334, 83.9504 6.40534\\nQ 83.6144 6.83134, 83.6144 7.64734\\nQ 83.6144 8.48734, 83.9624 8.91934\\nQ 84.3164 9.35134, 85.0004 9.35134\\nQ 85.4684 9.35134, 86.0144 9.06934\\nL 86.1824 9.51934\\nQ 85.9604 9.66334, 85.6244 9.74734\\nQ 85.2884 9.83134, 84.9164 9.83134\\nQ 83.9924 9.83134, 83.4944 9.26734\\nQ 83.0024 8.70334, 83.0024 7.64734\\n' fill='#00CC00'/>\\n<path class='atom-2' d='M 86.7944 5.22334\\nL 87.3464 5.22334\\nL 87.3464 9.77734\\nL 86.7944 9.77734\\nL 86.7944 5.22334\\n' fill='#00CC00'/>\\n<path class='atom-6' d='M 57.3411 22.1298\\nQ 57.3411 21.1098, 57.8451 20.5398\\nQ 58.3491 19.9698, 59.2911 19.9698\\nQ 60.2331 19.9698, 60.7371 20.5398\\nQ 61.2411 21.1098, 61.2411 22.1298\\nQ 61.2411 23.1618, 60.7311 23.7498\\nQ 60.2211 24.3318, 59.2911 24.3318\\nQ 58.3551 24.3318, 57.8451 23.7498\\nQ 57.3411 23.1678, 57.3411 22.1298\\nM 59.2911 23.8518\\nQ 59.9391 23.8518, 60.2871 23.4198\\nQ 60.6411 22.9818, 60.6411 22.1298\\nQ 60.6411 21.2958, 60.2871 20.8758\\nQ 59.9391 20.4498, 59.2911 20.4498\\nQ 58.6431 20.4498, 58.2891 20.8698\\nQ 57.9411 21.2898, 57.9411 22.1298\\nQ 57.9411 22.9878, 58.2891 23.4198\\nQ 58.6431 23.8518, 59.2911 23.8518\\n' fill='#FF0000'/>\\n<path class='atom-10' d='M 65.3751 32.9335\\nQ 65.3751 31.9135, 65.8791 31.3435\\nQ 66.3831 30.7735, 67.3251 30.7735\\nQ 68.2671 30.7735, 68.7711 31.3435\\nQ 69.2751 31.9135, 69.2751 32.9335\\nQ 69.2751 33.9655, 68.7651 34.5535\\nQ 68.2551 35.1355, 67.3251 35.1355\\nQ 66.3891 35.1355, 65.8791 34.5535\\nQ 65.3751 33.9715, 65.3751 32.9335\\nM 67.3251 34.6555\\nQ 67.9731 34.6555, 68.3211 34.2235\\nQ 68.6751 33.7855, 68.6751 32.9335\\nQ 68.6751 32.0995, 68.3211 31.6795\\nQ 67.9731 31.2535, 67.3251 31.2535\\nQ 66.6771 31.2535, 66.3231 31.6735\\nQ 65.9751 32.0935, 65.9751 32.9335\\nQ 65.9751 33.7915, 66.3231 34.2235\\nQ 66.6771 34.6555, 67.3251 34.6555\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 78.3919 31.5511\\nL 79.7839 33.8011\\nQ 79.9219 34.0231, 80.1439 34.4251\\nQ 80.3659 34.8271, 80.3779 34.8511\\nL 80.3779 31.5511\\nL 80.9419 31.5511\\nL 80.9419 35.7991\\nL 80.3599 35.7991\\nL 78.8659 33.3391\\nQ 78.6919 33.0511, 78.5059 32.7211\\nQ 78.3259 32.3911, 78.2719 32.2891\\nL 78.2719 35.7991\\nL 77.7199 35.7991\\nL 77.7199 31.5511\\nL 78.3919 31.5511\\n' fill='#0000FF'/>\\n<path class='atom-11' d='M 81.4519 31.5511\\nL 82.0279 31.5511\\nL 82.0279 33.3571\\nL 84.1999 33.3571\\nL 84.1999 31.5511\\nL 84.7759 31.5511\\nL 84.7759 35.7991\\nL 84.1999 35.7991\\nL 84.1999 33.8371\\nL 82.0279 33.8371\\nL 82.0279 35.7991\\nL 81.4519 35.7991\\nL 81.4519 31.5511\\n' fill='#0000FF'/>\\n<path class='atom-18' d='M 84.8401 77.4851\\nQ 84.8881 77.5031, 85.0861 77.5871\\nQ 85.2841 77.6711, 85.5001 77.7251\\nQ 85.7221 77.7731, 85.9381 77.7731\\nQ 86.3401 77.7731, 86.5741 77.5811\\nQ 86.8081 77.3831, 86.8081 77.0411\\nQ 86.8081 76.8071, 86.6881 76.6631\\nQ 86.5741 76.5191, 86.3941 76.4411\\nQ 86.2141 76.3631, 85.9141 76.2731\\nQ 85.5361 76.1591, 85.3081 76.0511\\nQ 85.0861 75.9431, 84.9241 75.7151\\nQ 84.7681 75.4871, 84.7681 75.1031\\nQ 84.7681 74.5691, 85.1281 74.2391\\nQ 85.4941 73.9091, 86.2141 73.9091\\nQ 86.7061 73.9091, 87.2641 74.1431\\nL 87.1261 74.6051\\nQ 86.6161 74.3951, 86.2321 74.3951\\nQ 85.8181 74.3951, 85.5901 74.5691\\nQ 85.3621 74.7371, 85.3681 75.0311\\nQ 85.3681 75.2591, 85.4821 75.3971\\nQ 85.6021 75.5351, 85.7701 75.6131\\nQ 85.9441 75.6911, 86.2321 75.7811\\nQ 86.6161 75.9011, 86.8441 76.0211\\nQ 87.0721 76.1411, 87.2341 76.3871\\nQ 87.4021 76.6271, 87.4021 77.0411\\nQ 87.4021 77.6291, 87.0061 77.9471\\nQ 86.6161 78.2591, 85.9621 78.2591\\nQ 85.5841 78.2591, 85.2961 78.1751\\nQ 85.0141 78.0971, 84.6781 77.9591\\nL 84.8401 77.4851\\n' fill='#CCCC00'/>\\n<path class='atom-19' d='M 78.755 79.1173\\nQ 78.755 78.0973, 79.259 77.5273\\nQ 79.763 76.9573, 80.705 76.9573\\nQ 81.647 76.9573, 82.151 77.5273\\nQ 82.655 78.0973, 82.655 79.1173\\nQ 82.655 80.1493, 82.145 80.7373\\nQ 81.635 81.3193, 80.705 81.3193\\nQ 79.769 81.3193, 79.259 80.7373\\nQ 78.755 80.1553, 78.755 79.1173\\nM 80.705 80.8393\\nQ 81.353 80.8393, 81.701 80.4073\\nQ 82.055 79.9693, 82.055 79.1173\\nQ 82.055 78.2833, 81.701 77.8633\\nQ 81.353 77.4373, 80.705 77.4373\\nQ 80.057 77.4373, 79.703 77.8573\\nQ 79.355 78.2773, 79.355 79.1173\\nQ 79.355 79.9753, 79.703 80.4073\\nQ 80.057 80.8393, 80.705 80.8393\\n' fill='#FF0000'/>\\n<path class='atom-20' d='M 84.0876 82.1986\\nQ 84.0876 81.1786, 84.5916 80.6086\\nQ 85.0956 80.0386, 86.0376 80.0386\\nQ 86.9796 80.0386, 87.4836 80.6086\\nQ 87.9876 81.1786, 87.9876 82.1986\\nQ 87.9876 83.2306, 87.4776 83.8186\\nQ 86.9676 84.4006, 86.0376 84.4006\\nQ 85.1016 84.4006, 84.5916 83.8186\\nQ 84.0876 83.2366, 84.0876 82.1986\\nM 86.0376 83.9206\\nQ 86.6856 83.9206, 87.0336 83.4886\\nQ 87.3876 83.0506, 87.3876 82.1986\\nQ 87.3876 81.3646, 87.0336 80.9446\\nQ 86.6856 80.5186, 86.0376 80.5186\\nQ 85.3896 80.5186, 85.0356 80.9386\\nQ 84.6876 81.3586, 84.6876 82.1986\\nQ 84.6876 83.0566, 85.0356 83.4886\\nQ 85.3896 83.9206, 86.0376 83.9206\\n' fill='#FF0000'/>\\n<path class='atom-21' d='M 91.7703 77.759\\nL 93.1623 80.009\\nQ 93.3003 80.231, 93.5223 80.633\\nQ 93.7443 81.035, 93.7563 81.059\\nL 93.7563 77.759\\nL 94.3203 77.759\\nL 94.3203 82.007\\nL 93.7383 82.007\\nL 92.2443 79.547\\nQ 92.0703 79.259, 91.8843 78.929\\nQ 91.7043 78.599, 91.6503 78.497\\nL 91.6503 82.007\\nL 91.0983 82.007\\nL 91.0983 77.759\\nL 91.7703 77.759\\n' fill='#0000FF'/>\\n<path class='atom-21' d='M 94.8303 77.759\\nL 95.4063 77.759\\nL 95.4063 79.565\\nL 97.5783 79.565\\nL 97.5783 77.759\\nL 98.1543 77.759\\nL 98.1543 82.007\\nL 97.5783 82.007\\nL 97.5783 80.045\\nL 95.4063 80.045\\nL 95.4063 82.007\\nL 94.8303 82.007\\nL 94.8303 77.759\\n' fill='#0000FF'/>\\n<path class='atom-23' d='M 85.4242 90.6766\\nQ 85.4242 89.6566, 85.9282 89.0866\\nQ 86.4322 88.5166, 87.3742 88.5166\\nQ 88.3162 88.5166, 88.8202 89.0866\\nQ 89.3242 89.6566, 89.3242 90.6766\\nQ 89.3242 91.7086, 88.8142 92.2966\\nQ 88.3042 92.8786, 87.3742 92.8786\\nQ 86.4382 92.8786, 85.9282 92.2966\\nQ 85.4242 91.7146, 85.4242 90.6766\\nM 87.3742 92.3986\\nQ 88.0222 92.3986, 88.3702 91.9666\\nQ 88.7242 91.5286, 88.7242 90.6766\\nQ 88.7242 89.8426, 88.3702 89.4226\\nQ 88.0222 88.9966, 87.3742 88.9966\\nQ 86.7262 88.9966, 86.3722 89.4166\\nQ 86.0242 89.8366, 86.0242 90.6766\\nQ 86.0242 91.5346, 86.3722 91.9666\\nQ 86.7262 92.3986, 87.3742 92.3986\\n' fill='#FF0000'/>\\n<path class='atom-24' d='M 98.4395 89.3183\\nL 99.8315 91.5683\\nQ 99.9695 91.7903, 100.191 92.1923\\nQ 100.413 92.5943, 100.425 92.6183\\nL 100.425 89.3183\\nL 100.989 89.3183\\nL 100.989 93.5663\\nL 100.407 93.5663\\nL 98.9135 91.1063\\nQ 98.7395 90.8183, 98.5535 90.4883\\nQ 98.3735 90.1583, 98.3195 90.0563\\nL 98.3195 93.5663\\nL 97.7675 93.5663\\nL 97.7675 89.3183\\nL 98.4395 89.3183\\n' fill='#0000FF'/>\\n<path class='atom-24' d='M 101.499 89.3183\\nL 102.075 89.3183\\nL 102.075 91.1243\\nL 104.247 91.1243\\nL 104.247 89.3183\\nL 104.823 89.3183\\nL 104.823 93.5663\\nL 104.247 93.5663\\nL 104.247 91.6043\\nL 102.075 91.6043\\nL 102.075 93.5663\\nL 101.499 93.5663\\nL 101.499 89.3183\\n' fill='#0000FF'/>\\n</svg>\\n", "data-Solubility": -5.09, "data-ID": 1290, "mols2grid-id": 255, "mols2grid-tooltip": "<strong>Name</strong>: Glyburide<br><strong>SMILES</strong>: c1c(Cl)ccc(OC)c1C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-5.09</span>", "style-Solubility": "color: red"}, {"data-SMILES": "C1C(O)CC2=CCC3C4CC5OC6(OCC(C)CC6)C(C)C5C4(C)CCC3C2(C)C1", "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='160px' height='120px' viewBox='0 0 160 120'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='160' height='120' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 21.5367,73.6648 L 21.5367,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-34 atom-29 atom-0' d='M 33.2521,66.9203 L 21.5367,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 21.5367,87.1546 L 18.0447,89.2005' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 18.0447,89.2005 L 14.5527,91.2463' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 21.5367,87.1546 L 33.2521,93.7223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 33.2521,93.7223 L 44.6111,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 43.9517,88.313 L 56.8081,92.5639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 45.2705,85.9963 L 55.4893,94.8807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-31 atom-27 atom-4' d='M 44.6111,73.6648 L 44.6111,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-6' d='M 56.1487,93.7223 L 67.864,87.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6 atom-6 atom-7' d='M 67.864,87.1546 L 67.864,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7 atom-7 atom-8' d='M 67.864,73.6648 L 79.4007,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29 atom-26 atom-7' d='M 56.1487,66.9203 L 67.864,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8 atom-8 atom-9' d='M 79.4007,66.9203 L 92.0029,71.1802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24 atom-22 atom-8' d='M 79.4007,53.9627 L 79.4007,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9 atom-9 atom-10' d='M 92.0029,71.1802 L 99.9905,60.3526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 99.9905,60.3526 L 105.151,58.681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10 atom-10 atom-11' d='M 105.151,58.681 L 110.312,57.0093' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22 atom-21 atom-10' d='M 92.0029,49.7027 L 99.9905,60.3526' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.699,53.8159 L 112.912,48.9194' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11 atom-11 atom-12' d='M 112.912,48.9194 L 113.125,44.0228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 113.125,44.0228 L 117.072,42.4301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12 atom-12 atom-13' d='M 117.072,42.4301 L 121.02,40.8374' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18 atom-18 atom-12' d='M 120.935,32.4861 L 113.125,44.0228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19 atom-12 atom-19' d='M 113.125,44.0228 L 99.9905,38.6983' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 125.587,40.6576 L 131.959,42.6063' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13 atom-13 atom-14' d='M 131.959,42.6063 L 138.33,44.5551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14 atom-14 atom-15' d='M 138.33,44.5551 L 144.72,32.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15 atom-15 atom-16' d='M 144.72,32.4861 L 152.727,25.4439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16 atom-15 atom-17' d='M 144.72,32.4861 L 133.36,36.7451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17 atom-17 atom-18' d='M 133.36,36.7451 L 120.935,32.4861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20 atom-19 atom-20' d='M 99.9905,38.6983 L 97.0546,28.4465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21 atom-19 atom-21' d='M 99.9905,38.6983 L 92.0029,49.7027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23 atom-21 atom-22' d='M 92.0029,49.7027 L 79.4007,53.9627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25 atom-22 atom-23' d='M 79.4007,53.9627 L 80.5417,43.3608' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26 atom-22 atom-24' d='M 79.4007,53.9627 L 67.864,47.0405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27 atom-24 atom-25' d='M 67.864,47.0405 L 56.1487,53.9627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28 atom-25 atom-26' d='M 56.1487,53.9627 L 56.1487,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-30 atom-26 atom-27' d='M 56.1487,66.9203 L 44.6111,73.6648' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-32 atom-27 atom-28' d='M 44.6111,73.6648 L 44.6475,63.0016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-33 atom-27 atom-29' d='M 44.6111,73.6648 L 33.2521,66.9203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 6.76216 90.4449\\nL 7.33816 90.4449\\nL 7.33816 92.2509\\nL 9.51016 92.2509\\nL 9.51016 90.4449\\nL 10.0862 90.4449\\nL 10.0862 94.6929\\nL 9.51016 94.6929\\nL 9.51016 92.7309\\nL 7.33816 92.7309\\nL 7.33816 94.6929\\nL 6.76216 94.6929\\nL 6.76216 90.4449\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 10.3862 92.5569\\nQ 10.3862 91.5369, 10.8902 90.9669\\nQ 11.3942 90.3969, 12.3362 90.3969\\nQ 13.2782 90.3969, 13.7822 90.9669\\nQ 14.2862 91.5369, 14.2862 92.5569\\nQ 14.2862 93.5889, 13.7762 94.1769\\nQ 13.2662 94.7589, 12.3362 94.7589\\nQ 11.4002 94.7589, 10.8902 94.1769\\nQ 10.3862 93.5949, 10.3862 92.5569\\nM 12.3362 94.2789\\nQ 12.9842 94.2789, 13.3322 93.8469\\nQ 13.6862 93.4089, 13.6862 92.5569\\nQ 13.6862 91.7229, 13.3322 91.3029\\nQ 12.9842 90.8769, 12.3362 90.8769\\nQ 11.6882 90.8769, 11.3342 91.2969\\nQ 10.9862 91.7169, 10.9862 92.5569\\nQ 10.9862 93.4149, 11.3342 93.8469\\nQ 11.6882 94.2789, 12.3362 94.2789\\n' fill='#FF0000'/>\\n<path class='atom-11' d='M 110.643 56.2824\\nQ 110.643 55.2624, 111.147 54.6924\\nQ 111.651 54.1224, 112.593 54.1224\\nQ 113.535 54.1224, 114.039 54.6924\\nQ 114.543 55.2624, 114.543 56.2824\\nQ 114.543 57.3144, 114.033 57.9024\\nQ 113.523 58.4844, 112.593 58.4844\\nQ 111.657 58.4844, 111.147 57.9024\\nQ 110.643 57.3204, 110.643 56.2824\\nM 112.593 58.0044\\nQ 113.241 58.0044, 113.589 57.5724\\nQ 113.943 57.1344, 113.943 56.2824\\nQ 113.943 55.4484, 113.589 55.0284\\nQ 113.241 54.6024, 112.593 54.6024\\nQ 111.945 54.6024, 111.591 55.0224\\nQ 111.243 55.4424, 111.243 56.2824\\nQ 111.243 57.1404, 111.591 57.5724\\nQ 111.945 58.0044, 112.593 58.0044\\n' fill='#FF0000'/>\\n<path class='atom-13' d='M 121.293 39.9526\\nQ 121.293 38.9326, 121.797 38.3626\\nQ 122.301 37.7926, 123.243 37.7926\\nQ 124.185 37.7926, 124.689 38.3626\\nQ 125.193 38.9326, 125.193 39.9526\\nQ 125.193 40.9846, 124.683 41.5726\\nQ 124.173 42.1546, 123.243 42.1546\\nQ 122.307 42.1546, 121.797 41.5726\\nQ 121.293 40.9906, 121.293 39.9526\\nM 123.243 41.6746\\nQ 123.891 41.6746, 124.239 41.2426\\nQ 124.593 40.8046, 124.593 39.9526\\nQ 124.593 39.1186, 124.239 38.6986\\nQ 123.891 38.2726, 123.243 38.2726\\nQ 122.595 38.2726, 122.241 38.6926\\nQ 121.893 39.1126, 121.893 39.9526\\nQ 121.893 40.8106, 122.241 41.2426\\nQ 122.595 41.6746, 123.243 41.6746\\n' fill='#FF0000'/>\\n</svg>\\n", "data-Solubility": -7.32, "data-ID": 1295, "mols2grid-id": 256, "mols2grid-tooltip": "<strong>Name</strong>: Diosgenin<br><strong>SMILES</strong>: C1C(O)CC2=CCC3C4CC5OC6(OCC(C)CC6)C(C)C5C4(C)CCC3C2(C)C1<br><strong>Class</strong>: (A) low<br><strong>Solubility</strong>: <span style=\\"color: red\\">-7.32</span>", "style-Solubility": "color: red"}])\n", " \n", " // checkbox\n", " if (window.parent.IPython !== undefined) {\n", " // Jupyter notebook\n", " var kernel = window.parent.IPython.notebook.kernel;\n", " kernel.execute('import mols2grid')\n", - " kernel.execute('mols2grid.reset_selection()')\n", + " function update_current_grid(grid_id) {\n", + " kernel.execute("mols2grid._update_current_grid("+grid_id+")");\n", + " }\n", " function set_selection(_id, smiles) {\n", - " kernel.execute("mols2grid.set_selection("+_id+",'"+smiles+"')")\n", + " kernel.execute("mols2grid._set_selection("+_id+",'"+smiles+"')");\n", " }\n", " function del_selection(_id) {\n", - " kernel.execute("mols2grid.del_selection("+_id+")");\n", + " kernel.execute("mols2grid._del_selection("+_id+")");\n", " }\n", " } else if (window.parent.google !== undefined) {\n", " // Google colab\n", " var kernel = window.parent.google.colab.kernel;\n", - " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.reset_selection', [], {});\n", - " })();\n", + " function update_current_grid(grid_id) {\n", + " (async function() {\n", + " const result = await kernel.invokeFunction('m2g._update_current_grid',\n", + " [grid_id], {});\n", + " })();\n", + " }\n", " function set_selection(_id, smiles) {\n", " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.set_selection', [_id, smiles], {});\n", + " const result = await kernel.invokeFunction('m2g._set_selection',\n", + " [_id, smiles], {});\n", " })();\n", " }\n", " function del_selection(_id) {\n", " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.del_selection', [_id], {});\n", + " const result = await kernel.invokeFunction('m2g._del_selection',\n", + " [_id], {});\n", " })();\n", " }\n", " }\n", @@ -245,7 +252,7 @@ " if (search_type === "Text") {\n", " listObj.search(query, ['data-ID', 'data-Solubility', 'mols2grid-tooltip']);\n", " } else {\n", - " listObj.search(query, ["data-"+"SMILES"], SmartsSearch);\n", + " listObj.search(query, ["data-SMILES"], SmartsSearch);\n", " }\n", " });\n", " \n", @@ -271,12 +278,13 @@ " if (kernel !== undefined) {\n", " listObj.on("updated", function (list) {\n", " $("input:checkbox").change(function() {\n", + " update_current_grid(0);\n", " var _id = parseInt($(this).closest(".cell").attr("data-mols2grid-id"));\n", " var _smiles = $($(this).siblings(".data-SMILES")[0]).text();\n", " if (this.checked) {\n", - " set_selection(_id, _smiles)\n", + " set_selection(_id, _smiles);\n", " } else {\n", - " del_selection(_id)\n", + " del_selection(_id);\n", " }\n", " }); \n", " });\n", @@ -341,7 +349,7 @@ ], "source": [ "# retrieve the index and SMILES of your selection\n", - "mols2grid.selection" + "mols2grid.get_selection()" ] }, { @@ -353,7 +361,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -456,7 +464,7 @@ " // pages\n", " var listObj = new List('mols2grid',\n", " {\n", - " valueNames: [{data: ['mols2grid-id']}, 'data-img', 'data-id', 'data-smi'],\n", + " valueNames: [{data: ['mols2grid-id']}, 'data-id', 'data-smi', 'data-img'],\n", " item: '<div class="cell" data-mols2grid-id="0"><input type="checkbox" class="position-relative float-left"><div class="data data-id"></div><div class="data data-img"></div><div class="data data-smi" style="display: none;"></div></div>',\n", " page: 21,\n", " pagination: {\n", @@ -468,34 +476,41 @@ " }\n", " );\n", " listObj.remove("mols2grid-id", "0")\n", - " listObj.add([{"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105,51.1326 L 67.191,29.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 67.191,29.2579 L 53.0737,37.3952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.0737,37.3952 L 38.9565,45.5324' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 5 41.8988\\nL 7.51594 41.8988\\nL 7.51594 49.7873\\nL 17.0031 49.7873\\nL 17.0031 41.8988\\nL 19.5191 41.8988\\nL 19.5191 60.4538\\nL 17.0031 60.4538\\nL 17.0031 51.8839\\nL 7.51594 51.8839\\nL 7.51594 60.4538\\nL 5 60.4538\\nL 5 41.8988\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 20.8295 51.1239\\nQ 20.8295 46.6686, 23.0309 44.1788\\nQ 25.2324 41.6891, 29.347 41.6891\\nQ 33.4616 41.6891, 35.6631 44.1788\\nQ 37.8645 46.6686, 37.8645 51.1239\\nQ 37.8645 55.6316, 35.6368 58.2\\nQ 33.4092 60.7421, 29.347 60.7421\\nQ 25.2586 60.7421, 23.0309 58.2\\nQ 20.8295 55.6578, 20.8295 51.1239\\nM 29.347 58.6455\\nQ 32.1774 58.6455, 33.6975 56.7585\\nQ 35.2437 54.8454, 35.2437 51.1239\\nQ 35.2437 47.481, 33.6975 45.6465\\nQ 32.1774 43.7857, 29.347 43.7857\\nQ 26.5166 43.7857, 24.9703 45.6202\\nQ 23.4502 47.4548, 23.4502 51.1239\\nQ 23.4502 54.8716, 24.9703 56.7585\\nQ 26.5166 58.6455, 29.347 58.6455\\n' fill='#FF0000'/>\\n</svg>\\n", "data-id": 1, "data-smi": "CCO", "mols2grid-id": 0}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 19.5564,65.43 L 19.5891,24.5209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 26.9249,59.2995 L 26.9478,30.6632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 54.9673,85.9091 L 19.5564,65.43' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.5891,24.5209 L 55.0327,4.09091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.0327,4.09091 L 90.4436,24.57' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 56.6579,13.5372 L 81.4455,27.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.4436,24.57 L 90.4109,65.4791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.4109,65.4791 L 54.9673,85.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.4171,62.1639 L 56.6065,76.4649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-id": 2, "data-smi": "c1ccccc1", "mols2grid-id": 1}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='atom-0' d='M 51.1586 36.3109\\nL 56.8532 45.5155\\nQ 57.4177 46.4236, 58.3259 48.0682\\nQ 59.2341 49.7127, 59.2832 49.8109\\nL 59.2832 36.3109\\nL 61.5905 36.3109\\nL 61.5905 53.6891\\nL 59.2095 53.6891\\nL 53.0977 43.6255\\nQ 52.3859 42.4473, 51.625 41.0973\\nQ 50.8886 39.7473, 50.6677 39.33\\nL 50.6677 53.6891\\nL 48.4095 53.6891\\nL 48.4095 36.3109\\nL 51.1586 36.3109\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 63.6768 36.3109\\nL 66.0332 36.3109\\nL 66.0332 43.6991\\nL 74.9186 43.6991\\nL 74.9186 36.3109\\nL 77.275 36.3109\\nL 77.275 53.6891\\nL 74.9186 53.6891\\nL 74.9186 45.6627\\nL 66.0332 45.6627\\nL 66.0332 53.6891\\nL 63.6768 53.6891\\nL 63.6768 36.3109\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 83.4634 56.3356\\nQ 84.5812 56.6596, 85.1158 57.3886\\nQ 85.6666 58.1014, 85.6666 59.2354\\nQ 85.6666 60.2074, 85.1806 60.9688\\nQ 84.6946 61.714, 83.8036 62.1352\\nQ 82.9126 62.5402, 81.7462 62.5402\\nQ 80.515 62.5402, 79.5916 62.119\\nQ 78.6844 61.6816, 77.9554 60.8068\\nL 78.8788 59.8672\\nQ 79.5916 60.6448, 80.191 60.9526\\nQ 80.7904 61.2442, 81.7462 61.2442\\nQ 82.783 61.2442, 83.4148 60.6934\\nQ 84.0466 60.1264, 84.0466 59.2192\\nQ 84.0466 58.0528, 83.3824 57.5344\\nQ 82.7344 56.9998, 81.325 56.9998\\nL 80.4988 56.9998\\nL 80.4988 55.8334\\nL 81.2278 55.8334\\nQ 82.4752 55.8172, 83.1394 55.2826\\nQ 83.8036 54.7318, 83.8036 53.7112\\nQ 83.8036 52.966, 83.2528 52.5286\\nQ 82.702 52.075, 81.7624 52.075\\nQ 80.8066 52.075, 80.2072 52.4152\\nQ 79.624 52.7554, 79.1704 53.614\\nL 78.0526 53.0146\\nQ 78.4576 52.0588, 79.4296 51.427\\nQ 80.4016 50.779, 81.7624 50.779\\nQ 83.4472 50.779, 84.4354 51.5728\\nQ 85.4236 52.3666, 85.4236 53.7112\\nQ 85.4236 54.6346, 84.9214 55.2988\\nQ 84.4192 55.963, 83.4634 56.3356\\n' fill='#0000FF'/>\\n</svg>\\n", "data-id": 3, "data-smi": "N", "mols2grid-id": 2}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 22.7145,45 L 38.6691,45' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 38.6691,45 L 54.6236,45' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 55.6464 45.0491\\nQ 55.6464 40.8764, 57.7082 38.5445\\nQ 59.77 36.2127, 63.6236 36.2127\\nQ 67.4773 36.2127, 69.5391 38.5445\\nQ 71.6009 40.8764, 71.6009 45.0491\\nQ 71.6009 49.2709, 69.5145 51.6764\\nQ 67.4282 54.0573, 63.6236 54.0573\\nQ 59.7945 54.0573, 57.7082 51.6764\\nQ 55.6464 49.2955, 55.6464 45.0491\\nM 63.6236 52.0936\\nQ 66.2745 52.0936, 67.6982 50.3264\\nQ 69.1464 48.5345, 69.1464 45.0491\\nQ 69.1464 41.6373, 67.6982 39.9191\\nQ 66.2745 38.1764, 63.6236 38.1764\\nQ 60.9727 38.1764, 59.5245 39.8945\\nQ 58.1009 41.6127, 58.1009 45.0491\\nQ 58.1009 48.5591, 59.5245 50.3264\\nQ 60.9727 52.0936, 63.6236 52.0936\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 73.6873 36.4091\\nL 76.0436 36.4091\\nL 76.0436 43.7973\\nL 84.9291 43.7973\\nL 84.9291 36.4091\\nL 87.2855 36.4091\\nL 87.2855 53.7873\\nL 84.9291 53.7873\\nL 84.9291 45.7609\\nL 76.0436 45.7609\\nL 76.0436 53.7873\\nL 73.6873 53.7873\\nL 73.6873 36.4091\\n' fill='#FF0000'/>\\n</svg>\\n", "data-id": 4, "data-smi": "CO", "mols2grid-id": 3}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 28.8042,47.9118 L 39.2876,47.9118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 39.2876,47.9118 L 49.7709,47.9118' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 28.8042,41.8666 L 39.2876,41.8666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 39.2876,41.8666 L 49.7709,41.8666' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.4138,47.9118 L 70.8725,47.9118' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.8725,47.9118 L 81.3311,47.9118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.4138,41.8666 L 70.8725,41.8666' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.8725,41.8666 L 81.3311,41.8666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 55,53.2248 L 55,61.9266' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 55,61.9266 L 55,70.6284' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 55,36.9364 L 55,28.1588' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 55,28.1588 L 55,19.3812' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 14.8667 44.9295\\nQ 14.8667 41.5039, 16.5594 39.5896\\nQ 18.252 37.6753, 21.4157 37.6753\\nQ 24.5793 37.6753, 26.272 39.5896\\nQ 27.9646 41.5039, 27.9646 44.9295\\nQ 27.9646 48.3954, 26.2518 50.3701\\nQ 24.539 52.3247, 21.4157 52.3247\\nQ 18.2722 52.3247, 16.5594 50.3701\\nQ 14.8667 48.4155, 14.8667 44.9295\\nM 21.4157 50.7127\\nQ 23.5919 50.7127, 24.7607 49.2619\\nQ 25.9495 47.7909, 25.9495 44.9295\\nQ 25.9495 42.1285, 24.7607 40.718\\nQ 23.5919 39.2873, 21.4157 39.2873\\nQ 19.2394 39.2873, 18.0505 40.6978\\nQ 16.8818 42.1084, 16.8818 44.9295\\nQ 16.8818 47.811, 18.0505 49.2619\\nQ 19.2394 50.7127, 21.4157 50.7127\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 50.9699 49.7858\\nQ 51.1311 49.8462, 51.7961 50.1283\\nQ 52.461 50.4104, 53.1864 50.5918\\nQ 53.932 50.753, 54.6574 50.753\\nQ 56.0075 50.753, 56.7934 50.1082\\nQ 57.5793 49.4432, 57.5793 48.2946\\nQ 57.5793 47.5088, 57.1763 47.0251\\nQ 56.7934 46.5415, 56.1889 46.2796\\nQ 55.5844 46.0176, 54.5768 45.7153\\nQ 53.3073 45.3325, 52.5416 44.9698\\nQ 51.7961 44.6071, 51.252 43.8413\\nQ 50.7281 43.0756, 50.7281 41.786\\nQ 50.7281 39.9926, 51.9371 38.8843\\nQ 53.1663 37.776, 55.5844 37.776\\nQ 57.2367 37.776, 59.1107 38.5619\\nL 58.6473 40.1135\\nQ 56.9345 39.4082, 55.6448 39.4082\\nQ 54.2544 39.4082, 53.4887 39.9926\\nQ 52.723 40.5568, 52.7431 41.5442\\nQ 52.7431 42.3099, 53.126 42.7734\\nQ 53.529 43.2368, 54.0932 43.4988\\nQ 54.6776 43.7607, 55.6448 44.063\\nQ 56.9345 44.466, 57.7002 44.869\\nQ 58.4659 45.272, 59.01 46.0982\\nQ 59.5742 46.9042, 59.5742 48.2946\\nQ 59.5742 50.2694, 58.2442 51.3374\\nQ 56.9345 52.3852, 54.738 52.3852\\nQ 53.4686 52.3852, 52.5013 52.1031\\nQ 51.5542 51.8411, 50.4258 51.3777\\nL 50.9699 49.7858\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 82.0354 44.9295\\nQ 82.0354 41.5039, 83.728 39.5896\\nQ 85.4207 37.6753, 88.5843 37.6753\\nQ 91.748 37.6753, 93.4406 39.5896\\nQ 95.1333 41.5039, 95.1333 44.9295\\nQ 95.1333 48.3954, 93.4205 50.3701\\nQ 91.7077 52.3247, 88.5843 52.3247\\nQ 85.4409 52.3247, 83.728 50.3701\\nQ 82.0354 48.4155, 82.0354 44.9295\\nM 88.5843 50.7127\\nQ 90.7606 50.7127, 91.9293 49.2619\\nQ 93.1182 47.7909, 93.1182 44.9295\\nQ 93.1182 42.1285, 91.9293 40.718\\nQ 90.7606 39.2873, 88.5843 39.2873\\nQ 86.4081 39.2873, 85.2192 40.6978\\nQ 84.0505 42.1084, 84.0505 44.9295\\nQ 84.0505 47.811, 85.2192 49.2619\\nQ 86.4081 50.7127, 88.5843 50.7127\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 48.4511 78.5138\\nQ 48.4511 75.0882, 50.1437 73.1739\\nQ 51.8364 71.2596, 55 71.2596\\nQ 58.1636 71.2596, 59.8563 73.1739\\nQ 61.5489 75.0882, 61.5489 78.5138\\nQ 61.5489 81.9797, 59.8361 83.9545\\nQ 58.1233 85.9091, 55 85.9091\\nQ 51.8565 85.9091, 50.1437 83.9545\\nQ 48.4511 81.9999, 48.4511 78.5138\\nM 55 84.297\\nQ 57.1763 84.297, 58.345 82.8462\\nQ 59.5339 81.3752, 59.5339 78.5138\\nQ 59.5339 75.7129, 58.345 74.3023\\nQ 57.1763 72.8716, 55 72.8716\\nQ 52.8237 72.8716, 51.6348 74.2822\\nQ 50.4661 75.6927, 50.4661 78.5138\\nQ 50.4661 81.3954, 51.6348 82.8462\\nQ 52.8237 84.297, 55 84.297\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 63.2617 71.4208\\nL 65.1962 71.4208\\nL 65.1962 77.4861\\nL 72.4907 77.4861\\nL 72.4907 71.4208\\nL 74.4252 71.4208\\nL 74.4252 85.6874\\nL 72.4907 85.6874\\nL 72.4907 79.0982\\nL 65.1962 79.0982\\nL 65.1962 85.6874\\nL 63.2617 85.6874\\nL 63.2617 71.4208\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 48.4511 11.3451\\nQ 48.4511 7.91952, 50.1437 6.00522\\nQ 51.8364 4.09091, 55 4.09091\\nQ 58.1636 4.09091, 59.8563 6.00522\\nQ 61.5489 7.91952, 61.5489 11.3451\\nQ 61.5489 14.811, 59.8361 16.7858\\nQ 58.1233 18.7404, 55 18.7404\\nQ 51.8565 18.7404, 50.1437 16.7858\\nQ 48.4511 14.8312, 48.4511 11.3451\\nM 55 17.1284\\nQ 57.1763 17.1284, 58.345 15.6775\\nQ 59.5339 14.2065, 59.5339 11.3451\\nQ 59.5339 8.54419, 58.345 7.13365\\nQ 57.1763 5.70296, 55 5.70296\\nQ 52.8237 5.70296, 51.6348 7.1135\\nQ 50.4661 8.52404, 50.4661 11.3451\\nQ 50.4661 14.2267, 51.6348 15.6775\\nQ 52.8237 17.1284, 55 17.1284\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 63.2617 4.25211\\nL 65.1962 4.25211\\nL 65.1962 10.3174\\nL 72.4907 10.3174\\nL 72.4907 4.25211\\nL 74.4252 4.25211\\nL 74.4252 18.5187\\nL 72.4907 18.5187\\nL 72.4907 11.9295\\nL 65.1962 11.9295\\nL 65.1962 18.5187\\nL 63.2617 18.5187\\nL 63.2617 4.25211\\n' fill='#FF0000'/>\\n</svg>\\n", "data-id": 5, "data-smi": "O=S(=O)(-O)(-O)", "mols2grid-id": 4}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 5,59.157 L 55.1039,30.4734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 55.1039,30.4734 L 105,59.5266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n", "data-id": 6, "data-smi": "CCC", "mols2grid-id": 5}, {"data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105,57.7336 L 73.984,39.8557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 73.984,39.8557 L 42.9967,57.7837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.6057,54.9923 L 33.0356,48.3232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 33.0356,48.3232 L 21.4654,41.6541' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 41.3877,60.5751 L 29.8176,53.906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 29.8176,53.906 L 18.2475,47.2369' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 5 39.9488\\nQ 5 36.2973, 6.80425 34.2568\\nQ 8.60851 32.2163, 11.9807 32.2163\\nQ 15.353 32.2163, 17.1572 34.2568\\nQ 18.9615 36.2973, 18.9615 39.9488\\nQ 18.9615 43.6432, 17.1357 45.7482\\nQ 15.31 47.8317, 11.9807 47.8317\\nQ 8.62999 47.8317, 6.80425 45.7482\\nQ 5 43.6647, 5 39.9488\\nM 11.9807 46.1133\\nQ 14.3005 46.1133, 15.5463 44.5668\\nQ 16.8136 42.9989, 16.8136 39.9488\\nQ 16.8136 36.9632, 15.5463 35.4597\\nQ 14.3005 33.9346, 11.9807 33.9346\\nQ 9.66099 33.9346, 8.39371 35.4382\\nQ 7.14792 36.9417, 7.14792 39.9488\\nQ 7.14792 43.0203, 8.39371 44.5668\\nQ 9.66099 46.1133, 11.9807 46.1133\\n' fill='#FF0000'/>\\n</svg>\\n", "data-id": 7, "data-smi": "CCC=O", "mols2grid-id": 6}])\n", + " listObj.add([{"data-id": 1, "data-smi": "CCO", "mols2grid-id": 0, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105,51.1326 L 67.191,29.2579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 67.191,29.2579 L 53.0737,37.3952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 53.0737,37.3952 L 38.9565,45.5324' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-2' d='M 5 41.8988\\nL 7.51594 41.8988\\nL 7.51594 49.7873\\nL 17.0031 49.7873\\nL 17.0031 41.8988\\nL 19.5191 41.8988\\nL 19.5191 60.4538\\nL 17.0031 60.4538\\nL 17.0031 51.8839\\nL 7.51594 51.8839\\nL 7.51594 60.4538\\nL 5 60.4538\\nL 5 41.8988\\n' fill='#FF0000'/>\\n<path class='atom-2' d='M 20.8295 51.1239\\nQ 20.8295 46.6686, 23.0309 44.1788\\nQ 25.2324 41.6891, 29.347 41.6891\\nQ 33.4616 41.6891, 35.6631 44.1788\\nQ 37.8645 46.6686, 37.8645 51.1239\\nQ 37.8645 55.6316, 35.6368 58.2\\nQ 33.4092 60.7421, 29.347 60.7421\\nQ 25.2586 60.7421, 23.0309 58.2\\nQ 20.8295 55.6578, 20.8295 51.1239\\nM 29.347 58.6455\\nQ 32.1774 58.6455, 33.6975 56.7585\\nQ 35.2437 54.8454, 35.2437 51.1239\\nQ 35.2437 47.481, 33.6975 45.6465\\nQ 32.1774 43.7857, 29.347 43.7857\\nQ 26.5166 43.7857, 24.9703 45.6202\\nQ 23.4502 47.4548, 23.4502 51.1239\\nQ 23.4502 54.8716, 24.9703 56.7585\\nQ 26.5166 58.6455, 29.347 58.6455\\n' fill='#FF0000'/>\\n</svg>\\n"}, {"data-id": 2, "data-smi": "c1ccccc1", "mols2grid-id": 1, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 19.5564,65.43 L 19.5891,24.5209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 26.9249,59.2995 L 26.9478,30.6632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5 atom-5 atom-0' d='M 54.9673,85.9091 L 19.5564,65.43' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 19.5891,24.5209 L 55.0327,4.09091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 55.0327,4.09091 L 90.4436,24.57' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 56.6579,13.5372 L 81.4455,27.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-3 atom-4' d='M 90.4436,24.57 L 90.4109,65.4791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 90.4109,65.4791 L 54.9673,85.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4 atom-4 atom-5' d='M 81.4171,62.1639 L 56.6065,76.4649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n"}, {"data-id": 3, "data-smi": "N", "mols2grid-id": 2, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='atom-0' d='M 51.1586 36.3109\\nL 56.8532 45.5155\\nQ 57.4177 46.4236, 58.3259 48.0682\\nQ 59.2341 49.7127, 59.2832 49.8109\\nL 59.2832 36.3109\\nL 61.5905 36.3109\\nL 61.5905 53.6891\\nL 59.2095 53.6891\\nL 53.0977 43.6255\\nQ 52.3859 42.4473, 51.625 41.0973\\nQ 50.8886 39.7473, 50.6677 39.33\\nL 50.6677 53.6891\\nL 48.4095 53.6891\\nL 48.4095 36.3109\\nL 51.1586 36.3109\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 63.6768 36.3109\\nL 66.0332 36.3109\\nL 66.0332 43.6991\\nL 74.9186 43.6991\\nL 74.9186 36.3109\\nL 77.275 36.3109\\nL 77.275 53.6891\\nL 74.9186 53.6891\\nL 74.9186 45.6627\\nL 66.0332 45.6627\\nL 66.0332 53.6891\\nL 63.6768 53.6891\\nL 63.6768 36.3109\\n' fill='#0000FF'/>\\n<path class='atom-0' d='M 83.4634 56.3356\\nQ 84.5812 56.6596, 85.1158 57.3886\\nQ 85.6666 58.1014, 85.6666 59.2354\\nQ 85.6666 60.2074, 85.1806 60.9688\\nQ 84.6946 61.714, 83.8036 62.1352\\nQ 82.9126 62.5402, 81.7462 62.5402\\nQ 80.515 62.5402, 79.5916 62.119\\nQ 78.6844 61.6816, 77.9554 60.8068\\nL 78.8788 59.8672\\nQ 79.5916 60.6448, 80.191 60.9526\\nQ 80.7904 61.2442, 81.7462 61.2442\\nQ 82.783 61.2442, 83.4148 60.6934\\nQ 84.0466 60.1264, 84.0466 59.2192\\nQ 84.0466 58.0528, 83.3824 57.5344\\nQ 82.7344 56.9998, 81.325 56.9998\\nL 80.4988 56.9998\\nL 80.4988 55.8334\\nL 81.2278 55.8334\\nQ 82.4752 55.8172, 83.1394 55.2826\\nQ 83.8036 54.7318, 83.8036 53.7112\\nQ 83.8036 52.966, 83.2528 52.5286\\nQ 82.702 52.075, 81.7624 52.075\\nQ 80.8066 52.075, 80.2072 52.4152\\nQ 79.624 52.7554, 79.1704 53.614\\nL 78.0526 53.0146\\nQ 78.4576 52.0588, 79.4296 51.427\\nQ 80.4016 50.779, 81.7624 50.779\\nQ 83.4472 50.779, 84.4354 51.5728\\nQ 85.4236 52.3666, 85.4236 53.7112\\nQ 85.4236 54.6346, 84.9214 55.2988\\nQ 84.4192 55.963, 83.4634 56.3356\\n' fill='#0000FF'/>\\n</svg>\\n"}, {"data-id": 4, "data-smi": "CO", "mols2grid-id": 3, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 22.7145,45 L 38.6691,45' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 38.6691,45 L 54.6236,45' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-1' d='M 55.6464 45.0491\\nQ 55.6464 40.8764, 57.7082 38.5445\\nQ 59.77 36.2127, 63.6236 36.2127\\nQ 67.4773 36.2127, 69.5391 38.5445\\nQ 71.6009 40.8764, 71.6009 45.0491\\nQ 71.6009 49.2709, 69.5145 51.6764\\nQ 67.4282 54.0573, 63.6236 54.0573\\nQ 59.7945 54.0573, 57.7082 51.6764\\nQ 55.6464 49.2955, 55.6464 45.0491\\nM 63.6236 52.0936\\nQ 66.2745 52.0936, 67.6982 50.3264\\nQ 69.1464 48.5345, 69.1464 45.0491\\nQ 69.1464 41.6373, 67.6982 39.9191\\nQ 66.2745 38.1764, 63.6236 38.1764\\nQ 60.9727 38.1764, 59.5245 39.8945\\nQ 58.1009 41.6127, 58.1009 45.0491\\nQ 58.1009 48.5591, 59.5245 50.3264\\nQ 60.9727 52.0936, 63.6236 52.0936\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 73.6873 36.4091\\nL 76.0436 36.4091\\nL 76.0436 43.7973\\nL 84.9291 43.7973\\nL 84.9291 36.4091\\nL 87.2855 36.4091\\nL 87.2855 53.7873\\nL 84.9291 53.7873\\nL 84.9291 45.7609\\nL 76.0436 45.7609\\nL 76.0436 53.7873\\nL 73.6873 53.7873\\nL 73.6873 36.4091\\n' fill='#FF0000'/>\\n</svg>\\n"}, {"data-id": 5, "data-smi": "O=S(=O)(-O)(-O)", "mols2grid-id": 4, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 28.8042,47.9118 L 39.2876,47.9118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 39.2876,47.9118 L 49.7709,47.9118' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 28.8042,41.8666 L 39.2876,41.8666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0 atom-0 atom-1' d='M 39.2876,41.8666 L 49.7709,41.8666' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.4138,47.9118 L 70.8725,47.9118' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.8725,47.9118 L 81.3311,47.9118' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 60.4138,41.8666 L 70.8725,41.8666' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 70.8725,41.8666 L 81.3311,41.8666' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 55,53.2248 L 55,61.9266' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-1 atom-3' d='M 55,61.9266 L 55,70.6284' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 55,36.9364 L 55,28.1588' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3 atom-1 atom-4' d='M 55,28.1588 L 55,19.3812' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-0' d='M 14.8667 44.9295\\nQ 14.8667 41.5039, 16.5594 39.5896\\nQ 18.252 37.6753, 21.4157 37.6753\\nQ 24.5793 37.6753, 26.272 39.5896\\nQ 27.9646 41.5039, 27.9646 44.9295\\nQ 27.9646 48.3954, 26.2518 50.3701\\nQ 24.539 52.3247, 21.4157 52.3247\\nQ 18.2722 52.3247, 16.5594 50.3701\\nQ 14.8667 48.4155, 14.8667 44.9295\\nM 21.4157 50.7127\\nQ 23.5919 50.7127, 24.7607 49.2619\\nQ 25.9495 47.7909, 25.9495 44.9295\\nQ 25.9495 42.1285, 24.7607 40.718\\nQ 23.5919 39.2873, 21.4157 39.2873\\nQ 19.2394 39.2873, 18.0505 40.6978\\nQ 16.8818 42.1084, 16.8818 44.9295\\nQ 16.8818 47.811, 18.0505 49.2619\\nQ 19.2394 50.7127, 21.4157 50.7127\\n' fill='#FF0000'/>\\n<path class='atom-1' d='M 50.9699 49.7858\\nQ 51.1311 49.8462, 51.7961 50.1283\\nQ 52.461 50.4104, 53.1864 50.5918\\nQ 53.932 50.753, 54.6574 50.753\\nQ 56.0075 50.753, 56.7934 50.1082\\nQ 57.5793 49.4432, 57.5793 48.2946\\nQ 57.5793 47.5088, 57.1763 47.0251\\nQ 56.7934 46.5415, 56.1889 46.2796\\nQ 55.5844 46.0176, 54.5768 45.7153\\nQ 53.3073 45.3325, 52.5416 44.9698\\nQ 51.7961 44.6071, 51.252 43.8413\\nQ 50.7281 43.0756, 50.7281 41.786\\nQ 50.7281 39.9926, 51.9371 38.8843\\nQ 53.1663 37.776, 55.5844 37.776\\nQ 57.2367 37.776, 59.1107 38.5619\\nL 58.6473 40.1135\\nQ 56.9345 39.4082, 55.6448 39.4082\\nQ 54.2544 39.4082, 53.4887 39.9926\\nQ 52.723 40.5568, 52.7431 41.5442\\nQ 52.7431 42.3099, 53.126 42.7734\\nQ 53.529 43.2368, 54.0932 43.4988\\nQ 54.6776 43.7607, 55.6448 44.063\\nQ 56.9345 44.466, 57.7002 44.869\\nQ 58.4659 45.272, 59.01 46.0982\\nQ 59.5742 46.9042, 59.5742 48.2946\\nQ 59.5742 50.2694, 58.2442 51.3374\\nQ 56.9345 52.3852, 54.738 52.3852\\nQ 53.4686 52.3852, 52.5013 52.1031\\nQ 51.5542 51.8411, 50.4258 51.3777\\nL 50.9699 49.7858\\n' fill='#CCCC00'/>\\n<path class='atom-2' d='M 82.0354 44.9295\\nQ 82.0354 41.5039, 83.728 39.5896\\nQ 85.4207 37.6753, 88.5843 37.6753\\nQ 91.748 37.6753, 93.4406 39.5896\\nQ 95.1333 41.5039, 95.1333 44.9295\\nQ 95.1333 48.3954, 93.4205 50.3701\\nQ 91.7077 52.3247, 88.5843 52.3247\\nQ 85.4409 52.3247, 83.728 50.3701\\nQ 82.0354 48.4155, 82.0354 44.9295\\nM 88.5843 50.7127\\nQ 90.7606 50.7127, 91.9293 49.2619\\nQ 93.1182 47.7909, 93.1182 44.9295\\nQ 93.1182 42.1285, 91.9293 40.718\\nQ 90.7606 39.2873, 88.5843 39.2873\\nQ 86.4081 39.2873, 85.2192 40.6978\\nQ 84.0505 42.1084, 84.0505 44.9295\\nQ 84.0505 47.811, 85.2192 49.2619\\nQ 86.4081 50.7127, 88.5843 50.7127\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 48.4511 78.5138\\nQ 48.4511 75.0882, 50.1437 73.1739\\nQ 51.8364 71.2596, 55 71.2596\\nQ 58.1636 71.2596, 59.8563 73.1739\\nQ 61.5489 75.0882, 61.5489 78.5138\\nQ 61.5489 81.9797, 59.8361 83.9545\\nQ 58.1233 85.9091, 55 85.9091\\nQ 51.8565 85.9091, 50.1437 83.9545\\nQ 48.4511 81.9999, 48.4511 78.5138\\nM 55 84.297\\nQ 57.1763 84.297, 58.345 82.8462\\nQ 59.5339 81.3752, 59.5339 78.5138\\nQ 59.5339 75.7129, 58.345 74.3023\\nQ 57.1763 72.8716, 55 72.8716\\nQ 52.8237 72.8716, 51.6348 74.2822\\nQ 50.4661 75.6927, 50.4661 78.5138\\nQ 50.4661 81.3954, 51.6348 82.8462\\nQ 52.8237 84.297, 55 84.297\\n' fill='#FF0000'/>\\n<path class='atom-3' d='M 63.2617 71.4208\\nL 65.1962 71.4208\\nL 65.1962 77.4861\\nL 72.4907 77.4861\\nL 72.4907 71.4208\\nL 74.4252 71.4208\\nL 74.4252 85.6874\\nL 72.4907 85.6874\\nL 72.4907 79.0982\\nL 65.1962 79.0982\\nL 65.1962 85.6874\\nL 63.2617 85.6874\\nL 63.2617 71.4208\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 48.4511 11.3451\\nQ 48.4511 7.91952, 50.1437 6.00522\\nQ 51.8364 4.09091, 55 4.09091\\nQ 58.1636 4.09091, 59.8563 6.00522\\nQ 61.5489 7.91952, 61.5489 11.3451\\nQ 61.5489 14.811, 59.8361 16.7858\\nQ 58.1233 18.7404, 55 18.7404\\nQ 51.8565 18.7404, 50.1437 16.7858\\nQ 48.4511 14.8312, 48.4511 11.3451\\nM 55 17.1284\\nQ 57.1763 17.1284, 58.345 15.6775\\nQ 59.5339 14.2065, 59.5339 11.3451\\nQ 59.5339 8.54419, 58.345 7.13365\\nQ 57.1763 5.70296, 55 5.70296\\nQ 52.8237 5.70296, 51.6348 7.1135\\nQ 50.4661 8.52404, 50.4661 11.3451\\nQ 50.4661 14.2267, 51.6348 15.6775\\nQ 52.8237 17.1284, 55 17.1284\\n' fill='#FF0000'/>\\n<path class='atom-4' d='M 63.2617 4.25211\\nL 65.1962 4.25211\\nL 65.1962 10.3174\\nL 72.4907 10.3174\\nL 72.4907 4.25211\\nL 74.4252 4.25211\\nL 74.4252 18.5187\\nL 72.4907 18.5187\\nL 72.4907 11.9295\\nL 65.1962 11.9295\\nL 65.1962 18.5187\\nL 63.2617 18.5187\\nL 63.2617 4.25211\\n' fill='#FF0000'/>\\n</svg>\\n"}, {"data-id": 6, "data-smi": "CCC", "mols2grid-id": 5, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 5,59.157 L 55.1039,30.4734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 55.1039,30.4734 L 105,59.5266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n</svg>\\n"}, {"data-id": 7, "data-smi": "CCC=O", "mols2grid-id": 6, "data-img": "<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='110px' height='90px' viewBox='0 0 110 90'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='110' height='90' x='0' y='0'> </rect>\\n<path class='bond-0 atom-0 atom-1' d='M 105,57.7336 L 73.984,39.8557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1 atom-1 atom-2' d='M 73.984,39.8557 L 42.9967,57.7837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 44.6057,54.9923 L 33.0356,48.3232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 33.0356,48.3232 L 21.4654,41.6541' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 41.3877,60.5751 L 29.8176,53.906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2 atom-2 atom-3' d='M 29.8176,53.906 L 18.2475,47.2369' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='atom-3' d='M 5 39.9488\\nQ 5 36.2973, 6.80425 34.2568\\nQ 8.60851 32.2163, 11.9807 32.2163\\nQ 15.353 32.2163, 17.1572 34.2568\\nQ 18.9615 36.2973, 18.9615 39.9488\\nQ 18.9615 43.6432, 17.1357 45.7482\\nQ 15.31 47.8317, 11.9807 47.8317\\nQ 8.62999 47.8317, 6.80425 45.7482\\nQ 5 43.6647, 5 39.9488\\nM 11.9807 46.1133\\nQ 14.3005 46.1133, 15.5463 44.5668\\nQ 16.8136 42.9989, 16.8136 39.9488\\nQ 16.8136 36.9632, 15.5463 35.4597\\nQ 14.3005 33.9346, 11.9807 33.9346\\nQ 9.66099 33.9346, 8.39371 35.4382\\nQ 7.14792 36.9417, 7.14792 39.9488\\nQ 7.14792 43.0203, 8.39371 44.5668\\nQ 9.66099 46.1133, 11.9807 46.1133\\n' fill='#FF0000'/>\\n</svg>\\n"}])\n", " \n", " // checkbox\n", " if (window.parent.IPython !== undefined) {\n", " // Jupyter notebook\n", " var kernel = window.parent.IPython.notebook.kernel;\n", " kernel.execute('import mols2grid')\n", - " kernel.execute('mols2grid.reset_selection()')\n", + " function update_current_grid(grid_id) {\n", + " kernel.execute("mols2grid._update_current_grid("+grid_id+")");\n", + " }\n", " function set_selection(_id, smiles) {\n", - " kernel.execute("mols2grid.set_selection("+_id+",'"+smiles+"')")\n", + " kernel.execute("mols2grid._set_selection("+_id+",'"+smiles+"')");\n", " }\n", " function del_selection(_id) {\n", - " kernel.execute("mols2grid.del_selection("+_id+")");\n", + " kernel.execute("mols2grid._del_selection("+_id+")");\n", " }\n", " } else if (window.parent.google !== undefined) {\n", " // Google colab\n", " var kernel = window.parent.google.colab.kernel;\n", - " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.reset_selection', [], {});\n", - " })();\n", + " function update_current_grid(grid_id) {\n", + " (async function() {\n", + " const result = await kernel.invokeFunction('m2g._update_current_grid',\n", + " [grid_id], {});\n", + " })();\n", + " }\n", " function set_selection(_id, smiles) {\n", " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.set_selection', [_id, smiles], {});\n", + " const result = await kernel.invokeFunction('m2g._set_selection',\n", + " [_id, smiles], {});\n", " })();\n", " }\n", " function del_selection(_id) {\n", " (async function() {\n", - " const result = await kernel.invokeFunction('m2g.del_selection', [_id], {});\n", + " const result = await kernel.invokeFunction('m2g._del_selection',\n", + " [_id], {});\n", " })();\n", " }\n", " }\n", @@ -565,7 +580,7 @@ " if (search_type === "Text") {\n", " listObj.search(query, ['data-id']);\n", " } else {\n", - " listObj.search(query, ["data-"+"smi"], SmartsSearch);\n", + " listObj.search(query, ["data-smi"], SmartsSearch);\n", " }\n", " });\n", " \n", @@ -574,12 +589,13 @@ " if (kernel !== undefined) {\n", " listObj.on("updated", function (list) {\n", " $("input:checkbox").change(function() {\n", + " update_current_grid(1);\n", " var _id = parseInt($(this).closest(".cell").attr("data-mols2grid-id"));\n", " var _smiles = $($(this).siblings(".data-smi")[0]).text();\n", " if (this.checked) {\n", - " set_selection(_id, _smiles)\n", + " set_selection(_id, _smiles);\n", " } else {\n", - " del_selection(_id)\n", + " del_selection(_id);\n", " }\n", " }); \n", " });\n", @@ -596,7 +612,7 @@ "" ] }, - "execution_count": 3, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -609,8 +625,15 @@ "df = pd.DataFrame({\"smi\": smiles,\n", " \"id\": range(1, len(smiles) + 1)})\n", "# setup the grid\n", - "mg = mols2grid.MolGrid(df, smiles_col=\"smi\", size=(110, 90))\n", - "mg.display(subset=[\"id\", \"img\"], n_cols=7)" + "grid = mols2grid.MolGrid(df, smiles_col=\"smi\", size=(110, 90))\n", + "grid.display(subset=[\"id\", \"img\"], n_cols=7)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As soon as you click on a checkbox on the new grid, calling `mols2grid.get_selection()` will return this latest selection instead. " ] }, { @@ -620,48 +643,8 @@ "outputs": [ { "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
smiid
0CCO1
4O=S(=O)(-O)(-O)5
\n", - "
" - ], "text/plain": [ - " smi id\n", - "0 CCO 1\n", - "4 O=S(=O)(-O)(-O) 5" + "{4: 'O=S(=O)(-O)(-O)'}" ] }, "execution_count": 5, @@ -670,14 +653,76 @@ } ], "source": [ - "# retrieve your selection as a dataframe\n", - "mg.get(mols2grid.selection)" + "# retrieve the index and SMILES of the current selection\n", + "mols2grid.get_selection()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can also specify which grid you want to get the selection from:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{14: 'c1c(C)cc2ccccc2c1C', 0: 'CCC(C)CC', 7: 'c1ccccc1CC'}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mols2grid.get_selection(0)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you need access to both grids, you can use `mols2grid.selection` which contains all selections in separate dictionnaries:" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{0: {14: 'c1c(C)cc2ccccc2c1C', 0: 'CCC(C)CC', 7: 'c1ccccc1CC'},\n", + " 1: {4: 'O=S(=O)(-O)(-O)'}}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mols2grid.selection" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The advantage of using the MolGrid class is that you can retrieve your selection in the input dataframe with `MolGrid.get_selection()`" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, "outputs": [ { "data": { @@ -706,11 +751,6 @@ " \n", " \n", " \n", - " 0\n", - " CCO\n", - " 1\n", - " \n", - " \n", " 4\n", " O=S(=O)(-O)(-O)\n", " 5\n", @@ -721,18 +761,16 @@ ], "text/plain": [ " smi id\n", - "0 CCO 1\n", "4 O=S(=O)(-O)(-O) 5" ] }, - "execution_count": 6, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# retrieve specific indexes\n", - "mg.get([0, 4])" + "grid.get_selection()" ] }, { @@ -744,7 +782,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -1422,7 +1460,7 @@ "" ] }, - "execution_count": 4, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -1454,13 +1492,6 @@ " subset=[\"img\"], size=(120, 100),\n", " MolDrawOptions=opts, selection=False)" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { From 493df834f0ecd43bc05d8aeea7a157b15076104b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Wed, 18 Aug 2021 18:09:48 +0200 Subject: [PATCH 05/74] fix transform not applied to tooltips --- mols2grid/molgrid.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index 4f73f9e..b32d47b 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -321,13 +321,6 @@ def to_pages(self, subset=None, tooltip=None, column_map[smiles] = f"data-{smiles}" # set mapping for list.js value_names = "[{data: ['mols2grid-id']}, " + str(value_names)[1:] - - if tooltip: - df["mols2grid-tooltip"] = df.apply(tooltip_formatter, axis=1, - args=(tooltip, tooltip_fmt, style)) - final_columns = final_columns + ["mols2grid-tooltip"] - value_names = (value_names[:-1] + - ", {attr: 'data-content', name: 'mols2grid-tooltip'}]") # apply CSS styles for col, func in style.items(): @@ -340,6 +333,13 @@ def to_pages(self, subset=None, tooltip=None, for col, func in transform.items(): df[col] = df[col].apply(func) + if tooltip: + df["mols2grid-tooltip"] = df.apply(tooltip_formatter, axis=1, + args=(tooltip, tooltip_fmt, style)) + final_columns = final_columns + ["mols2grid-tooltip"] + value_names = (value_names[:-1] + + ", {attr: 'data-content', name: 'mols2grid-tooltip'}]") + checkbox = '' item = '
{}{}
'.format( checkbox if selection else "", From 84776bed0ff8d9ff981a4ea32f1f4d0a690fcc85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Wed, 18 Aug 2021 19:02:09 +0200 Subject: [PATCH 06/74] add sort by tooltip items --- mols2grid/molgrid.py | 29 +++++++++++++++++++++-------- mols2grid/templates/pages.html | 5 +++-- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index b32d47b..bfaf0bf 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -273,28 +273,41 @@ def to_pages(self, subset=None, tooltip=None, df = self.dataframe.drop(columns=self.mol_col).copy() cell_width = self.img_size[0] smiles = self.smiles_col + content = [] + column_map = {} + width = n_cols * (cell_width + 2 * (gap + 2)) + if subset is None: subset = df.columns.tolist() subset = [subset.pop(subset.index("img"))] + subset - # define fields that are searchable + # define fields that are searchable and sortable search_cols = [f"data-{col}" for col in subset if col != "img"] if tooltip: search_cols.append("mols2grid-tooltip") - sort_cols = search_cols[:-1] if tooltip else search_cols[:] + sort_cols = search_cols[:-1] + sort_cols.extend([f"data-{col}" for col in tooltip]) + for col in tooltip: + if col not in subset: + s = f'' + content.append(s) + column_map[col] = f"data-{col}" + else: + sort_cols = search_cols[:] sort_cols = ["mols2grid-id"] + sort_cols + # get unique list but keep order + sort_cols = list(dict.fromkeys(sort_cols)) if style is None: style = {} if transform is None: transform = {} - value_names = list(set(subset + [smiles])) + value_names = list(set(subset + [smiles] + tooltip)) value_names = [f"data-{col}" for col in value_names] - width = n_cols * (cell_width + 2 * (gap + 2)) - content = [] - # force id and SMILES to be present in the data + + # force id, SMILES, and tooltip values to be present in the data final_columns = subset[:] - final_columns.extend(["mols2grid-id", smiles]) + final_columns.extend(["mols2grid-id", smiles] + tooltip) final_columns = list(set(final_columns)) - column_map = {} + # make a copy if id shown explicitely if "mols2grid-id" in subset: id_name = "mols2grid-id-copy" diff --git a/mols2grid/templates/pages.html b/mols2grid/templates/pages.html index a741611..3d9e024 100644 --- a/mols2grid/templates/pages.html +++ b/mols2grid/templates/pages.html @@ -67,7 +67,7 @@ {% if loop.first %} {% else %} - + {% endif %} {% endfor %} @@ -166,11 +166,12 @@ } $('#mols2grid button.sort-btn').click(function(e) { var _field = $(this).attr("data-name"); + console.log(_field); if (_field == sort_field) { $(this).removeClass("arrow-" + sort_order) sort_order = (sort_order === "desc") ? "asc" : "desc"; } else { - $('#mols2grid button.sort-btn.active').removeClass("active "+"arrow-"+sort_order); + $('#mols2grid button.sort-btn.active').removeClass("active arrow-" + sort_order); sort_order = "asc"; sort_field = _field; $(this).addClass("active"); From 0800b34a45790b2a0357eb65ff5554afb6a11ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 31 Aug 2021 20:35:25 +0200 Subject: [PATCH 07/74] allow custom names --- mols2grid/molgrid.py | 11 +++++++---- mols2grid/templates/pages.html | 3 ++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index bfaf0bf..7653ddc 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -31,7 +31,7 @@ class MolGrid: _n_instances = 0 def __init__(self, df, smiles_col="SMILES", mol_col=None, coordGen=True, - useSVG=True, mapping=None, **kwargs): + useSVG=True, mapping=None, name=None, **kwargs): """ Parameters ---------- @@ -51,6 +51,9 @@ def __init__(self, df, smiles_col="SMILES", mol_col=None, coordGen=True, Use SVG instead of PNG mapping : dict or None Rename the properties/fields stored in the molecule + name : int or str or None + Name of the grid, as shown in `mols2grid.selection`. If `None`, + the name is automatically set. kwargs : object Arguments passed to the `draw_mol` method """ @@ -82,7 +85,7 @@ def __init__(self, df, smiles_col="SMILES", mol_col=None, coordGen=True, self.img_size = kwargs.get("size", (160, 120)) self.smiles_col = smiles_col # register instance - self._grid_id = MolGrid._n_instances + self._grid_id = MolGrid._n_instances if name is None else name SELECTION[self._grid_id] = {} MolGrid._n_instances += 1 @@ -401,10 +404,10 @@ def get_selection(self, selection=None): """ if isinstance(selection, list): sel = selection - elif isinstance(selection, int) or selection is None: + elif isinstance(selection, (int, str)) or selection is None: sel = list(get_selection(selection).keys()) else: - raise TypeError(f"`selection` must be list, int or None") + raise TypeError(f"`selection` must be list, int, str, or None") return (self.dataframe.loc[self.dataframe["mols2grid-id"].isin(sel)] .drop(columns=self._extra_columns)) diff --git a/mols2grid/templates/pages.html b/mols2grid/templates/pages.html index 3d9e024..391b795 100644 --- a/mols2grid/templates/pages.html +++ b/mols2grid/templates/pages.html @@ -113,6 +113,7 @@ var kernel = window.parent.IPython.notebook.kernel; kernel.execute('import mols2grid') function update_current_grid(grid_id) { + grid_id = typeof grid_id === "string" ? "'"+grid_id+"'" : grid_id; kernel.execute("mols2grid._update_current_grid("+grid_id+")"); } function set_selection(_id, smiles) { @@ -236,7 +237,7 @@ if (kernel !== undefined) { listObj.on("updated", function (list) { $("input:checkbox").change(function() { - update_current_grid({{ grid_id }}); + update_current_grid({{ grid_id | tojson }}); var _id = parseInt($(this).closest(".cell").attr("data-mols2grid-id")); var _smiles = $($(this).siblings(".data-{{ smiles_col }}")[0]).text(); if (this.checked) { From bf2d1d900b3072a9f45af7d3618d5dfd7cc47e14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 31 Aug 2021 20:38:19 +0200 Subject: [PATCH 08/74] fix no tooltip --- mols2grid/molgrid.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index 7653ddc..39c654d 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -303,12 +303,17 @@ def to_pages(self, subset=None, tooltip=None, style = {} if transform is None: transform = {} - value_names = list(set(subset + [smiles] + tooltip)) + if tooltip: + value_names = list(set(subset + [smiles] + tooltip)) + else: + value_names = list(set(subset + [smiles])) value_names = [f"data-{col}" for col in value_names] # force id, SMILES, and tooltip values to be present in the data final_columns = subset[:] - final_columns.extend(["mols2grid-id", smiles] + tooltip) + final_columns.extend(["mols2grid-id", smiles]) + if tooltip: + final_columns.extend(tooltip) final_columns = list(set(final_columns)) # make a copy if id shown explicitely From 176cca46d0af34e55d0ca978c980ccc9e9e7759a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 31 Aug 2021 20:39:07 +0200 Subject: [PATCH 09/74] fix tooltip_trigger="focus" --- mols2grid/molgrid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index 39c654d..fe2d10b 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -183,7 +183,7 @@ def mol_to_img(self, mol, **kwargs): if self.useSVG: return img data = b64encode(img).decode() - return f'molecule' + return f'' def smi_to_img(self, smi, **kwargs): """Convert a SMILES string to an HTML img tag containing a drawing of @@ -326,8 +326,8 @@ def to_pages(self, subset=None, tooltip=None, # organize data for col in subset: if col == "img" and tooltip: - s = (f'
') + s = (f'') else: if style.get(col): s = f'
' From 3e2d2f6ae699bdc757559bbfa49fc48792c24914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 31 Aug 2021 20:59:12 +0200 Subject: [PATCH 10/74] get_selection copy kwarg --- mols2grid/select.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/mols2grid/select.py b/mols2grid/select.py index c567bd2..502953a 100644 --- a/mols2grid/select.py +++ b/mols2grid/select.py @@ -17,14 +17,24 @@ def _del_selection(_id): global current_selection del selection[current_selection][_id] -def get_selection(grid_id=None): - """Returns the selection for a specific MolGrid instance. If grid_id is - `None`, the most recently updated grid is returned.""" +def get_selection(grid_id=None, copy=True): + """Returns the selection for a specific MolGrid instance + + Parameters + ---------- + grid_id : int, str or None + Name of the grid to fetch the selection from. If `None`, the most + recently updated grid is returned + copy : bool + Return a copy of the selection instead of the original object + """ global selection global current_selection grid_id = current_selection if grid_id is None else grid_id sel = selection[grid_id] - return deepcopy(sel) + if copy: + return deepcopy(sel) + return sel try: from google import colab From 322d07773c87549c0ed912d51d6d9e4646c4ad4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Tue, 31 Aug 2021 20:59:37 +0200 Subject: [PATCH 11/74] MolGrid.get_selection remove selection kwarg --- mols2grid/molgrid.py | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/mols2grid/molgrid.py b/mols2grid/molgrid.py index fe2d10b..3648c90 100644 --- a/mols2grid/molgrid.py +++ b/mols2grid/molgrid.py @@ -394,25 +394,14 @@ def to_pages(self, subset=None, tooltip=None, ) return template.render(**template_kwargs) - def get_selection(self, selection=None): - """Retrieve the dataframe subset corresponding to a selection - - Parameters - ---------- - selection : list or dict - Either a list of indices or a dict with keys corresponding to - indices to select in the internal dataframe + def get_selection(self): + """Retrieve the dataframe subset corresponding to your selection Returns ------- pandas.DataFrame """ - if isinstance(selection, list): - sel = selection - elif isinstance(selection, (int, str)) or selection is None: - sel = list(get_selection(selection).keys()) - else: - raise TypeError(f"`selection` must be list, int, str, or None") + sel = list(get_selection().keys()) return (self.dataframe.loc[self.dataframe["mols2grid-id"].isin(sel)] .drop(columns=self._extra_columns)) From e1b4683f1fa23d563f12240dd74dde7d260b1b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Thu, 2 Sep 2021 16:10:47 +0200 Subject: [PATCH 12/74] ignore vscode --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9f92f8f..1faf115 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,6 @@ Thumbs.db #thumbnail cache on Windows .prof -# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,python \ No newline at end of file +# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,python + +.vscode/ \ No newline at end of file From 17876af4477af07fe77298e4f69ab6ad4a23d091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Fri, 3 Sep 2021 01:52:14 +0200 Subject: [PATCH 13/74] add selection modifiers and export --- mols2grid/templates/pages.html | 151 +++++++++++++++++++++++++-------- 1 file changed, 114 insertions(+), 37 deletions(-) diff --git a/mols2grid/templates/pages.html b/mols2grid/templates/pages.html index 7c2e30f..3761cf1 100644 --- a/mols2grid/templates/pages.html +++ b/mols2grid/templates/pages.html @@ -53,32 +53,34 @@
-
+
{{ item }}
-
-
    -