Skip to content

Instantly share code, notes, and snippets.

@iwatobipen
Created May 17, 2020 13:14
Show Gist options
  • Save iwatobipen/7aa277f0ed41e6faa211b1300af668e2 to your computer and use it in GitHub Desktop.
Save iwatobipen/7aa277f0ed41e6faa211b1300af668e2 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint8 = np.dtype([(\"qint8\", np.int8, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:517: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_quint8 = np.dtype([(\"quint8\", np.uint8, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:518: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint16 = np.dtype([(\"qint16\", np.int16, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:519: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_quint16 = np.dtype([(\"quint16\", np.uint16, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:520: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint32 = np.dtype([(\"qint32\", np.int32, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:525: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" np_resource = np.dtype([(\"resource\", np.ubyte, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:541: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint8 = np.dtype([(\"qint8\", np.int8, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:542: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_quint8 = np.dtype([(\"quint8\", np.uint8, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:543: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint16 = np.dtype([(\"qint16\", np.int16, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:544: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_quint16 = np.dtype([(\"quint16\", np.uint16, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:545: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" _np_qint32 = np.dtype([(\"qint32\", np.int32, 1)])\n",
"/home/iwatobipen/miniconda3/envs/chemoinfo/lib/python3.7/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:550: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.\n",
" np_resource = np.dtype([(\"resource\", np.ubyte, 1)])\n"
]
}
],
"source": [
"from rdkit import Chem\n",
"from rdkit.Chem import Draw\n",
"from rdkit.Chem import rdChemReactions\n",
"from rdkit.Chem.Draw import rdMolDraw2D\n",
"from rdkit.Chem.Draw import IPythonConsole\n",
"from IPython.display import SVG, display\n",
"from rxnmapper import RXNMapper"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [],
"source": [
"def draw_chemical_reaction(smiles, highlightByReactant=False, font_scale=1.5):\n",
" rxn = rdChemReactions.ReactionFromSmarts(smiles, useSmiles=True)\n",
" trxn = rdChemReactions.ChemicalReaction(rxn)\n",
" for m in trxn.GetReactants():\n",
" moveAtomMapsToNotes(m)\n",
" for m in trxn.GetProducts():\n",
" moveAtomMapsToNotes(m)\n",
" d2d = rdMolDraw2D.MolDraw2DSVG(700, 200)\n",
" d2d.drawOptions().annotationFontScale=font_scale\n",
" d2d.DrawReaction(trxn, highlightByReactant=highlightByReactant)\n",
" d2d.FinishDrawing()\n",
" return d2d.GetDrawingText()\n",
"\n",
"def moveAtomMapsToNotes(m):\n",
" for at in m.GetAtoms():\n",
" if at.GetAtomMapNum():\n",
" at.SetProp('atomNote', str(at.GetAtomMapNum()))"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Setting 'max_len_single_sentence' is now deprecated. This value is automatically set up.\n",
"Setting 'max_len_sentences_pair' is now deprecated. This value is automatically set up.\n"
]
}
],
"source": [
"rxn_mapper = RXNMapper()"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [],
"source": [
"rxns = ['C=C.C=CC=C>>C1C=CCCC1',\n",
" 'c1ccccc1C(O)C#N.c1ccccc1C=O>>c1ccccc1-c2ncc(c3ccccc3)o2',\n",
" 'c1ccccc1OCC=C>>c1cc(O)c(CC=C)cc1',\n",
" 'C1C(=O)CCC1>>C1C(=O)OCCC1',\n",
" 'c1ccccc1C(=O).CN.CCN=C.c1ccccc1O>>CCN(C)C(=O)C(c1ccccc1)N(c2ccccc2)C'\n",
" ]\n",
"\n",
"outputs = rxn_mapper.get_attention_guided_atom_maps(rxns)"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg baseProfile=\"full\" height=\"200px\" version=\"1.1\" viewBox=\"0 0 700 200\" width=\"700px\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<!-- END OF HEADER -->\n",
"<rect height=\"200\" style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"700\" x=\"0\" y=\"0\"> </rect>\n",
"<path d=\"M 51.9741,100 L 95.037,100\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 206.081,103.919 L 245.705,87.0574\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 245.705,87.0574 L 280.12,112.943\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 280.12,112.943 L 319.745,96.0813\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 646.103,100 L 624.571,137.294\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 581.508,137.294 L 559.977,100\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 559.977,100 L 581.508,62.7064\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 581.508,62.7064 L 624.571,62.7064\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:9px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"51.9741\" cy=\"100\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"95.037\" cy=\"100\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"206.081\" cy=\"103.919\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"245.705\" cy=\"87.0574\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"280.12\" cy=\"112.943\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"319.745\" cy=\"96.0813\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"646.103\" cy=\"100\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"624.571\" cy=\"137.294\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"581.508\" cy=\"137.294\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"559.977\" cy=\"100\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"581.508\" cy=\"62.7064\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"624.571\" cy=\"62.7064\" rx=\"8.61259\" ry=\"8.61259\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 51.9741,104.306 L 95.037,104.306\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 51.9741,95.6937 L 95.037,95.6937\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 207.767,107.881 L 247.391,91.0198\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 204.394,99.9563 L 244.019,83.0949\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 245.705,87.0574 L 280.12,112.943\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 281.806,116.905 L 321.431,100.044\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 278.434,108.98 L 318.058,92.1188\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 646.103,100 L 624.571,137.294\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 635.414,101.288 L 620.342,127.393\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 646.103,100 L 624.571,62.7064\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 624.571,137.294 L 581.508,137.294\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 581.508,137.294 L 559.977,100\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7\" d=\"M 559.977,100 L 581.508,62.7064\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 581.508,62.7064 L 624.571,62.7064\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"39.5429\" y=\"96.0526\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"107.468\" y=\"110.407\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"194.609\" y=\"98.52\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"254.334\" y=\"78.8155\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"271.491\" y=\"127.644\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"331.216\" y=\"107.939\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"660.457\" y=\"103.23\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"631.748\" y=\"152.955\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"574.331\" y=\"152.955\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"545.623\" y=\"103.23\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"574.331\" y=\"53.5049\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:21px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"631.748\" y=\"53.5049\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:24px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"150.559\" y=\"103.6\"><tspan>+</tspan></text>\n",
"<path d=\"M 375.266,100 L 490.101,100\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 490.101,100 L 485.128,97.1291\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 490.101,100 L 485.128,102.871\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Confidence: 0.27\n"
]
},
{
"data": {
"image/svg+xml": [
"<svg baseProfile=\"full\" height=\"200px\" version=\"1.1\" viewBox=\"0 0 700 200\" width=\"700px\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<!-- END OF HEADER -->\n",
"<rect height=\"200\" style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"700\" x=\"0\" y=\"0\"> </rect>\n",
"<path d=\"M 35.8418,96.1594 L 53.3739,115.154\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 53.3739,115.154 L 78.5893,109.467\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 78.5893,109.467 L 86.2727,84.7872\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 78.5893,109.467 L 96.1213,128.462\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 86.2727,84.7872 L 111.488,79.1011\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 111.488,79.1011 L 129.02,98.0953\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 129.02,98.0953 L 121.337,122.776\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 121.337,122.776 L 96.1213,128.462\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 201.425,113.98 L 207.785,88.9257\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 201.425,113.98 L 219.943,132.014\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 207.785,88.9257 L 232.662,81.9065\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 232.662,81.9065 L 251.18,99.9413\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 251.18,99.9413 L 276.057,92.9221\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 251.18,99.9413 L 244.82,124.995\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 276.057,92.9221 L 294.575,110.957\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 276.057,92.9221 L 282.417,67.8681\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 294.575,110.957 L 313.092,128.992\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 244.82,124.995 L 219.943,132.014\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 457.292,118.935 L 462.666,93.6511\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 457.292,118.935 L 476.501,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 462.666,93.6511 L 487.25,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 487.25,85.6635 L 506.459,102.96\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 506.459,102.96 L 531.042,94.9719\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 506.459,102.96 L 501.085,128.243\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 531.042,94.9719 L 539.03,70.3884\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 531.042,94.9719 L 551.954,110.165\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 539.03,70.3884 L 564.878,70.3884\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 572.866,94.9719 L 597.45,102.96\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 597.45,102.96 L 602.824,128.243\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 597.45,102.96 L 616.659,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 602.824,128.243 L 627.407,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 627.407,136.231 L 646.617,118.935\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 646.617,118.935 L 641.242,93.6511\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 641.242,93.6511 L 616.659,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 501.085,128.243 L 476.501,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"53.3739\" cy=\"115.154\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"78.5893\" cy=\"109.467\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"86.2727\" cy=\"84.7872\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"111.488\" cy=\"79.1011\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"129.02\" cy=\"98.0953\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"121.337\" cy=\"122.776\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"96.1213\" cy=\"128.462\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"201.425\" cy=\"113.98\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"207.785\" cy=\"88.9257\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"232.662\" cy=\"81.9065\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"251.18\" cy=\"99.9413\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"276.057\" cy=\"92.9221\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"294.575\" cy=\"110.957\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"313.092\" cy=\"128.992\" rx=\"5.28072\" ry=\"6.09257\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"286.151\" cy=\"67.8681\" rx=\"10.971\" ry=\"6.09257\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"244.82\" cy=\"124.995\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"219.943\" cy=\"132.014\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"457.292\" cy=\"118.935\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"462.666\" cy=\"93.6511\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"487.25\" cy=\"85.6635\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"506.459\" cy=\"102.96\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"531.042\" cy=\"94.9719\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"539.03\" cy=\"70.3884\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"564.878\" cy=\"70.3884\" rx=\"5.28072\" ry=\"6.09257\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"572.866\" cy=\"94.9719\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"597.45\" cy=\"102.96\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"602.824\" cy=\"128.243\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"627.407\" cy=\"136.231\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"646.617\" cy=\"118.935\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"641.242\" cy=\"93.6511\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"616.659\" cy=\"85.6635\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"551.954\" cy=\"110.165\" rx=\"5.6903\" ry=\"6.09257\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"501.085\" cy=\"128.243\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"476.501\" cy=\"136.231\" rx=\"5.16972\" ry=\"5.16972\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 37.9189,102.221 L 44.6967,109.564\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 44.6967,109.564 L 51.4744,116.907\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 41.7177,98.7143 L 48.4955,106.057\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 48.4955,106.057 L 55.2733,113.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 53.3739,115.154 L 78.5893,109.467\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 78.5893,109.467 L 86.2727,84.7872\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 84.6779,107.302 L 90.0562,90.026\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7\" d=\"M 78.5893,109.467 L 96.1213,128.462\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 86.2727,84.7872 L 111.488,79.1011\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 111.488,79.1011 L 129.02,98.0953\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 110.319,85.4567 L 122.592,98.7526\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 129.02,98.0953 L 121.337,122.776\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 121.337,122.776 L 96.1213,128.462\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 116.417,118.585 L 98.7664,122.566\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 201.425,113.98 L 207.785,88.9257\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 207.39,111.494 L 211.842,93.9558\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-17\" d=\"M 201.425,113.98 L 219.943,132.014\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 207.785,88.9257 L 232.662,81.9065\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 232.662,81.9065 L 251.18,99.9413\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 231.833,88.3152 L 244.795,100.94\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11\" d=\"M 251.18,99.9413 L 276.057,92.9221\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-15\" d=\"M 251.18,99.9413 L 244.82,124.995\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 276.057,92.9221 L 294.575,110.957\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-14\" d=\"M 276.057,92.9221 L 278.69,82.5491\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-14\" d=\"M 278.69,82.5491 L 281.323,72.1762\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 294.575,110.957 L 301.966,118.156\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 301.966,118.156 L 309.358,125.355\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 293.185,116.82 L 299.468,122.939\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 299.468,122.939 L 305.751,129.058\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 300.399,109.413 L 306.682,115.532\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 306.682,115.532 L 312.965,121.651\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-16\" d=\"M 244.82,124.995 L 219.943,132.014\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-16\" d=\"M 239.685,121.073 L 222.27,125.986\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 457.292,118.935 L 462.666,93.6511\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 463.155,116.217 L 466.917,98.5186\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-34\" d=\"M 457.292,118.935 L 476.501,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-19\" d=\"M 462.666,93.6511 L 487.25,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-20\" d=\"M 487.25,85.6635 L 506.459,102.96\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-20\" d=\"M 486.672,92.0998 L 500.118,104.207\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-21\" d=\"M 506.459,102.96 L 531.042,94.9719\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-32\" d=\"M 506.459,102.96 L 501.085,128.243\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-22\" d=\"M 531.042,94.9719 L 539.03,70.3884\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-22\" d=\"M 537.157,92.8819 L 542.748,75.6735\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-35\" d=\"M 531.042,94.9719 L 539.486,101.107\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-35\" d=\"M 539.486,101.107 L 547.931,107.242\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 539.03,70.3884 L 550.087,70.3884\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 550.087,70.3884 L 561.144,70.3884\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-24\" d=\"M 566.278,74.6965 L 569.572,84.8342\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-24\" d=\"M 569.572,84.8342 L 572.866,94.9719\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-24\" d=\"M 562.35,79.3354 L 564.656,86.4318\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-24\" d=\"M 564.656,86.4318 L 566.961,93.5281\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-25\" d=\"M 572.866,94.9719 L 597.45,102.96\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-31\" d=\"M 572.866,94.9719 L 564.422,101.107\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-31\" d=\"M 564.422,101.107 L 555.978,107.242\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-26\" d=\"M 597.45,102.96 L 602.824,128.243\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-26\" d=\"M 603.312,105.677 L 607.074,123.376\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-36\" d=\"M 597.45,102.96 L 616.659,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-27\" d=\"M 602.824,128.243 L 627.407,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-28\" d=\"M 627.407,136.231 L 646.617,118.935\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-28\" d=\"M 626.829,129.795 L 640.276,117.687\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-29\" d=\"M 646.617,118.935 L 641.242,93.6511\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-30\" d=\"M 641.242,93.6511 L 616.659,85.6635\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-30\" d=\"M 635.957,97.3697 L 618.749,91.7783\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-33\" d=\"M 501.085,128.243 L 476.501,136.231\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-33\" d=\"M 495.799,124.525 L 478.591,130.116\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<text dominant-baseline=\"central\" style=\"font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"end\" x=\"39.0039\" y=\"97.4519\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"start\" x=\"310.22\" y=\"130.284\"><tspan>N</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"279.255\" y=\"69.1605\"><tspan>OH</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"start\" x=\"562.006\" y=\"71.6809\"><tspan>N</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"middle\" x=\"551.954\" y=\"111.458\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"49.5322\" y=\"129.432\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"69.8233\" y=\"101.909\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"77.5067\" y=\"77.2288\"><tspan>10</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"114.049\" y=\"72.813\"><tspan>11</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"141.628\" y=\"97.1909\"><tspan>12</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"130.103\" y=\"134.211\"><tspan>13</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"93.5602\" y=\"138.627\"><tspan>14</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"193.133\" y=\"118.258\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"201.613\" y=\"84.8528\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"234.782\" y=\"75.4938\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"254.36\" y=\"89.3529\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"272.877\" y=\"107.388\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"285.557\" y=\"122.154\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"322.351\" y=\"139.948\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"285.597\" y=\"57.2798\"><tspan>15</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"254.079\" y=\"135.951\"><tspan>16</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"217.823\" y=\"142.304\"><tspan>17</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"449.097\" y=\"123.536\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"456.263\" y=\"89.8244\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"489.041\" y=\"79.1742\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"509.146\" y=\"92.2563\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"521.903\" y=\"87.7717\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"533.965\" y=\"65.3564\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"573.447\" y=\"73.2277\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"582.005\" y=\"87.7717\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"587.845\" y=\"113.546\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"593.219\" y=\"138.83\"><tspan>10</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"629.199\" y=\"146.598\"><tspan>11</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"658.908\" y=\"124.867\"><tspan>12</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"650.847\" y=\"86.9417\"><tspan>13</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"614.867\" y=\"79.1742\"><tspan>14</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"551.954\" y=\"125.028\"><tspan>15</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"510.689\" y=\"138.83\"><tspan>16</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"474.71\" y=\"146.598\"><tspan>17</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:24px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"168.098\" y=\"105.65\"><tspan>+</tspan></text>\n",
"<path d=\"M 346.419,102.05 L 415.349,102.05\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 415.349,102.05 L 412.364,100.326\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 415.349,102.05 L 412.364,103.773\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Confidence: 0.81\n"
]
},
{
"data": {
"image/svg+xml": [
"<svg baseProfile=\"full\" height=\"200px\" version=\"1.1\" viewBox=\"0 0 700 200\" width=\"700px\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<!-- END OF HEADER -->\n",
"<rect height=\"200\" style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"700\" x=\"0\" y=\"0\"> </rect>\n",
"<path d=\"M 48.5384,71.6701 L 77.7694,97.325\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 77.7694,97.325 L 114.603,84.8376\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 114.603,84.8376 L 143.834,110.492\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 143.834,110.492 L 180.667,98.0052\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 180.667,98.0052 L 188.269,59.863\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 180.667,98.0052 L 209.898,123.66\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 188.269,59.863 L 225.102,47.3757\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 225.102,47.3757 L 254.333,73.0305\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 254.333,73.0305 L 246.731,111.173\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 246.731,111.173 L 209.898,123.66\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 471.3,83.6482 L 508.644,72.7843\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 508.644,72.7843 L 536.724,99.6935\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 536.724,99.6935 L 574.069,88.8296\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 574.069,88.8296 L 583.332,51.0566\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 574.069,88.8296 L 602.149,115.739\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 583.332,51.0566 L 620.677,40.1927\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 620.677,40.1927 L 648.757,67.1019\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 648.757,67.1019 L 639.493,104.875\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 639.493,104.875 L 602.149,115.739\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 602.149,115.739 L 592.885,153.512\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:8px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"48.5384\" cy=\"71.6701\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"77.7694\" cy=\"97.325\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"114.603\" cy=\"84.8376\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"143.834\" cy=\"110.492\" rx=\"8.56176\" ry=\"9.16703\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"180.667\" cy=\"98.0052\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"188.269\" cy=\"59.863\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"225.102\" cy=\"47.3757\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"254.333\" cy=\"73.0305\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"246.731\" cy=\"111.173\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"209.898\" cy=\"123.66\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"471.3\" cy=\"83.6482\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"508.644\" cy=\"72.7843\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"536.724\" cy=\"99.6935\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"574.069\" cy=\"88.8296\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"583.332\" cy=\"51.0566\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"620.677\" cy=\"40.1927\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"648.757\" cy=\"67.1019\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"639.493\" cy=\"104.875\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"602.149\" cy=\"115.739\" rx=\"7.77848\" ry=\"7.77848\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"598.504\" cy=\"153.512\" rx=\"16.5073\" ry=\"9.16703\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 45.9729,74.5932 L 75.2039,100.248\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 51.1039,68.747 L 80.3348,94.4019\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 77.7694,97.325 L 114.603,84.8376\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 114.603,84.8376 L 126.191,95.0083\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 126.191,95.0083 L 137.779,105.179\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 149.888,108.44 L 165.277,103.223\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 165.277,103.223 L 180.667,98.0052\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 180.667,98.0052 L 188.269,59.863\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 189.435,93.8043 L 194.757,67.1048\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 180.667,98.0052 L 209.898,123.66\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 188.269,59.863 L 225.102,47.3757\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 225.102,47.3757 L 254.333,73.0305\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 224.356,57.0701 L 244.818,75.0285\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7\" d=\"M 254.333,73.0305 L 246.731,111.173\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 246.731,111.173 L 209.898,123.66\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 238.708,105.679 L 212.925,114.42\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 472.386,87.3827 L 509.73,76.5188\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 470.213,79.9138 L 507.557,69.0499\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11\" d=\"M 508.644,72.7843 L 536.724,99.6935\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 536.724,99.6935 L 574.069,88.8296\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 574.069,88.8296 L 583.332,51.0566\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 583.013,85.0164 L 589.497,58.5753\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-19\" d=\"M 574.069,88.8296 L 602.149,115.739\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-14\" d=\"M 583.332,51.0566 L 620.677,40.1927\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-15\" d=\"M 620.677,40.1927 L 648.757,67.1019\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-15\" d=\"M 619.507,49.8452 L 639.163,68.6816\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-16\" d=\"M 648.757,67.1019 L 639.493,104.875\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-17\" d=\"M 639.493,104.875 L 602.149,115.739\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-17\" d=\"M 631.719,99.0356 L 605.578,106.64\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 602.149,115.739 L 598.312,131.384\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 598.312,131.384 L 594.475,147.03\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"middle\" x=\"143.834\" y=\"112.437\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"588.128\" y=\"155.456\"><tspan>OH</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"38.7948\" y=\"66.0354\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"73.9682\" y=\"119.313\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"117.137\" y=\"75.0405\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"140.032\" y=\"132.48\"><tspan>10</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"166.051\" y=\"88.0947\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"178.525\" y=\"54.2283\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"227.636\" y=\"37.5786\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"266.611\" y=\"71.785\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"256.475\" y=\"122.641\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"207.364\" y=\"139.291\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"461.939\" y=\"77.5954\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"517.614\" y=\"66.3411\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"533.636\" y=\"115.201\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"560.028\" y=\"78.292\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"573.972\" y=\"45.0038\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"623.765\" y=\"30.5186\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"661.205\" y=\"66.3975\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"648.854\" y=\"116.762\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"616.189\" y=\"132.11\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:19px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"588.254\" y=\"175.315\"><tspan>10</tspan></text>\n",
"<path d=\"M 304.478,96.8522 L 408.191,96.8522\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 408.191,96.8522 L 403.7,94.2594\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 408.191,96.8522 L 403.7,99.4451\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Confidence: 0.86\n"
]
},
{
"data": {
"image/svg+xml": [
"<svg baseProfile=\"full\" height=\"200px\" version=\"1.1\" viewBox=\"0 0 700 200\" width=\"700px\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<!-- END OF HEADER -->\n",
"<rect height=\"200\" style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"700\" x=\"0\" y=\"0\"> </rect>\n",
"<path d=\"M 186.802,105.481 L 134.931,105.481\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 134.931,105.481 L 104.443,63.5167\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 134.931,105.481 L 104.443,147.445\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 104.443,63.5167 L 55.1108,79.5455\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 55.1108,79.5455 L 55.1108,131.416\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 55.1108,131.416 L 104.443,147.445\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 632.942,105.481 L 581.071,105.481\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 581.071,105.481 L 555.136,150.402\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 555.136,150.402 L 503.266,150.402\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 503.266,150.402 L 477.33,105.481\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 477.33,105.481 L 503.266,60.5596\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:11px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"186.802\" cy=\"105.481\" rx=\"11.4188\" ry=\"12.226\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"134.931\" cy=\"105.481\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"104.443\" cy=\"63.5167\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"55.1108\" cy=\"79.5455\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"55.1108\" cy=\"131.416\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"104.443\" cy=\"147.445\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"632.942\" cy=\"105.481\" rx=\"11.4188\" ry=\"12.226\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"581.071\" cy=\"105.481\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"555.136\" cy=\"150.402\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"503.266\" cy=\"150.402\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"477.33\" cy=\"105.481\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"503.266\" cy=\"60.5596\" rx=\"10.3741\" ry=\"10.3741\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 178.728,100.294 L 156.829,100.294\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 156.829,100.294 L 134.931,100.294\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 178.728,110.668 L 156.829,110.668\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 156.829,110.668 L 134.931,110.668\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 134.931,105.481 L 104.443,63.5167\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 134.931,105.481 L 104.443,147.445\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 104.443,63.5167 L 55.1108,79.5455\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 55.1108,79.5455 L 55.1108,131.416\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 55.1108,131.416 L 104.443,147.445\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 624.868,100.294 L 602.97,100.294\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 602.97,100.294 L 581.071,100.294\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 624.868,110.668 L 602.97,110.668\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 602.97,110.668 L 581.071,110.668\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7\" d=\"M 581.071,105.481 L 555.136,150.402\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 581.071,105.481 L 570.599,87.3427\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 570.599,87.3427 L 560.127,69.2047\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 555.136,150.402 L 503.266,150.402\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 503.266,150.402 L 477.33,105.481\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 477.33,105.481 L 503.266,60.5596\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11\" d=\"M 503.266,60.5596 L 520.836,60.5596\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11\" d=\"M 520.836,60.5596 L 538.406,60.5596\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<text dominant-baseline=\"central\" style=\"font-size:17px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"180.457\" y=\"108.074\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:17px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"626.597\" y=\"108.074\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:17px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"540.136\" y=\"63.1531\"><tspan>O:7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"212.737\" y=\"109.371\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"146.706\" y=\"86.2626\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"109.786\" y=\"50.963\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"41.1228\" y=\"73.2729\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"41.1228\" y=\"145.469\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"109.786\" y=\"167.779\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"658.877\" y=\"109.371\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"594.039\" y=\"131.832\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"563.781\" y=\"169.266\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"494.621\" y=\"169.266\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"460.04\" y=\"109.371\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"494.621\" y=\"49.4762\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:25px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"555.136\" y=\"38.5146\"><tspan>7</tspan></text>\n",
"<path d=\"M 254.842,105.481 L 393.163,105.481\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 393.163,105.481 L 387.173,102.023\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 393.163,105.481 L 387.173,108.939\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Confidence: 0.93\n"
]
},
{
"data": {
"image/svg+xml": [
"<svg baseProfile=\"full\" height=\"200px\" version=\"1.1\" viewBox=\"0 0 700 200\" width=\"700px\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<!-- END OF HEADER -->\n",
"<rect height=\"200\" style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"700\" x=\"0\" y=\"0\"> </rect>\n",
"<path d=\"M 108.832,101.82 L 88.8738,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 88.8738,101.82 L 78.8947,119.104\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 88.8738,101.82 L 78.8947,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 78.8947,119.104 L 58.9366,119.104\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 58.9366,119.104 L 48.9575,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 48.9575,101.82 L 58.9366,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 58.9366,84.5355 L 78.8947,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 159.849,103.636 L 178.214,95.8213\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 178.214,95.8213 L 194.164,107.818\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 194.164,107.818 L 212.528,100.004\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 277.977,110.238 L 264.44,95.5728\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 277.977,110.238 L 297.446,105.848\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 297.446,105.848 L 303.379,86.7921\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 297.446,105.848 L 310.983,120.514\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 303.379,86.7921 L 322.848,82.4018\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 322.848,82.4018 L 336.385,97.0675\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 336.385,97.0675 L 330.452,116.124\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 330.452,116.124 L 310.983,120.514\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 416.689,101.82 L 396.73,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 546.244,132.281 L 561.898,119.901\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 561.898,119.901 L 559.003,100.153\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 559.003,100.153 L 540.455,92.7866\" style=\"fill:none;fill-rule:evenodd;stroke:#FFCC99;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 574.658,87.7731 L 571.763,68.026\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 574.658,87.7731 L 593.206,95.1399\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 593.206,95.1399 L 608.861,82.7596\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 608.861,82.7596 L 627.409,90.1264\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 608.861,82.7596 L 605.966,63.0125\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 640.169,57.999 L 621.62,50.6322\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 621.62,50.6322 L 605.966,63.0125\" style=\"fill:none;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 596.101,114.887 L 580.447,127.267\" style=\"fill:none;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 614.65,122.254 L 617.544,142.001\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 614.65,122.254 L 630.304,109.874\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 617.544,142.001 L 636.093,149.368\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 636.093,149.368 L 651.747,136.987\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 651.747,136.987 L 648.853,117.24\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 648.853,117.24 L 630.304,109.874\" style=\"fill:none;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"88.8738\" cy=\"101.82\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"78.8947\" cy=\"119.104\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"58.9366\" cy=\"119.104\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"48.9575\" cy=\"101.82\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"58.9366\" cy=\"84.5355\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"78.8947\" cy=\"84.5355\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"159.849\" cy=\"103.636\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"178.214\" cy=\"95.8213\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"194.164\" cy=\"107.818\" rx=\"4.07733\" ry=\"4.70418\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"212.528\" cy=\"100.004\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"277.977\" cy=\"110.238\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"264.44\" cy=\"95.5728\" rx=\"4.39358\" ry=\"4.70418\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"297.446\" cy=\"105.848\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"303.379\" cy=\"86.7921\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"322.848\" cy=\"82.4018\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"336.385\" cy=\"97.0675\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"330.452\" cy=\"116.124\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"310.983\" cy=\"120.514\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"420.682\" cy=\"101.82\" rx=\"9.7246\" ry=\"5.17459\" style=\"fill:#CCFFCC;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"396.73\" cy=\"101.82\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#CCFFCC;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"546.244\" cy=\"132.281\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"561.898\" cy=\"119.901\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"559.003\" cy=\"100.153\" rx=\"4.07733\" ry=\"4.70418\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"540.455\" cy=\"92.7866\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFCC99;fill-rule:evenodd;stroke:#FFCC99;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"574.658\" cy=\"87.7731\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"571.763\" cy=\"68.026\" rx=\"4.39358\" ry=\"4.70418\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"593.206\" cy=\"95.1399\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"608.861\" cy=\"82.7596\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"627.409\" cy=\"90.1264\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"640.169\" cy=\"57.999\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"621.62\" cy=\"50.6322\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"605.966\" cy=\"63.0125\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFB5C1;fill-rule:evenodd;stroke:#FFB5C1;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"596.101\" cy=\"114.887\" rx=\"4.07733\" ry=\"4.70418\" style=\"fill:#CCFFCC;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"580.447\" cy=\"127.267\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#CCFFCC;fill-rule:evenodd;stroke:#CCFFCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"614.65\" cy=\"122.254\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"617.544\" cy=\"142.001\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"636.093\" cy=\"149.368\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"651.747\" cy=\"136.987\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"648.853\" cy=\"117.24\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<ellipse cx=\"630.304\" cy=\"109.874\" rx=\"3.99163\" ry=\"3.99163\" style=\"fill:#FFFFAA;fill-rule:evenodd;stroke:#FFFFAA;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 105.725,101.82 L 97.2995,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0\" d=\"M 97.2995,101.82 L 88.8738,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 88.8738,101.82 L 78.8947,119.104\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1\" d=\"M 83.92,102.417 L 76.9347,114.516\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6\" d=\"M 88.8738,101.82 L 78.8947,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2\" d=\"M 78.8947,119.104 L 58.9366,119.104\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 58.9366,119.104 L 48.9575,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3\" d=\"M 60.8965,114.516 L 53.9112,102.417\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4\" d=\"M 48.9575,101.82 L 58.9366,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 58.9366,84.5355 L 78.8947,84.5355\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5\" d=\"M 61.9303,88.5271 L 75.901,88.5271\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7\" d=\"M 159.849,103.636 L 178.214,95.8213\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 178.214,95.8213 L 184.747,100.735\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8\" d=\"M 184.747,100.735 L 191.281,105.65\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 197.828,108.428 L 205.569,105.134\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 205.569,105.134 L 213.31,101.84\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 196.266,104.755 L 204.006,101.461\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9\" d=\"M 204.006,101.461 L 211.747,98.1671\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 279.444,108.885 L 274.21,103.215\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 274.21,103.215 L 268.977,97.5454\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 276.511,111.592 L 271.277,105.922\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10\" d=\"M 271.277,105.922 L 266.044,100.253\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11\" d=\"M 277.977,110.238 L 297.446,105.848\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 297.446,105.848 L 303.379,86.7921\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12\" d=\"M 302.147,104.176 L 306.3,90.837\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-17\" d=\"M 297.446,105.848 L 310.983,120.514\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13\" d=\"M 303.379,86.7921 L 322.848,82.4018\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-14\" d=\"M 322.848,82.4018 L 336.385,97.0675\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-14\" d=\"M 321.945,87.309 L 331.421,97.575\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-15\" d=\"M 336.385,97.0675 L 330.452,116.124\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-16\" d=\"M 330.452,116.124 L 310.983,120.514\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-16\" d=\"M 326.654,112.888 L 313.025,115.961\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 413.805,101.82 L 405.268,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-18\" d=\"M 405.268,101.82 L 396.73,101.82\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-19\" d=\"M 546.244,132.281 L 561.898,119.901\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-20\" d=\"M 561.898,119.901 L 560.694,111.69\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-20\" d=\"M 560.694,111.69 L 559.491,103.48\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-21\" d=\"M 556.12,99.0084 L 548.287,95.8975\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-21\" d=\"M 548.287,95.8975 L 540.455,92.7866\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-22\" d=\"M 561.886,97.8733 L 568.272,92.8232\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-22\" d=\"M 568.272,92.8232 L 574.658,87.7731\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 576.632,87.4837 L 575.429,79.2733\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 575.429,79.2733 L 574.225,71.0629\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 572.683,88.0626 L 571.479,79.8522\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-23\" d=\"M 571.479,79.8522 L 570.276,71.6418\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-24\" d=\"M 574.658,87.7731 L 593.206,95.1399\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-25\" d=\"M 593.206,95.1399 L 608.861,82.7596\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-31\" d=\"M 593.206,95.1399 L 594.41,103.35\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-31\" d=\"M 594.41,103.35 L 595.613,111.561\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-26\" d=\"M 608.861,82.7596 L 627.409,90.1264\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-26\" d=\"M 613.116,80.1549 L 626.1,85.3117\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-39\" d=\"M 608.861,82.7596 L 605.966,63.0125\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-27\" d=\"M 627.409,90.1264 L 638.858,81.0725\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-28\" d=\"M 642.576,74.4198 L 640.169,57.999\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-28\" d=\"M 638.266,72.5356 L 636.581,61.041\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-29\" d=\"M 640.169,57.999 L 621.62,50.6322\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-30\" d=\"M 621.62,50.6322 L 605.966,63.0125\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-30\" d=\"M 621.748,55.6201 L 610.79,64.2863\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-32\" d=\"M 593.218,117.167 L 586.832,122.217\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-32\" d=\"M 586.832,122.217 L 580.447,127.267\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-33\" d=\"M 598.984,116.032 L 606.817,119.143\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-33\" d=\"M 606.817,119.143 L 614.65,122.254\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-34\" d=\"M 614.65,122.254 L 617.544,142.001\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-34\" d=\"M 619.033,124.637 L 621.059,138.46\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-40\" d=\"M 614.65,122.254 L 630.304,109.874\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-35\" d=\"M 617.544,142.001 L 636.093,149.368\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-36\" d=\"M 636.093,149.368 L 651.747,136.987\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-36\" d=\"M 635.965,144.38 L 646.923,135.714\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-37\" d=\"M 651.747,136.987 L 648.853,117.24\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-38\" d=\"M 648.853,117.24 L 630.304,109.874\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-38\" d=\"M 644.597,119.845 L 631.613,114.688\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"106.39\" y=\"102.818\"><tspan>OH</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"middle\" x=\"194.164\" y=\"108.816\"><tspan>N</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"end\" x=\"266.882\" y=\"96.5707\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"start\" x=\"414.537\" y=\"102.917\"><tspan>NH</tspan><tspan style=\"baseline-shift:sub;font-size:4.5px;\">2</tspan><tspan/></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"middle\" x=\"559.003\" y=\"101.151\"><tspan>N</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000\" text-anchor=\"start\" x=\"569.322\" y=\"69.0239\"><tspan>O</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"start\" x=\"635.295\" y=\"78.744\"><tspan>C:10</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF\" text-anchor=\"middle\" x=\"596.101\" y=\"115.885\"><tspan>N</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"90.5369\" y=\"106.197\"><tspan>16</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"82.221\" y=\"126.362\"><tspan>17</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"55.6102\" y=\"126.362\"><tspan>18</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"38.9784\" y=\"103.317\"><tspan>19</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"55.6102\" y=\"80.271\"><tspan>20</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"82.221\" y=\"80.271\"><tspan>21</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"162.454\" y=\"111.254\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"179.019\" y=\"90.7143\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"192.957\" y=\"119.221\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"217.845\" y=\"105.499\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"275.011\" y=\"121.263\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"257.672\" y=\"89.7368\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"290.678\" y=\"100.012\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"298.867\" y=\"83.4004\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"324.826\" y=\"77.5466\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"346.12\" y=\"96.3692\"><tspan>11</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"337.221\" y=\"124.953\"><tspan>12</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"309.006\" y=\"128.363\"><tspan>13</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"416.689\" y=\"93.3376\"><tspan>14</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"396.73\" y=\"109.969\"><tspan>15</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"550.37\" y=\"138.996\"><tspan>1</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"568.081\" y=\"123.853\"><tspan>2</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"551.176\" y=\"107.84\"><tspan>3</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"537.999\" y=\"100.466\"><tspan>4</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"565.383\" y=\"85.5866\"><tspan>5</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"570.316\" y=\"59.6493\"><tspan>6</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"591.759\" y=\"86.7632\"><tspan>7</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"610.308\" y=\"94.13\"><tspan>8</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"628.374\" y=\"98.2057\"><tspan>9</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"649.246\" y=\"81.6986\"><tspan>10</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"647.996\" y=\"53.3057\"><tspan>11</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"620.655\" y=\"45.5467\"><tspan>12</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"596.692\" y=\"60.826\"><tspan>13</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"589.918\" y=\"113.928\"><tspan>14</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"577.991\" y=\"134.947\"><tspan>15</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"606.823\" y=\"129.941\"><tspan>16</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"609.717\" y=\"149.688\"><tspan>17</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"637.058\" y=\"157.447\"><tspan>18</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"661.022\" y=\"142.168\"><tspan>19</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"656.68\" y=\"112.547\"><tspan>20</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:9px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"629.821\" y=\"108.079\"><tspan>21</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:24px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"134.117\" y=\"103.6\"><tspan>+</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:24px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"238.261\" y=\"103.6\"><tspan>+</tspan></text>\n",
"<text dominant-baseline=\"central\" style=\"font-size:24px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#000000\" text-anchor=\"middle\" x=\"366.558\" y=\"103.6\"><tspan>+</tspan></text>\n",
"<path d=\"M 454.848,100 L 508.07,100\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 508.07,100 L 505.765,98.6695\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path d=\"M 508.07,100 L 505.765,101.331\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Confidence: 0.70\n"
]
}
],
"source": [
"for out in outputs:\n",
" display(SVG(draw_chemical_reaction(out['mapped_rxn'], highlightByReactant=True)))\n",
" print(f'Confidence: {out[\"confidence\"]:.2f}')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.7"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment