diff --git a/.buildinfo b/.buildinfo index 6d2b9d54..f5e8c792 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 0eb54b0ccdc3b6a4f1927e3711242c2a +config: 573f68133def913d49454e1870db5889 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_images/25625797232a27f542077b750655915d865723fcc6c33196ec8304f1c6810542.png b/_images/25625797232a27f542077b750655915d865723fcc6c33196ec8304f1c6810542.png deleted file mode 100644 index 1d77ef37..00000000 Binary files a/_images/25625797232a27f542077b750655915d865723fcc6c33196ec8304f1c6810542.png and /dev/null differ diff --git a/_images/945ddf2113edede5fe534881338f5d02ff8874492377d263c66d8a987c08fddf.png b/_images/945ddf2113edede5fe534881338f5d02ff8874492377d263c66d8a987c08fddf.png new file mode 100644 index 00000000..2d033129 Binary files /dev/null and b/_images/945ddf2113edede5fe534881338f5d02ff8874492377d263c66d8a987c08fddf.png differ diff --git a/_images/gsheets_citations_howitworks.jpg b/_images/gsheets_citations_howitworks.jpg new file mode 100644 index 00000000..4a041ec2 Binary files /dev/null and b/_images/gsheets_citations_howitworks.jpg differ diff --git a/_sources/manipulations/gsheets_citations.md b/_sources/manipulations/gsheets_citations.md index 360a717d..44fa4174 100644 --- a/_sources/manipulations/gsheets_citations.md +++ b/_sources/manipulations/gsheets_citations.md @@ -18,13 +18,11 @@ ``` ## Summary -In many research contexts access to the literature is very important and dealing with its metadata can be time-consuming. +In many research contexts, access to the literature is very important and dealing with its metadata can be time-consuming. The advent of the [Digital Object Identifier](https://www.doi.org/) (DOI) has made it much easier to deal with -citation data for many different types of digital resources. Currently, twelve -[registration agencies](https://www.doi.org/the-community/existing-registration-agencies/) are 'minting' (creating) -DOI's and each has a different scope and size. From a research literature perspective -[CrossRef](https://www.crossref.org/) is the agency that holds DOI's (now -[~150,000,000](https://www.crossref.org/06members/53status.html)) and that is a lot of data to sort through. +citation data for many different types of digital resources. Currently, twelve [registration agencies](https://www.doi.org/the-community/existing-registration-agencies/) are +'minting' (creating) DOI's and each has a different scope and size. From a research literature perspective +[CrossRef](https://www.crossref.org/) is the agency that holds DOI's (now [~150,000,000](https://www.crossref.org/06members/53status.html)) and that is a lot of data to sort through. This tutorial therefore focuses on understanding how you can pull in citation metadata from the CrossRef API, and load it in a Google Sheet, to make it easy (for instance) to create a citation string for a paper. An example of a @@ -33,20 +31,76 @@ and you can make a copy and play around with it. Exploring what it takes to put way to understand the CrossRef schema, the structure of how the data is provided. ## 1 Accessing the CrossRef API -The CrossRef API makes available metadata about journal papers, books and other publication types. Detailed documentation +The CrossRef API makes metadata available about journal papers, books and other publication types. Detailed documentation of the API is available at main URL endpoint, https://api.crossref.org. This is too big to go over in this tutorial, so we will just be focusing on the 'works' endpoint (a partial URL that you can add a DOI to) - in this case -https://api.crossref.org/works/. If you append a DOI to the end of this partial URL and put it in a browser you will -get a JSON file returned (see below). The JSON file is formatted using the [JSONView](https://jsonview.com/) +https://api.crossref.org/works/. If you append a DOI to this partial URL and put it in a browser you will +get a JSON file returned (see below). The JSON file in the image is formatted using the [JSONView](https://jsonview.com/) plugin for Firefox and all the fields have been collapsed to make it easy to see the whole file at http://api.crossref.org/works/10.1515/pac-2018-1010. ![fig](../images/gsheets_citations_crossref_api.jpg) - Caption: JSON output from the Crossref API -The data we need to extra to be able to criteria a citation for this paper is spread throughoout different parts of the -JSON file, so we need to know how to get to these metadata. You can think about accessing information in the JSON file -by using the concept of 'paths' to the data elements. This is the same as the path to a file on your computer, going -down into subdirectories until you reach the file. In this case data we need are at the following paths and +The data we need to extract to be able to create a citation for this paper is spread throughoout different parts of the +JSON file, so we need to know how to get to these metadata elements. You can think about accessing information in the +JSON file by using the concept of 'paths' to the data elements (just like accessing files in a computer). In this case +the data we need are at the following paths: + +- **title**: /message/title +- **author last names**: /message/author/given (for each author) +- **author first names**: /message/author/family (for each author) +- **journal**: /message/container-title + (alternatively if you want the journal abbreviation you can use /message/short-container-title if available) +- **year**: /message/published/date-parts (index 0 in the JSON array) +- **volume**: /message/volume +- **issue**: /message/issue +- **pages**: /message/page (yes singular) + +```{note} +Looking at this you will see that while the data is available, it is not as logically organized as it could be and +there are some formatting issues (for instance the abstract). This is a consequence of both the CrossRef schema for +the JSON output, and the approach to populating the metadata of the publisher. With the focus on open citations in +the research community I hope that this will soon be addressed. +``` + +## 2 Getting and formatting the citation string +In order to create our citation string on the Google sheet we need to implement a call to the CrossRef URL, for the +paper retrieval of these metadata fields and some organization and formating. This is implemented in the Google sheet +in each column, and much of the mechanics is hidden in rows between the showing data. This is all explained in the +'How it works' sheet. + +![fig](../images/gsheets_citations_howitworks.jpg) +Caption: The Google Sheets 'How It Works' sheet + +Let's walk through the code. The Crossref path is in cell B2 and the DOI is added to cell B3. The full path is +created in the Google Sheet function 'CONCAT'. Here is an example call to get the data. + +`=ImportJSON(CONCATENATE('How it works'!$B$2,B3),"/message/title","noInherit,noTruncate,rawHeaders")` + +The Google Sheet 'ImportJSON' addon [function](https://workspace.google.com/marketplace/app/importjson_import_json_data_into_google/782573720506) +takes a URL (first variable) and a path to data (second variable) and optionally +so processing options (third variable). When the Google sheet processes this function the data at the path is put into +the cell below the function. This works easily for the title, journal name, volume, issue and pages. + +In order to process the authors and the year we have to do a little more. For the authors, the data is a JSON array +and thus has to be organized to subsequently be able to be put back together as a string. This is done by loading the +data (up to eight authors) into columns B and C, concatenating these in column D and finally concatenating non-empty +cells in B15. This can be expanded to more authors by adding more space for authors and updating the code to cover +all the author data. + +For the year, as there is no 'year' field, we need to take the publised data parts (year, month, day) as a comma +separated string (B19) and then get the first four characters of that string to get the year. It would be easier if the +'path' could point to specific elements in the array (i.e. /message/published/date-parts/0), but this does not work. + +Finally, our goal of a citation string is implemented in B27, by concatenating the fields above with some extra +formatting. In the 'Worksheet' sheet all the mechanics are hidden and all that is needed is to add a DOI of a +paper in each/any of B2, C2, or D2 (you can copy any of the B,C or D columns across to other columns to process) +metadata for more files. + +## 3 Conclusion +In this brief tutorial you can see how Google Sheets and the ImportJSON addon allows you to process any API data. +Given this example, you can create spreadsheet views fo API data and even integrate data from multiple sources. +The only thing to be aware of is that the more calls to APIs that you make in one sheet the slower the over all +sheet will work, but this of course depends on your access speed, so you may need to optimize how you import the data. diff --git a/datasources/cas_commonchem.html b/datasources/cas_commonchem.html index 862101a2..ccab09c7 100644 --- a/datasources/cas_commonchem.html +++ b/datasources/cas_commonchem.html @@ -1466,193 +1466,10 @@
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
-Cell In[37], line 6
- 4 n_detail_data = []
+Cell In[37], line 7
5 for casrn in n_casrn_list:
-----> 6 n_detail_data.append(requests.get(detail_base_url + "cas_rn=" + casrn).json())
- 7 sleep(1) # !! add a delay between API calls
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/api.py:73, in get(url, params, **kwargs)
- 62 def get(url, params=None, **kwargs):
- 63 r"""Sends a GET request.
- 64
- 65 :param url: URL for the new :class:`Request` object.
- (...)
- 70 :rtype: requests.Response
- 71 """
----> 73 return request("get", url, params=params, **kwargs)
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/api.py:59, in request(method, url, **kwargs)
- 55 # By using the 'with' statement we are sure the session is closed, thus we
- 56 # avoid leaving sockets open which can trigger a ResourceWarning in some
- 57 # cases, and look like a memory leak in others.
- 58 with sessions.Session() as session:
----> 59 return session.request(method=method, url=url, **kwargs)
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/sessions.py:589, in Session.request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
- 584 send_kwargs = {
- 585 "timeout": timeout,
- 586 "allow_redirects": allow_redirects,
- 587 }
- 588 send_kwargs.update(settings)
---> 589 resp = self.send(prep, **send_kwargs)
- 591 return resp
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/sessions.py:703, in Session.send(self, request, **kwargs)
- 700 start = preferred_clock()
- 702 # Send the request
---> 703 r = adapter.send(request, **kwargs)
- 705 # Total elapsed time of the request (approximately)
- 706 elapsed = preferred_clock() - start
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/adapters.py:486, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
- 483 timeout = TimeoutSauce(connect=timeout, read=timeout)
- 485 try:
---> 486 resp = conn.urlopen(
- 487 method=request.method,
- 488 url=url,
- 489 body=request.body,
- 490 headers=request.headers,
- 491 redirect=False,
- 492 assert_same_host=False,
- 493 preload_content=False,
- 494 decode_content=False,
- 495 retries=self.max_retries,
- 496 timeout=timeout,
- 497 chunked=chunked,
- 498 )
- 500 except (ProtocolError, OSError) as err:
- 501 raise ConnectionError(err, request=request)
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:790, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)
- 787 response_conn = conn if not release_conn else None
- 789 # Make the request on the HTTPConnection object
---> 790 response = self._make_request(
- 791 conn,
- 792 method,
- 793 url,
- 794 timeout=timeout_obj,
- 795 body=body,
- 796 headers=headers,
- 797 chunked=chunked,
- 798 retries=retries,
- 799 response_conn=response_conn,
- 800 preload_content=preload_content,
- 801 decode_content=decode_content,
- 802 **response_kw,
- 803 )
- 805 # Everything went great!
- 806 clean_exit = True
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:467, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)
- 464 try:
- 465 # Trigger any extra validation we need to do.
- 466 try:
---> 467 self._validate_conn(conn)
- 468 except (SocketTimeout, BaseSSLError) as e:
- 469 self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:1096, in HTTPSConnectionPool._validate_conn(self, conn)
- 1094 # Force connect early to allow us to validate the connection.
- 1095 if conn.is_closed:
--> 1096 conn.connect()
- 1098 if not conn.is_verified:
- 1099 warnings.warn(
- 1100 (
- 1101 f"Unverified HTTPS request is being made to host '{conn.host}'. "
- (...)
- 1106 InsecureRequestWarning,
- 1107 )
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connection.py:642, in HTTPSConnection.connect(self)
- 633 if is_time_off:
- 634 warnings.warn(
- 635 (
- 636 f"System time is way off (before {RECENT_DATE}). This will probably "
- (...)
- 639 SystemTimeWarning,
- 640 )
---> 642 sock_and_verified = _ssl_wrap_socket_and_match_hostname(
- 643 sock=sock,
- 644 cert_reqs=self.cert_reqs,
- 645 ssl_version=self.ssl_version,
- 646 ssl_minimum_version=self.ssl_minimum_version,
- 647 ssl_maximum_version=self.ssl_maximum_version,
- 648 ca_certs=self.ca_certs,
- 649 ca_cert_dir=self.ca_cert_dir,
- 650 ca_cert_data=self.ca_cert_data,
- 651 cert_file=self.cert_file,
- 652 key_file=self.key_file,
- 653 key_password=self.key_password,
- 654 server_hostname=server_hostname,
- 655 ssl_context=self.ssl_context,
- 656 tls_in_tls=tls_in_tls,
- 657 assert_hostname=self.assert_hostname,
- 658 assert_fingerprint=self.assert_fingerprint,
- 659 )
- 660 self.sock = sock_and_verified.socket
- 661 self.is_verified = sock_and_verified.is_verified
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connection.py:782, in _ssl_wrap_socket_and_match_hostname(sock, cert_reqs, ssl_version, ssl_minimum_version, ssl_maximum_version, cert_file, key_file, key_password, ca_certs, ca_cert_dir, ca_cert_data, assert_hostname, assert_fingerprint, server_hostname, ssl_context, tls_in_tls)
- 779 if is_ipaddress(normalized):
- 780 server_hostname = normalized
---> 782 ssl_sock = ssl_wrap_socket(
- 783 sock=sock,
- 784 keyfile=key_file,
- 785 certfile=cert_file,
- 786 key_password=key_password,
- 787 ca_certs=ca_certs,
- 788 ca_cert_dir=ca_cert_dir,
- 789 ca_cert_data=ca_cert_data,
- 790 server_hostname=server_hostname,
- 791 ssl_context=context,
- 792 tls_in_tls=tls_in_tls,
- 793 )
- 795 try:
- 796 if assert_fingerprint:
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/util/ssl_.py:470, in ssl_wrap_socket(sock, keyfile, certfile, cert_reqs, ca_certs, server_hostname, ssl_version, ciphers, ssl_context, ca_cert_dir, key_password, ca_cert_data, tls_in_tls)
- 467 except NotImplementedError: # Defensive: in CI, we always have set_alpn_protocols
- 468 pass
---> 470 ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname)
- 471 return ssl_sock
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/util/ssl_.py:514, in _ssl_wrap_socket_impl(sock, ssl_context, tls_in_tls, server_hostname)
- 511 SSLTransport._validate_ssl_context_for_tls_in_tls(ssl_context)
- 512 return SSLTransport(sock, ssl_context, server_hostname)
---> 514 return ssl_context.wrap_socket(sock, server_hostname=server_hostname)
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/ssl.py:517, in SSLContext.wrap_socket(self, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, session)
- 511 def wrap_socket(self, sock, server_side=False,
- 512 do_handshake_on_connect=True,
- 513 suppress_ragged_eofs=True,
- 514 server_hostname=None, session=None):
- 515 # SSLSocket class handles server_hostname encoding before it calls
- 516 # ctx._wrap_socket()
---> 517 return self.sslsocket_class._create(
- 518 sock=sock,
- 519 server_side=server_side,
- 520 do_handshake_on_connect=do_handshake_on_connect,
- 521 suppress_ragged_eofs=suppress_ragged_eofs,
- 522 server_hostname=server_hostname,
- 523 context=self,
- 524 session=session
- 525 )
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/ssl.py:1104, in SSLSocket._create(cls, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, context, session)
- 1101 if timeout == 0.0:
- 1102 # non-blocking
- 1103 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
--> 1104 self.do_handshake()
- 1105 except:
- 1106 try:
-
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/ssl.py:1382, in SSLSocket.do_handshake(self, block)
- 1380 if timeout == 0.0 and block:
- 1381 self.settimeout(None)
--> 1382 self._sslobj.do_handshake()
- 1383 finally:
- 1384 self.settimeout(timeout)
+ 6 n_detail_data.append(requests.get(detail_base_url + "cas_rn=" + casrn).json())
+----> 7 sleep(1) # !! add a delay between API calls
KeyboardInterrupt:
{'term': {'id': '01093', 'doi': '10.1351/goldbook.C01093', 'code': 'C01093', 'status': 'current', 'longtitle': 'IUPAC Gold Book - cis-trans isomers', 'title': '<i>cis</i>-<i>trans</i> isomers', 'termversion': '2.3.3', 'lastupdated': '2014-02-24', 'definitions': [{'id': '1', 'text': 'Stereoisomeric olefins or cycloalkanes (or hetero-analogues) which differ in the positions of atoms (or groups) relative to a reference plane: in the cis-isomer the atoms are on the same side, in the trans-isomer they are on opposite sides. [image: molecular structures showing cis/trans isomerism]', 'chemicals': [{'type': 'chemimage', 'title': 'molecular structures showing cis/trans isomerism', 'file': 'https://goldbook.iupac.org/img/inline/C01093.png'}], 'links': [{'title': 'Stereoisomeric', 'type': 'internal', 'url': 'https://goldbook.iupac.org/terms/view/S05983'}, {'title': 'olefins', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/O04281'}, {'title': 'cycloalkanes', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/C01497'}, {'title': 'isomer', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/I03289'}, {'title': 'trans', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/C01092'}], 'sources': ["PAC, 1996, 68, 2193. 'Basic terminology of stereochemistry (IUPAC Recommendations 1996)' on page 2204 (https://doi.org/10.1351/pac199668122193)"]}], 'referencedin': [{'title': 'Wikipedia - Cis-trans izomerie (cs)', 'url': 'https://cs.wikipedia.org/wiki/Cis-trans_izomerie'}, {'title': 'Wikipedia - Cis-trans izoméria (sk)', 'url': 'https://sk.wikipedia.org/wiki/Cis-trans_izoméria'}, {'title': 'Wikipedia - Cis–trans isomerism (en)', 'url': 'https://en.wikipedia.org/wiki/Cis–trans_isomerism'}, {'title': 'Wikipedia - Isomeria (it)', 'url': 'https://it.wikipedia.org/wiki/Isomeria'}, {'title': 'Wikipedia - Isomeria cis-trans (it)', 'url': 'https://it.wikipedia.org/wiki/Isomeria_cis-trans'}, {'title': 'Wikipedia - Isomeria geométrica (pt)', 'url': 'https://pt.wikipedia.org/wiki/Isomeria_geométrica'}, {'title': 'Wikipedia - Isomería cis-trans (es)', 'url': 'https://es.wikipedia.org/wiki/Isomería_cis-trans'}, {'title': 'Wikipedia - Talk:Isomer (en)', 'url': 'https://en.wikipedia.org/wiki/Talk:Isomer'}, {'title': 'Wikipedia - Talk:Stereoisomerism (en)', 'url': 'https://en.wikipedia.org/wiki/Talk:Stereoisomerism'}, {'title': 'Wikipedia - Цис-транс изомеризъм (bg)', 'url': 'https://bg.wikipedia.org/wiki/Цис-транс_изомеризъм'}, {'title': 'Wikipedia - Цис–транс ізомерія (uk)', 'url': 'https://uk.wikipedia.org/wiki/Цис–транс_ізомерія'}, {'title': 'Wikipedia - ایزومری سیس–ترانس (fa)', 'url': 'https://fa.wikipedia.org/wiki/ایزومری_سیس–ترانس'}, {'title': 'Wikipedia - 顺反异构 (zh)', 'url': 'https://zh.wikipedia.org/wiki/顺反异构'}], 'links': {'html': 'https://goldbook.iupac.org/terms/view/C01093/html', 'json': 'https://goldbook.iupac.org/terms/view/C01093/json', 'xml': 'https://goldbook.iupac.org/terms/view/C01093/xml', 'plain': 'https://goldbook.iupac.org/terms/view/C01093/plain', 'pdf': 'https://goldbook.iupac.org/terms/view/C01093/pdf'}, 'citation': "Citation: '<i>cis</i>-<i>trans</i> isomers' in IUPAC Compendium of Chemical Terminology, 3rd ed. International Union of Pure and Applied Chemistry; 2006. Online version 3.0.1, 2019. 10.1351/goldbook.C01093", 'license': 'The IUPAC Gold Book is licensed under Creative Commons Attribution-ShareAlike CC BY-SA 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/) for individual terms.', 'collection': 'If you are interested in licensing the Gold Book for commercial use, please contact the IUPAC Executive Director at executivedirector@iupac.org .', 'disclaimer': 'The International Union of Pure and Applied Chemistry (IUPAC) is continuously reviewing and, where needed, updating terms in the Compendium of Chemical Terminology (the IUPAC Gold Book). Users of these terms are encouraged to include the version of a term with its use and to check regularly for updates to term definitions that you are using.', 'accessed': '2024-03-15T20:24:43+00:00'}}
+{'term': {'id': '01093', 'doi': '10.1351/goldbook.C01093', 'code': 'C01093', 'status': 'current', 'longtitle': 'IUPAC Gold Book - cis-trans isomers', 'title': '<i>cis</i>-<i>trans</i> isomers', 'termversion': '2.3.3', 'lastupdated': '2014-02-24', 'definitions': [{'id': '1', 'text': 'Stereoisomeric olefins or cycloalkanes (or hetero-analogues) which differ in the positions of atoms (or groups) relative to a reference plane: in the cis-isomer the atoms are on the same side, in the trans-isomer they are on opposite sides. [image: molecular structures showing cis/trans isomerism]', 'chemicals': [{'type': 'chemimage', 'title': 'molecular structures showing cis/trans isomerism', 'file': 'https://goldbook.iupac.org/img/inline/C01093.png'}], 'links': [{'title': 'Stereoisomeric', 'type': 'internal', 'url': 'https://goldbook.iupac.org/terms/view/S05983'}, {'title': 'olefins', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/O04281'}, {'title': 'cycloalkanes', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/C01497'}, {'title': 'isomer', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/I03289'}, {'title': 'trans', 'type': 'goldify', 'url': 'https://goldbook.iupac.org/terms/view/C01092'}], 'sources': ["PAC, 1996, 68, 2193. 'Basic terminology of stereochemistry (IUPAC Recommendations 1996)' on page 2204 (https://doi.org/10.1351/pac199668122193)"]}], 'referencedin': [{'title': 'Wikipedia - Cis-trans izomerie (cs)', 'url': 'https://cs.wikipedia.org/wiki/Cis-trans_izomerie'}, {'title': 'Wikipedia - Cis-trans izoméria (sk)', 'url': 'https://sk.wikipedia.org/wiki/Cis-trans_izoméria'}, {'title': 'Wikipedia - Cis–trans isomerism (en)', 'url': 'https://en.wikipedia.org/wiki/Cis–trans_isomerism'}, {'title': 'Wikipedia - Isomeria (it)', 'url': 'https://it.wikipedia.org/wiki/Isomeria'}, {'title': 'Wikipedia - Isomeria cis-trans (it)', 'url': 'https://it.wikipedia.org/wiki/Isomeria_cis-trans'}, {'title': 'Wikipedia - Isomeria geométrica (pt)', 'url': 'https://pt.wikipedia.org/wiki/Isomeria_geométrica'}, {'title': 'Wikipedia - Isomería cis-trans (es)', 'url': 'https://es.wikipedia.org/wiki/Isomería_cis-trans'}, {'title': 'Wikipedia - Talk:Isomer (en)', 'url': 'https://en.wikipedia.org/wiki/Talk:Isomer'}, {'title': 'Wikipedia - Talk:Stereoisomerism (en)', 'url': 'https://en.wikipedia.org/wiki/Talk:Stereoisomerism'}, {'title': 'Wikipedia - Цис-транс изомеризъм (bg)', 'url': 'https://bg.wikipedia.org/wiki/Цис-транс_изомеризъм'}, {'title': 'Wikipedia - Цис–транс ізомерія (uk)', 'url': 'https://uk.wikipedia.org/wiki/Цис–транс_ізомерія'}, {'title': 'Wikipedia - ایزومری سیس–ترانس (fa)', 'url': 'https://fa.wikipedia.org/wiki/ایزومری_سیس–ترانس'}, {'title': 'Wikipedia - 顺反异构 (zh)', 'url': 'https://zh.wikipedia.org/wiki/顺反异构'}], 'links': {'html': 'https://goldbook.iupac.org/terms/view/C01093/html', 'json': 'https://goldbook.iupac.org/terms/view/C01093/json', 'xml': 'https://goldbook.iupac.org/terms/view/C01093/xml', 'plain': 'https://goldbook.iupac.org/terms/view/C01093/plain', 'pdf': 'https://goldbook.iupac.org/terms/view/C01093/pdf'}, 'citation': "Citation: '<i>cis</i>-<i>trans</i> isomers' in IUPAC Compendium of Chemical Terminology, 3rd ed. International Union of Pure and Applied Chemistry; 2006. Online version 3.0.1, 2019. 10.1351/goldbook.C01093", 'license': 'The IUPAC Gold Book is licensed under Creative Commons Attribution-ShareAlike CC BY-SA 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/) for individual terms.', 'collection': 'If you are interested in licensing the Gold Book for commercial use, please contact the IUPAC Executive Director at executivedirector@iupac.org .', 'disclaimer': 'The International Union of Pure and Applied Chemistry (IUPAC) is continuously reviewing and, where needed, updating terms in the Compendium of Chemical Terminology (the IUPAC Gold Book). Users of these terms are encouraged to include the version of a term with its use and to check regularly for updates to term definitions that you are using.', 'accessed': '2024-06-14T19:24:27+00:00'}}
XLogP : 1.200
-TPSA : 63.6
+
TPSA : 63.6
#-- CID 9581
-
PSEUDOEPHEDRINE HYDROCHLORIDE
+PSEUDOEPHEDRINE HYDROCHLORIDE
Pseudoephedrine Hcl
345-78-8
Rhinalair
@@ -688,51 +686,26 @@ 2. Getting chemical names for a given chemical structure2. Getting chemical names for a given chemical structure
Aleve PM
+#-- CID 77098502
+Aleve PM
Naproxen sodium/DPH combination
Diphenhydramine HCl / naproxen sodium
BAY98-7111
diff --git a/datasources/pubchem_pugrest3.html b/datasources/pubchem_pugrest3.html
index 401944f4..bada11f5 100644
--- a/datasources/pubchem_pugrest3.html
+++ b/datasources/pubchem_pugrest3.html
@@ -711,8 +711,8 @@ 3. Performing 2-D and 3-D similarity search
-562
-['155903259', '163421961', '162396458', '162396452', '162396372', '167518234', '167331698', '167203608', '167203580', '166157194', '166149071', '163362001', '163361997', '163283284', '163283243', '163283236', '162712498', '162712489', '162712482', '162712462', '162712460', '162685338', '162396459', '162396453', '162396442', '169436363', '169291133', '169283881', '169283867', '169283836', '169240701', '169240697', '169240696', '169194427', '169194258', '169194236', '169194204', '169194186', '169194140', '169194124', '169194114', '169194030', '169193968', '169193963', '169193839', '169193754', '169193751', '169193733', '169193552', '169193547', '169193357', '169193261', '169193197', '169122295', '169084224', '168942044', '168941969', '168878798', '168870655', '168750593', '168750590', '168750586', '168750579', '168301133', '168291677', '168290284', '168142213', '168142167', '168142166', '168142152', '168142141', '167579537', '167521394', '167518190', '167482317', '167482314', '167482295', '167482292', '167482283', '167482261', '167482240', '167482232', '167482218', '167482213', '167482212', '167482205', '167482178', '167482167', '167482106', '167482083', '167482074', '167482043', '167482039', '167482005', '167481999', '167481972', '167481944', '167481929', '167481927', '167481924', '167481917', '167481908', '167481900', '167481880', '167481876', '167481860', '167481821', '167481808', '167481747', '167481675', '167481663', '167481640', '167481637', '167481608', '167481575', '167481566', '167481565', '167481557', '167481547', '167481542', '167481535', '167481480', '167481474', '167481462', '167481430', '167481400', '167481398', '167481386', '167481379', '167481374', '167481364', '167481356', '167481349', '167481327', '167481324', '167481309', '167481266', '167481257', '167481250', '167481234', '167481232', '167481210', '167481202', '167481201', '167481199', '167481158', '167481130', '167481103', '167481072', '167481037', '167481034', '167481033', '167481005', '167480997', '167480975', '167338943', '167338917', '167338914', '167338850', '167338845', '167331639', '167331630', '167331612', '167331610', '167251496', '167229685', '167207061', '167206807', '167206599', '167206598', '167206597', '167203581', '167094341', '167094334', '167094316', '167094315', '167065160', '167065154', '167065082', '167065080', '166893351', '166893348', '166893276', '166893275', '166893274', '166893182', '166891665', '166891596', '166891547', '166891533', '166840731', '166840466', '166840457', '166840392', '166840326', '166537627', '166494843', '166494662', '166157269', '166157215', '166157205', '166157065', '166157057', '166157043', '166157023', '166157017', '166156836', '166156828', '166156664', '166149137', '166149094', '166149089', '166149077', '166149074', '166149062', '165179488', '165179486', '165179485', '165179472', '164971185', '164850071', '164785132', '164766041', '164766036', '164701821', '164701819', '164701818', '164701817', '164701816', '164701815', '164701813', '164701812', '164701807', '164701805', '164701800', '164701794', '164701789', '164701777', '164701776', '164701775', '164701773', '164701772', '164701766', '164701760', '164701758', '164701757', '164701749', '164701748', '164701743', '164701742', '164701741', '164701738', '164701736', '164701733', '164159966', '164158215', '164040179', '163941851', '163362031', '163362029', '163362026', '163362016', '163362014', '163362009', '163362008', '163362005', '163361998', '163361849', '163283407', '163283390', '163283387', '163283371', '163283370', '163283343', '163283330', '163283322', '163283239', '163283238', '162712471', '162479130', '162478807', '162396461', '162396460', '162396450', '157010397', '170701858', '170701854', '170701848', '170701844', '170701836', '170701834', '170701828', '170631745', '170631680', '170631565', '170631558', '170552068', '170552067', '170404012', '170203998', '170168021', '170167936', '170167675', '170167521', '170167453', '170167108', '170167024', '170166968', '170166912', '170166889', '170166774', '170166597', '170166479', '170166212', '170166207', '170166112', '170165798', '170165698', '170165562', '170165491', '170165489', '170165331', '170164767', '170164691', '170164688', '170164590', '170151866', '170060748', '170060745', '170054800', '170054633', '170053669', '170053627', '170053614', '170053129', '170052975', '170052972', '170038496', '170037247', '170037210', '170036979', '170036943', '170036928', '170036858', '170036848', '170036842', '170036799', '170036541', '170036248', '170036051', '170005512', '169995904', '169995679', '169995678', '169995401', '169995154', '169995153', '169995108', '169994956', '169994895', '169994745', '169994706', '169994705', '169994703', '169994702', '169994701', '169994700', '169989970', '169979540', '169979396', '169966328', '169914913', '169914666', '169914647', '169907978', '169907886', '169878890', '169878631', '169878517', '169878514', '169878513', '169878512', '169878511', '169878455', '169878454', '169878453', '169878452', '169878451', '169878449', '169878448', '169878447', '169878446', '169878445', '169878442', '169878441', '169878439', '169878366', '169878353', '169878352', '169878350', '169878308', '169878307', '169878305', '169878303', '169862040', '169861924', '169861899', '169861643', '169861641', '169861552', '169861547', '169861545', '169861544', '169861410', '169861209', '169861128', '169861127', '169861126', '169861123', '169861122', '169861121', '169861043', '169860882', '169860866', '169860863', '169860855', '169860851', '169816596', '169737661', '169735016', '169734644', '169732236', '169732235', '169707957', '169707956', '169686051', '169686050', '169676887', '169655789', '169655787', '169655747', '169655746', '169655713', '169655677', '169655661', '169655658', '169655654', '169597577', '169595994', '169595991', '169595937', '169595902', '169595900', '169595876', '169595871', '169595627', '169436361', '169240702', '169194348', '169194330', '169194319', '169194293', '169194217', '169193984', '169193967', '169193895', '169193437', '169193396', '169095061', '169084228', '169084221', '169084219', '168993735', '168878799', '168310837', '168310836', '168154285', '168093174', '168010016', '167574478', '167574477', '167482300', '167482299', '167482130', '167481970', '167481950', '167481489', '167481104', '167278770', '167203321', '166986077', '166986067', '166986065', '166986000', '166964913', '166964908', '166964904', '166964903', '166964899', '166964890', '166964888', '166964886', '166964883', '166157157', '166156829', '166149063', '164850290', '164850073', '164701802', '164701798', '163362019', '163341926', '163285815', '163283283', '162712506', '162712490', '162712468', '166642632', '167537951', '167674037', '168476190', '168993728', '169595592', '169595872', '169595897', '169595998', '169655830', '169728040', '169728041', '169728431', '169728432', '169736642', '169736643', '169862121', '169878349', '169914451', '169915447', '169915455', '169915574', '169995311', '170014641', '170036241', '170036499', '170036602', '170052965', '170053029', '170053921', '170080981', '170164555', '170165348', '170165794', '170165926', '170166075', '170167073', '170167420', '170167651', '170167680', '170168510', '170168543', '170200729', '170201013', '170291885']
+568
+['155903259', '162396372', '162396452', '162396453', '162396458', '162396459', '162685338', '162712460', '162712462', '162712482', '162712489', '162712498', '163283236', '163283243', '163283284', '163361997', '163362001', '166149071', '166157194', '167203580', '167203608', '167331698', '167518234', '163421961', '162396450', '162396460', '162396461', '168290284', '162396442', '162712471', '166157023', '166157057', '166157065', '166157205', '167331610', '167331612', '168870655', '157010397', '168291677', '171347857', '171355745', '162478807', '162479130', '163283238', '163283239', '163283322', '163283330', '163283343', '163283370', '163283371', '163283387', '163283390', '163283407', '163361849', '163361998', '163362005', '163362008', '163362009', '163362014', '163362016', '163362026', '163362029', '163362031', '163941851', '164040179', '164158215', '164159966', '164701733', '164701736', '164701738', '164701741', '164701742', '164701743', '164701748', '164701749', '164701757', '164701758', '164701760', '164701766', '164701772', '164701773', '164701775', '164701776', '164701777', '164701789', '164701794', '164701800', '164701805', '164701807', '164701812', '164701813', '164701815', '164701816', '164701817', '164701818', '164701819', '164701821', '164766036', '164766041', '164785132', '164850071', '164971185', '165179472', '165179485', '165179486', '165179488', '166149062', '166149074', '166149077', '166149089', '166149094', '166149137', '166156664', '166156828', '166156836', '166157017', '166157043', '166157215', '166157269', '166494662', '166494843', '166537627', '166840326', '166840392', '166840457', '166840466', '166840731', '166891533', '166891547', '166891596', '166891665', '166893182', '166893274', '166893275', '166893276', '166893348', '166893351', '167065080', '167065082', '167065154', '167065160', '167094315', '167094316', '167094334', '167094341', '167203581', '167206597', '167206598', '167206599', '167206807', '167207061', '167229685', '167251496', '167331630', '167331639', '167338845', '167338850', '167338914', '167338917', '167338943', '167480975', '167480997', '167481005', '167481033', '167481034', '167481037', '167481072', '167481103', '167481130', '167481158', '167481199', '167481201', '167481202', '167481210', '167481232', '167481234', '167481250', '167481257', '167481266', '167481309', '167481324', '167481327', '167481349', '167481356', '167481364', '167481374', '167481379', '167481386', '167481398', '167481400', '167481430', '167481462', '167481474', '167481480', '167481535', '167481542', '167481547', '167481557', '167481565', '167481566', '167481575', '167481608', '167481637', '167481640', '167481663', '167481675', '167481747', '167481808', '167481821', '167481860', '167481876', '167481880', '167481900', '167481908', '167481917', '167481924', '167481927', '167481929', '167481944', '167481972', '167481999', '167482005', '167482039', '167482043', '167482074', '167482083', '167482106', '167482167', '167482178', '167482205', '167482212', '167482213', '167482218', '167482232', '167482240', '167482261', '167482283', '167482292', '167482295', '167482314', '167482317', '167518190', '167521394', '167579537', '168142141', '168142152', '168142166', '168142167', '168142213', '168750579', '168750586', '168750590', '168750593', '168878798', '168941969', '168942044', '169084224', '169122295', '169193197', '169193261', '169193357', '169193547', '169193552', '169193733', '169193751', '169193754', '169193839', '169193963', '169193968', '169194030', '169194114', '169194124', '169194140', '169194186', '169194204', '169194236', '169194258', '169194427', '169240696', '169240697', '169240701', '169283836', '169283867', '169283881', '169291133', '169436363', '170552067', '170552068', '170631558', '170631565', '170631680', '170631745', '170701828', '170701834', '170701836', '170701844', '170701848', '170701854', '170701858', '171108715', '171108717', '163285815', '163341926', '166149063', '166156829', '167278770', '167481104', '167481950', '167481970', '167482299', '167482300', '168010016', '168301133', '168310836', '168310837', '168878799', '169240702', '169436361', '169595627', '169595871', '169595876', '169595900', '169595902', '169595937', '169595991', '169595994', '169597577', '169655654', '169655658', '169655661', '169655677', '169655713', '169655746', '169655747', '169655787', '169655789', '169676887', '169686050', '169686051', '169707956', '169707957', '169732235', '169732236', '169734644', '169735016', '169737661', '169816596', '169860851', '169860855', '169860863', '169860866', '169860882', '169861043', '169861121', '169861122', '169861123', '169861126', '169861127', '169861128', '169861209', '169861410', '169861544', '169861545', '169861547', '169861552', '169861641', '169861643', '169861899', '169861924', '169862040', '169878303', '169878305', '169878307', '169878308', '169878350', '169878352', '169878353', '169878366', '169878439', '169878441', '169878442', '169878445', '169878446', '169878447', '169878448', '169878449', '169878451', '169878452', '169878453', '169878454', '169878455', '169878511', '169878512', '169878513', '169878514', '169878517', '169878631', '169878890', '169907886', '169907978', '169914647', '169914666', '169914913', '169966328', '169979396', '169979540', '169989970', '169994700', '169994701', '169994702', '169994703', '169994705', '169994706', '169994745', '169994895', '169994956', '169995108', '169995153', '169995154', '169995401', '169995678', '169995679', '169995904', '170005512', '170036051', '170036248', '170036541', '170036799', '170036842', '170036848', '170036858', '170036928', '170036943', '170036979', '170037210', '170037247', '170038496', '170052972', '170052975', '170053129', '170053614', '170053627', '170053669', '170054633', '170054800', '170060745', '170060748', '170151866', '170164590', '170164688', '170164691', '170164767', '170165331', '170165489', '170165491', '170165562', '170165698', '170165798', '170166112', '170166207', '170166212', '170166479', '170166597', '170166774', '170166889', '170166912', '170166968', '170167024', '170167108', '170167453', '170167521', '170167675', '170167936', '170168021', '170203998', '170404012', '171379688', '162712468', '162712490', '162712506', '163283283', '163362019', '164701798', '164701802', '164850073', '164850290', '166157157', '166964883', '166964886', '166964888', '166964890', '166964899', '166964903', '166964904', '166964908', '166964913', '166986000', '166986065', '166986067', '166986077', '167203321', '167481489', '167482130', '167574477', '167574478', '168093174', '168154285', '168993735', '169084219', '169084221', '169084228', '169095061', '169193396', '169193437', '169193895', '169193967', '169193984', '169194217', '169194293', '169194319', '169194330', '169194348', '166642632', '167537951', '167674037', '168476190', '168993728', '169595592', '169595872', '169595897', '169595998', '169655830', '169728040', '169728041', '169728431', '169728432', '169736642', '169736643', '169862121', '169878349', '169914451', '169915447', '169915455', '169915574', '169995311', '170014641', '170036241', '170036499', '170036602', '170052965', '170053029', '170053921', '170080981', '170164555', '170165348', '170165794', '170165926', '170166075', '170167073', '170167420', '170167651', '170167680', '170168510', '170168543', '170200729', '170201013', '170291885', '171394959']
@@ -728,8 +728,8 @@ 3. Performing 2-D and 3-D similarity search
-41
-['155903259', '167331698', '166157194', '163362001', '162396459', '169240696', '168301133', '168290284', '167094316', '167094315', '167065082', '164701818', '164701813', '164701812', '164701760', '164701758', '164040179', '163362031', '163362005', '163361849', '170701834', '170404012', '170060748', '169914913', '169878307', '169878303', '169861545', '169861544', '169861123', '169861121', '169860863', '169860851', '169707957', '169707956', '169686051', '169595994', '169240702', '163341926', '163285815', '166642632', '168476190']
+42
+['155903259', '162396459', '163362001', '166157194', '167331698', '168290284', '163361849', '163362005', '163362031', '164040179', '164701758', '164701760', '164701812', '164701813', '164701818', '167065082', '167094315', '167094316', '169240696', '170701834', '163285815', '163341926', '168301133', '169240702', '169595994', '169686051', '169707956', '169707957', '169860851', '169860863', '169861121', '169861123', '169861544', '169861545', '169878303', '169878307', '169914913', '170060748', '170404012', '166642632', '168476190', '171394959']
@@ -746,46 +746,47 @@ 3. Performing 2-D and 3-D similarity search
"CID","HeavyAtomCount","MolecularFormula","IsomericSMILES"
155903259,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-167331698,34,"C23H33F2N5O4","CC(C)C[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)F"
-166157194,34,"C23H33F2N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-163362001,35,"C23H32F3N5O4","CC(C)C[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)(F)F"
162396459,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@H](C[C@@H]3CCNC3=O)C#N)C"
-169240696,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)N([C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)C(F)(F)F)C(=O)N)C"
-168301133,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1C(N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+163362001,35,"C23H32F3N5O4","CC(C)C[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)(F)F"
+166157194,34,"C23H33F2N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+167331698,34,"C23H33F2N5O4","CC(C)C[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)F"
168290284,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@H]3CCNC3=O)C#N)C"
-167094316,35,"C23H32F3N5O4","CC1([C@H]2C1CN([C@@H]2C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C"
-167094315,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-167065082,35,"C23H32F3N5O4","CC1(C2C1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-164701818,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@H](C[C@@H]3CCNC3=O)C#N)C"
-164701813,35,"C23H32F3N5O4","CC(C)C[C@@H](C(=O)N1CC2C(C1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)(F)F"
-164701812,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-164701760,36,"C24H34F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](CC(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-164701758,35,"C23H32F3N5O4","CC(C)[C@@H](C(=O)N1CC2C(C1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)CC(F)(F)F"
-164040179,36,"C24H36F3N5O4","C.CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-163362031,36,"C24H34F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CC(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-163362005,35,"C23H32F3N5O4","CC(C)[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)CC(F)(F)F"
163361849,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
+163362005,35,"C23H32F3N5O4","CC(C)[C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)CC(F)(F)F"
+163362031,36,"C24H34F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CC(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+164040179,36,"C24H36F3N5O4","C.CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+164701758,35,"C23H32F3N5O4","CC(C)[C@@H](C(=O)N1CC2C(C1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)CC(F)(F)F"
+164701760,36,"C24H34F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](CC(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+164701812,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+164701813,35,"C23H32F3N5O4","CC(C)C[C@@H](C(=O)N1CC2C(C1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)(F)F"
+164701818,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@H](C[C@@H]3CCNC3=O)C#N)C"
+167065082,35,"C23H32F3N5O4","CC1(C2C1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+167094315,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+167094316,35,"C23H32F3N5O4","CC1([C@H]2C1CN([C@@H]2C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C"
+169240696,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)[C@H](C(C)(C)C)N([C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)C(F)(F)F)C(=O)N)C"
170701834,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NCC[C@H]3C[C@H](NC3=O)C#N)C"
-170404012,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-170060748,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
-169914913,36,"C24H34F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)CC(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-169878307,35,"C23H32F3N5O4","CC1CNC(=O)[C@@H]1C[C@@H](C#N)NC(=O)[C@@H]2[C@@H]3[C@@H](C3(C)C)CN2C(=O)[C@H](C(C)C)NC(=O)C(F)(F)F"
-169878303,36,"C24H34F3N5O4","CC1CNC(=O)[C@@H]1C[C@@H](C#N)NC(=O)[C@@H]2[C@@H]3[C@@H](C3(C)C)CN2C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F"
-169861545,37,"C24H35F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-169861544,38,"C25H37F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
-169861123,37,"C24H35F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(CCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
-169861121,38,"C25H37F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
-169860863,37,"C24H35F3N6O4","CC1(C2C1C(N(C2)C(=O)C(CCCN(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
-169860851,38,"C25H37F3N6O4","CC1(C2C1C(N(C2)C(=O)C(CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
-169707957,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
-169707956,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
-169686051,35,"C23H32F3N5O4","CC1([C@H]2C1CN([C@@H]2C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C"
-169595994,35,"C24H35F2N5O4","CC(C)C[C@@H](C(=O)N1C[C@]2([C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)C)NC(=O)C(F)F"
-169240702,35,"C23H32F3N5O4","CC1(C2C1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
-163341926,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
163285815,35,"C23H32F3N5O4","CC1([C@@H]2[C@@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+163341926,35,"C23H32F3N5O4","CC1(C2C1C(N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
+168301133,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1C(N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+169240702,35,"C23H32F3N5O4","CC1(C2C1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
+169595994,35,"C24H35F2N5O4","CC(C)C[C@@H](C(=O)N1C[C@]2([C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)C)NC(=O)C(F)F"
+169686051,35,"C23H32F3N5O4","CC1([C@H]2C1CN([C@@H]2C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C"
+169707956,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
+169707957,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
+169860851,38,"C25H37F3N6O4","CC1(C2C1C(N(C2)C(=O)C(CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
+169860863,37,"C24H35F3N6O4","CC1(C2C1C(N(C2)C(=O)C(CCCN(C)C)NC(=O)C(F)(F)F)C(=O)NC(CC3CCNC3=O)C#N)C"
+169861121,38,"C25H37F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
+169861123,37,"C24H35F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)C(CCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](CC3CCNC3=O)C#N)C"
+169861544,38,"C25H37F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CCCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+169861545,37,"C24H35F3N6O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](CCCN(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+169878303,36,"C24H34F3N5O4","CC1CNC(=O)[C@@H]1C[C@@H](C#N)NC(=O)[C@@H]2[C@@H]3[C@@H](C3(C)C)CN2C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F"
+169878307,35,"C23H32F3N5O4","CC1CNC(=O)[C@@H]1C[C@@H](C#N)NC(=O)[C@@H]2[C@@H]3[C@@H](C3(C)C)CN2C(=O)[C@H](C(C)C)NC(=O)C(F)(F)F"
+169914913,36,"C24H34F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)CC(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
+170060748,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)NC(C[C@@H]3CCNC3=O)C#N)C"
+170404012,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1C(N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C"
166642632,35,"C23H32F3N5O4","[2H]C([2H])([2H])C([C@@H](C(=O)N1C[C@H]2[C@@H]([C@H]1C(=O)N[C@@H](C[C@@H]3CCNC3=O)C#N)C2(C)C)NC(=O)C(F)(F)F)(C([2H])([2H])[2H])C([2H])([2H])[2H]"
168476190,35,"C23H32F3N5O4","[2H]C1(C[C@H](C(=O)N1)C[C@@H](C#N)NC(=O)[C@@H]2[C@@H]3[C@@H](C3(C)C)CN2C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)[2H]"
+171394959,35,"C23H32F3N5O4","CC1([C@@H]2[C@H]1[C@H](N(C2)C(=O)[C@H](C(C)(C)C)NC(=O)C(F)(F)F)C(=O)N[C@H](C[C@H]3CCNC3=O)C#N)C"
@@ -819,7 +820,7 @@ 5. Performing substructure/superstructure search
-41224
+41285
@@ -833,7 +834,7 @@ 5. Performing substructure/superstructure search
-6839
+6853
@@ -850,7 +851,7 @@ 7. Molecular Formula search
-
@@ -902,7 +903,7 @@ 7. Molecular Formula search
-
diff --git a/datasources/pubchem_pugview.html b/datasources/pubchem_pugview.html
index cc33ffed..65669e5c 100644
--- a/datasources/pubchem_pugview.html
+++ b/datasources/pubchem_pugview.html
@@ -577,7 +577,7 @@ 1. Annotations for a PubChem compound record.
-{'ReferenceNumber': 37,
+{'ReferenceNumber': 41,
'Description': 'PEER REVIEWED',
'Reference': ["O'Neil, M.J. (ed.). The Merck Index - An Encyclopedia of Chemicals, Drugs, and Biologicals. Cambridge, UK: Royal Society of Chemistry, 2013., p. 593"],
'Value': {'StringWithMarkup': [{'String': '2.47cP at 20 °C'}]}}
@@ -913,12 +934,6 @@ 3.3 Multi-page annotationsGetting data for page 5
-Getting data for page 10
-
-
-Getting data for page 15
-
-
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
Cell In[20], line 10
@@ -928,7 +943,7 @@ 3.3 Multi-page annotations 12 if page_curr % 5 == 0 :
13 print("Getting data for page", page_curr)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/api.py:73, in get(url, params, **kwargs)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/requests/api.py:73, in get(url, params, **kwargs)
62 def get(url, params=None, **kwargs):
63 r"""Sends a GET request.
64
@@ -938,14 +953,14 @@ 3.3 Multi-page annotations 71 """
---> 73 return request("get", url, params=params, **kwargs)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/api.py:59, in request(method, url, **kwargs)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/requests/api.py:59, in request(method, url, **kwargs)
55 # By using the 'with' statement we are sure the session is closed, thus we
56 # avoid leaving sockets open which can trigger a ResourceWarning in some
57 # cases, and look like a memory leak in others.
58 with sessions.Session() as session:
---> 59 return session.request(method=method, url=url, **kwargs)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/sessions.py:589, in Session.request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/requests/sessions.py:589, in Session.request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
584 send_kwargs = {
585 "timeout": timeout,
586 "allow_redirects": allow_redirects,
@@ -954,14 +969,14 @@ 3.3 Multi-page annotations--> 589 resp = self.send(prep, **send_kwargs)
591 return resp
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/sessions.py:703, in Session.send(self, request, **kwargs)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/requests/sessions.py:703, in Session.send(self, request, **kwargs)
700 start = preferred_clock()
702 # Send the request
--> 703 r = adapter.send(request, **kwargs)
705 # Total elapsed time of the request (approximately)
706 elapsed = preferred_clock() - start
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/requests/adapters.py:486, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/requests/adapters.py:486, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
483 timeout = TimeoutSauce(connect=timeout, read=timeout)
485 try:
--> 486 resp = conn.urlopen(
@@ -980,7 +995,7 @@ 3.3 Multi-page annotations 500 except (ProtocolError, OSError) as err:
501 raise ConnectionError(err, request=request)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:790, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:790, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)
787 response_conn = conn if not release_conn else None
789 # Make the request on the HTTPConnection object
--> 790 response = self._make_request(
@@ -1000,48 +1015,48 @@ 3.3 Multi-page annotations 805 # Everything went great!
806 clean_exit = True
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:536, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/urllib3/connectionpool.py:536, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)
534 # Receive the response from the server
535 try:
--> 536 response = conn.getresponse()
537 except (BaseSSLError, OSError) as e:
538 self._raise_timeout(err=e, url=url, timeout_value=read_timeout)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/urllib3/connection.py:461, in HTTPConnection.getresponse(self)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/urllib3/connection.py:461, in HTTPConnection.getresponse(self)
458 from .response import HTTPResponse
460 # Get the response from http.client.HTTPConnection
--> 461 httplib_response = super().getresponse()
463 try:
464 assert_header_parsing(httplib_response.msg)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/http/client.py:1390, in HTTPConnection.getresponse(self)
- 1388 try:
- 1389 try:
--> 1390 response.begin()
- 1391 except ConnectionError:
- 1392 self.close()
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/http/client.py:1395, in HTTPConnection.getresponse(self)
+ 1393 try:
+ 1394 try:
+-> 1395 response.begin()
+ 1396 except ConnectionError:
+ 1397 self.close()
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/http/client.py:325, in HTTPResponse.begin(self)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/http/client.py:325, in HTTPResponse.begin(self)
323 # read until we get a non-100 response
324 while True:
--> 325 version, status, reason = self._read_status()
326 if status != CONTINUE:
327 break
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/http/client.py:286, in HTTPResponse._read_status(self)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/http/client.py:286, in HTTPResponse._read_status(self)
285 def _read_status(self):
--> 286 line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
287 if len(line) > _MAXLINE:
288 raise LineTooLong("status line")
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/socket.py:706, in SocketIO.readinto(self, b)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/socket.py:706, in SocketIO.readinto(self, b)
704 while True:
705 try:
--> 706 return self._sock.recv_into(b)
707 except timeout:
708 self._timeout_occurred = True
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/ssl.py:1314, in SSLSocket.recv_into(self, buffer, nbytes, flags)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/ssl.py:1314, in SSLSocket.recv_into(self, buffer, nbytes, flags)
1310 if flags != 0:
1311 raise ValueError(
1312 "non-zero flags not allowed in calls to recv_into() on %s" %
@@ -1050,7 +1065,7 @@ 3.3 Multi-page annotations 1315 else:
1316 return super().recv_into(buffer, nbytes, flags)
-File /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/ssl.py:1166, in SSLSocket.read(self, len, buffer)
+File /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/ssl.py:1166, in SSLSocket.read(self, len, buffer)
1164 try:
1165 if buffer is not None:
-> 1166 return self._sslobj.read(len, buffer)
diff --git a/manipulations/computing_inchis.html b/manipulations/computing_inchis.html
index e5fe6b70..750e71c2 100644
--- a/manipulations/computing_inchis.html
+++ b/manipulations/computing_inchis.html
@@ -539,7 +539,7 @@ 1.2 Create a Molecular Object from SMILES
-<rdkit.Chem.rdchem.Mol object at 0x75903f5a5070>
+<rdkit.Chem.rdchem.Mol object at 0x7f658ffb11c0>
@@ -620,7 +620,7 @@ 1.4 Calculate InChIs for a List of Molecules
-[<rdkit.Chem.rdchem.Mol object at 0x75903f5a5540>, <rdkit.Chem.rdchem.Mol object at 0x75903f5a5620>, <rdkit.Chem.rdchem.Mol object at 0x75903f5a5a10>, <rdkit.Chem.rdchem.Mol object at 0x75903f5a5a80>, <rdkit.Chem.rdchem.Mol object at 0x75903f5a5af0>, <rdkit.Chem.rdchem.Mol object at 0x75903f5a5b60>]
+[<rdkit.Chem.rdchem.Mol object at 0x7f658ffb1770>, <rdkit.Chem.rdchem.Mol object at 0x7f658ffb17e0>, <rdkit.Chem.rdchem.Mol object at 0x7f658ffb1b60>, <rdkit.Chem.rdchem.Mol object at 0x7f658ffb1bd0>, <rdkit.Chem.rdchem.Mol object at 0x7f658ffb1c40>, <rdkit.Chem.rdchem.Mol object at 0x7f658ffb1cb0>]
@@ -779,7 +779,7 @@ 2.4 Calculate InChIs for a List of Molecules
-[<openbabel.pybel.Molecule object at 0x75903e5a1610>, <openbabel.pybel.Molecule object at 0x75903e5a1250>, <openbabel.pybel.Molecule object at 0x75903e5a1dd0>, <openbabel.pybel.Molecule object at 0x75903e5a1350>, <openbabel.pybel.Molecule object at 0x75903e5a1010>, <openbabel.pybel.Molecule object at 0x75903e5a0f50>]
+[<openbabel.pybel.Molecule object at 0x7f658e752490>, <openbabel.pybel.Molecule object at 0x7f658e751f10>, <openbabel.pybel.Molecule object at 0x7f658e751b50>, <openbabel.pybel.Molecule object at 0x7f658e751a10>, <openbabel.pybel.Molecule object at 0x7f658e751990>, <openbabel.pybel.Molecule object at 0x7f658e7518d0>]
diff --git a/manipulations/dataset_search.html b/manipulations/dataset_search.html
index 027d81a6..1745d9e0 100644
--- a/manipulations/dataset_search.html
+++ b/manipulations/dataset_search.html
@@ -637,6 +637,10 @@ 1.2 - Search for sources that have ‘curation efforts’1.2 - Search for sources that have ‘curation efforts’1.2 - Search for sources that have ‘curation efforts’
-{'success': True, 'jwt': 'eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiI0YjVkNzQyMi1hOTg3LTRlZWYtYjQyYi1hN2U3Yjc2MTM0ZTEiLCJzdWIiOiI4NTA5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzEwNTM0MzczLCJleHAiOjE3MTA2MjA3NzN9.BC3BQTaB2p0nXjJy6NFXlOuljvRXvc7wSUc7-QHrnXk', 'username': 'ChemCookbook', 'id': 8509, 'role': 'user', 'profile_type': 'none', 'watched_records': [], 'is_curator': False, 'is_super_curator': False, 'third_party': False, 'expiry': 1710620773, 'message': 'Authentication successful'}
+{'success': True, 'jwt': 'eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiI0YjVkNzQyMi1hOTg3LTRlZWYtYjQyYi1hN2U3Yjc2MTM0ZTEiLCJzdWIiOiI4NTA5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzE4MzkzMTUzLCJleHAiOjE3MTg0Nzk1NTN9.gxVkoZ_NwvyUqP-CQNu8w1hVNC0qYljLV0ybOu3C4eg', 'username': 'ChemCookbook', 'id': 8509, 'role': 'user', 'profile_type': 'none', 'watched_records': [], 'is_curator': False, 'is_super_curator': False, 'third_party': False, 'expiry': 1718479553, 'message': 'Authentication successful'}
@@ -1091,8 +1111,7 @@ 2.2 - Make the API request2.3 - Output the data in a presentable format
FAIRsharing record for: Portable reduced-precision binary format for trajectories produced by GROMACS package.: https://fairsharing.org/10.25504/FAIRsharing.cb1adb
FAIRsharing record for: Chemistry: https://fairsharing.org/fairsharing_records/3524
+FAIRsharing record for: Royal Society of Chemistry - Data policy: https://fairsharing.org/10.25504/FAIRsharing.egbgwm
FAIRsharing record for: Chemistry vocabulary: https://fairsharing.org/10.25504/FAIRsharing.TrcBD2
FAIRsharing record for: EMODnet Chemistry: https://fairsharing.org/10.25504/FAIRsharing.KOiDmy
-FAIRsharing record for: Royal Society of Chemistry - Data policy: https://fairsharing.org/10.25504/FAIRsharing.egbgwm
FAIRsharing record for: MINAS - A Database of Metal Ions in Nucleic AcidS: https://fairsharing.org/10.25504/FAIRsharing.wqtfkv
FAIRsharing record for: ChemSpider: https://fairsharing.org/10.25504/FAIRsharing.96f3gm
FAIRsharing record for: ioChem-BD: https://fairsharing.org/10.25504/FAIRsharing.lwW6a1
-FAIRsharing record for: Swedish Ocean Archive: https://fairsharing.org/10.25504/FAIRsharing.npf403
FAIRsharing record for: Beilstein Journal of Organic Chemistry: https://fairsharing.org/10.25504/FAIRsharing.7GA79k
+FAIRsharing record for: EPA Comptox Chemicals Dashboard: https://fairsharing.org/10.25504/FAIRsharing.tfj7gt
FAIRsharing record for: CAS Registry Number: https://fairsharing.org/10.25504/FAIRsharing.r7Kwy7
FAIRsharing record for: Chemical Markup Language: https://fairsharing.org/10.25504/FAIRsharing.3mdt9n
-FAIRsharing record for: CHARMM Card File Format: https://fairsharing.org/10.25504/FAIRsharing.7hp91k
+FAIRsharing record for: Elsevier / American Society for Biochemistry and Molecular Biology - Journal of Biological Chemistry - Data Policy: https://fairsharing.org/fairsharing_records/5290
FAIRsharing record for: IUPAC International Chemical Identifier: https://fairsharing.org/10.25504/FAIRsharing.ddk9t9
-FAIRsharing record for: Data Standard for Sharing Quantitative Results in Mass Spectrometry Metabolomics: https://fairsharing.org/10.25504/FAIRsharing.207caf
-FAIRsharing record for: Dot Bracket Notation (DBN) - Vienna Format: https://fairsharing.org/10.25504/FAIRsharing.4xrzw1
+FAIRsharing record for: NFDI4Chem : https://fairsharing.org/fairsharing_records/5027
+FAIRsharing record for: CHARMM Card File Format: https://fairsharing.org/10.25504/FAIRsharing.7hp91k
FAIRsharing record for: Name Reaction Ontology: https://fairsharing.org/10.25504/FAIRsharing.w4tncg
FAIRsharing record for: Molecular Process Ontology: https://fairsharing.org/10.25504/FAIRsharing.mct09a
FAIRsharing record for: Chemical Methods Ontology: https://fairsharing.org/10.25504/FAIRsharing.9j4wh2
-FAIRsharing record for: NFDI4Chem : https://fairsharing.org/fairsharing_records/5027
+FAIRsharing record for: Dot Bracket Notation (DBN) - Vienna Format: https://fairsharing.org/10.25504/FAIRsharing.4xrzw1
+FAIRsharing record for: Swedish Ocean Archive: https://fairsharing.org/10.25504/FAIRsharing.npf403
+FAIRsharing record for: Allotrope Data Format: https://fairsharing.org/10.25504/FAIRsharing.26e0d8
FAIRsharing record for: Chemical Abstracts Service Common Chemistry: https://fairsharing.org/10.25504/FAIRsharing.e5c86e
FAIRsharing record for: Geological and Environmental Reference Materials: https://fairsharing.org/10.25504/FAIRsharing.219aec
-FAIRsharing record for: MolMeDB: Molecules on Membranes Database: https://fairsharing.org/10.25504/FAIRsharing.CWzk3C
-FAIRsharing record for: Joint Committee on Atomic and Molecular Physical data - working group on Data eXchange: https://fairsharing.org/10.25504/FAIRsharing.v8nve2
-FAIRsharing record for: IUPAC Periodic Table of the Elements: https://fairsharing.org/10.25504/FAIRsharing.92473c
+FAIRsharing record for: Data Standard for Sharing Quantitative Results in Mass Spectrometry Metabolomics: https://fairsharing.org/10.25504/FAIRsharing.207caf
diff --git a/manipulations/gsheets_citations.html b/manipulations/gsheets_citations.html
index 3fc4ee83..81f2cf85 100644
--- a/manipulations/gsheets_citations.html
+++ b/manipulations/gsheets_citations.html
@@ -401,6 +401,8 @@ Contents
@@ -446,13 +448,11 @@ Importing JSON Citation Data from an API into Google Sheets
Summary#
-In many research contexts access to the literature is very important and dealing with its metadata can be time-consuming.
+
In many research contexts, access to the literature is very important and dealing with its metadata can be time-consuming.
The advent of the Digital Object Identifier (DOI) has made it much easier to deal with
-citation data for many different types of digital resources. Currently, twelve
-registration agencies are ‘minting’ (creating)
-DOI’s and each has a different scope and size. From a research literature perspective
-CrossRef is the agency that holds DOI’s (now
-~150,000,000) and that is a lot of data to sort through.
+citation data for many different types of digital resources. Currently, twelve registration agencies are
+‘minting’ (creating) DOI’s and each has a different scope and size. From a research literature perspective
+CrossRef is the agency that holds DOI’s (now ~150,000,000) and that is a lot of data to sort through.
This tutorial therefore focuses on understanding how you can pull in citation metadata from the CrossRef API, and
load it in a Google Sheet, to make it easy (for instance) to create a citation string for a paper. An example of a
sheet that does this is available here,
@@ -461,19 +461,72 @@
Summary
1 Accessing the CrossRef API#
-The CrossRef API makes available metadata about journal papers, books and other publication types. Detailed documentation
+
The CrossRef API makes metadata available about journal papers, books and other publication types. Detailed documentation
of the API is available at main URL endpoint, https://api.crossref.org. This is too big to go over in this tutorial, so
we will just be focusing on the ‘works’ endpoint (a partial URL that you can add a DOI to) - in this case
-https://api.crossref.org/works/. If you append a DOI to the end of this partial URL and put it in a browser you will
-get a JSON file returned (see below). The JSON file is formatted using the JSONView
+https://api.crossref.org/works/. If you append a DOI to this partial URL and put it in a browser you will
+get a JSON file returned (see below). The JSON file in the image is formatted using the JSONView
plugin for Firefox and all the fields have been collapsed to make it easy to see the whole file at
http://api.crossref.org/works/10.1515/pac-2018-1010.
-
-Caption: JSON output from the Crossref API
-The data we need to extra to be able to criteria a citation for this paper is spread throughoout different parts of the
-JSON file, so we need to know how to get to these metadata. You can think about accessing information in the JSON file
-by using the concept of ‘paths’ to the data elements. This is the same as the path to a file on your computer, going
-down into subdirectories until you reach the file. In this case data we need are at the following paths and
+
+Caption: JSON output from the Crossref API
+The data we need to extract to be able to create a citation for this paper is spread throughoout different parts of the
+JSON file, so we need to know how to get to these metadata elements. You can think about accessing information in the
+JSON file by using the concept of ‘paths’ to the data elements (just like accessing files in a computer). In this case
+the data we need are at the following paths:
+
+title: /message/title
+author last names: /message/author/given (for each author)
+author first names: /message/author/family (for each author)
+journal: /message/container-title
+(alternatively if you want the journal abbreviation you can use /message/short-container-title if available)
+year: /message/published/date-parts (index 0 in the JSON array)
+volume: /message/volume
+issue: /message/issue
+pages: /message/page (yes singular)
+
+
+Note
+Looking at this you will see that while the data is available, it is not as logically organized as it could be and
+there are some formatting issues (for instance the abstract). This is a consequence of both the CrossRef schema for
+the JSON output, and the approach to populating the metadata of the publisher. With the focus on open citations in
+the research community I hope that this will soon be addressed.
+
+
+
+2 Getting and formatting the citation string#
+In order to create our citation string on the Google sheet we need to implement a call to the CrossRef URL, for the
+paper retrieval of these metadata fields and some organization and formating. This is implemented in the Google sheet
+in each column, and much of the mechanics is hidden in rows between the showing data. This is all explained in the
+‘How it works’ sheet.
+
+Caption: The Google Sheets ‘How It Works’ sheet
+Let’s walk through the code. The Crossref path is in cell B2 and the DOI is added to cell B3. The full path is
+created in the Google Sheet function ‘CONCAT’. Here is an example call to get the data.
+=ImportJSON(CONCATENATE('How it works'!$B$2,B3),"/message/title","noInherit,noTruncate,rawHeaders")
+The Google Sheet ‘ImportJSON’ addon function
+takes a URL (first variable) and a path to data (second variable) and optionally
+so processing options (third variable). When the Google sheet processes this function the data at the path is put into
+the cell below the function. This works easily for the title, journal name, volume, issue and pages.
+In order to process the authors and the year we have to do a little more. For the authors, the data is a JSON array
+and thus has to be organized to subsequently be able to be put back together as a string. This is done by loading the
+data (up to eight authors) into columns B and C, concatenating these in column D and finally concatenating non-empty
+cells in B15. This can be expanded to more authors by adding more space for authors and updating the code to cover
+all the author data.
+For the year, as there is no ‘year’ field, we need to take the publised data parts (year, month, day) as a comma
+separated string (B19) and then get the first four characters of that string to get the year. It would be easier if the
+‘path’ could point to specific elements in the array (i.e. /message/published/date-parts/0), but this does not work.
+Finally, our goal of a citation string is implemented in B27, by concatenating the fields above with some extra
+formatting. In the ‘Worksheet’ sheet all the mechanics are hidden and all that is needed is to add a DOI of a
+paper in each/any of B2, C2, or D2 (you can copy any of the B,C or D columns across to other columns to process)
+metadata for more files.
+
+
+3 Conclusion#
+In this brief tutorial you can see how Google Sheets and the ImportJSON addon allows you to process any API data.
+Given this example, you can create spreadsheet views fo API data and even integrate data from multiple sources.
+The only thing to be aware of is that the more calls to APIs that you make in one sheet the slower the over all
+sheet will work, but this of course depends on your access speed, so you may need to optimize how you import the data.
@@ -546,6 +599,8 @@ 1 Accessing the CrossRef API
Summary
1 Accessing the CrossRef API
+2 Getting and formatting the citation string
+3 Conclusion
diff --git a/reports/datasources/cas_commonchem.err.log b/reports/datasources/cas_commonchem.err.log
index 27b69a00..b4df2250 100644
--- a/reports/datasources/cas_commonchem.err.log
+++ b/reports/datasources/cas_commonchem.err.log
@@ -1,40 +1,40 @@
Traceback (most recent call last):
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 780, in _async_poll_for_reply
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 780, in _async_poll_for_reply
msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 97, in ensure_async
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 97, in ensure_async
result = await obj
^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/jupyter_client/channels.py", line 315, in get_msg
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/jupyter_client/channels.py", line 315, in get_msg
raise Empty
_queue.Empty
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution
executenb(
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 1269, in execute
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 1269, in execute
return NotebookClient(nb=nb, resources=resources, km=km, **kwargs).execute()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 85, in wrapped
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 85, in wrapped
return just_run(coro(*args, **kwargs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 60, in just_run
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 60, in just_run
return loop.run_until_complete(coro)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/asyncio/base_events.py", line 654, in run_until_complete
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/asyncio/base_events.py", line 654, in run_until_complete
return future.result()
^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 707, in async_execute
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 707, in async_execute
await self.async_execute_cell(
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 1006, in async_execute_cell
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 1006, in async_execute_cell
exec_reply = await self.task_poll_for_reply
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 804, in _async_poll_for_reply
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 804, in _async_poll_for_reply
error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 856, in _async_handle_timeout
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 856, in _async_handle_timeout
raise CellTimeoutError.error_from_timeout_and_cell(
nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 30 seconds.
The message was: Cell execution timed out.
diff --git a/reports/datasources/pubchem_pugview.err.log b/reports/datasources/pubchem_pugview.err.log
index 53ae3c7b..65f2d39d 100644
--- a/reports/datasources/pubchem_pugview.err.log
+++ b/reports/datasources/pubchem_pugview.err.log
@@ -1,40 +1,40 @@
Traceback (most recent call last):
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 780, in _async_poll_for_reply
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 780, in _async_poll_for_reply
msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 97, in ensure_async
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 97, in ensure_async
result = await obj
^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/jupyter_client/channels.py", line 315, in get_msg
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/jupyter_client/channels.py", line 315, in get_msg
raise Empty
_queue.Empty
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution
executenb(
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 1269, in execute
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 1269, in execute
return NotebookClient(nb=nb, resources=resources, km=km, **kwargs).execute()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 85, in wrapped
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 85, in wrapped
return just_run(coro(*args, **kwargs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/util.py", line 60, in just_run
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/util.py", line 60, in just_run
return loop.run_until_complete(coro)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/asyncio/base_events.py", line 654, in run_until_complete
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/asyncio/base_events.py", line 654, in run_until_complete
return future.result()
^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 707, in async_execute
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 707, in async_execute
await self.async_execute_cell(
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 1006, in async_execute_cell
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 1006, in async_execute_cell
exec_reply = await self.task_poll_for_reply
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 804, in _async_poll_for_reply
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 804, in _async_poll_for_reply
error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/nbclient/client.py", line 856, in _async_handle_timeout
+ File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/nbclient/client.py", line 856, in _async_handle_timeout
raise CellTimeoutError.error_from_timeout_and_cell(
nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 30 seconds.
The message was: Cell execution timed out.
diff --git a/searchindex.js b/searchindex.js
index b472752c..27ac18df 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["about_cookbook","about_project","bibliography","contributions","contributors","cooking","data_sources","datasources/cas_commonchem","datasources/goldbook_api","datasources/pubchem","datasources/pubchem_ptable","datasources/pubchem_pugrest","datasources/pubchem_pugrest1","datasources/pubchem_pugrest2","datasources/pubchem_pugrest3","datasources/pubchem_pugview","development","feedback","glossary","intro","manipulations","manipulations/computing_inchis","manipulations/dataset_search","manipulations/excel_import","manipulations/gsheets_citations","manipulations/using_inchi","techniques","tools","tools/opsin_api","tools/opsin_api_jn","use_cookbook","usecases","usecases/iupac_pkadata","usecases/uvvis_metadata","worldfair"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinxcontrib.bibtex":9,sphinx:56},filenames:["about_cookbook.md","about_project.md","bibliography.md","contributions.md","contributors.md","cooking.md","data_sources.md","datasources/cas_commonchem.ipynb","datasources/goldbook_api.ipynb","datasources/pubchem.md","datasources/pubchem_ptable.ipynb","datasources/pubchem_pugrest.md","datasources/pubchem_pugrest1.ipynb","datasources/pubchem_pugrest2.ipynb","datasources/pubchem_pugrest3.ipynb","datasources/pubchem_pugview.ipynb","development.md","feedback.md","glossary.md","intro.md","manipulations.md","manipulations/computing_inchis.ipynb","manipulations/dataset_search.ipynb","manipulations/excel_import.md","manipulations/gsheets_citations.md","manipulations/using_inchi.md","techniques.md","tools.md","tools/opsin_api.md","tools/opsin_api_jn.ipynb","use_cookbook.md","usecases.md","usecases/iupac_pkadata.ipynb","usecases/uvvis_metadata.ipynb","worldfair.md"],objects:{},objnames:{},objtypes:{},terms:{"0":[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],"00":[7,8,10],"000":24,"0000":22,"000000":10,"000090":10,"000179":10,"0002":22,"0006":10,"0006cecd00000001":12,"0006cecd00000007":12,"0006cecd0000000d":12,"0006cecd00000013":12,"0006cecd00000015":12,"0006cecd00000016":12,"0006cecd00000017":12,"0006cecd0000001a":12,"0006cecd0000002":12,"0006cecd00000027":12,"000900":10,"000z":22,"001251":10,"001429":10,"001620":22,"001696":10,"001784":10,"002600":10,"003214":10,"003733":10,"0050":13,"005887":10,"008000":10,"009730":10,"01":15,"01093":8,"012183":10,"01500516":13,"019":15,"02":[7,8,9,10,12,13,14,15,21,22,23,24,25,33],"03":[7,8,22],"0375":15,"04":[7,10],"05":7,"06":22,"0658":33,"066":33,"0779":33,"08":[22,25],"09":[7,22],"0x75903e5a0f50":21,"0x75903e5a1010":21,"0x75903e5a1250":21,"0x75903e5a1350":21,"0x75903e5a1610":21,"0x75903e5a1dd0":21,"0x75903f5a5070":21,"0x75903f5a5540":21,"0x75903f5a5620":21,"0x75903f5a5a10":21,"0x75903f5a5a80":21,"0x75903f5a5af0":21,"0x75903f5a5b60":21,"1":[2,9,11,28],"10":[2,7,8,9,10,12,14,15,18,21,22,24,25,28,33],"100":15,"1000":[22,23],"1002":[2,9],"10025":7,"10026":7,"10031":7,"10031922":7,"10036":7,"10094":7,"10094367":7,"100x100":12,"1010":24,"10101":7,"10102":7,"10112":7,"1016":[2,9],"10161":7,"1019020":7,"10199":7,"1021":28,"10214":7,"10236":7,"103":10,"10310":7,"1038":2,"104":10,"1048":33,"105":[7,10,33],"10514901":2,"106":[7,10],"10608":7,"106567":13,"106727":13,"107":10,"1071756":7,"108":10,"109":10,"1093":[2,9],"1094":7,"1095":7,"1096":7,"1098":7,"1099":7,"10h":21,"10h2":21,"11":[2,7,9,10,12,14,15,21,22,33],"110":10,"1100":7,"1101":7,"1102":7,"1103":7,"1104":7,"1105":7,"1106":7,"1107":7,"111":[7,10],"112":10,"112433":33,"113":[7,10],"114":10,"115":10,"116":10,"1164":15,"1165":15,"1166":15,"1167":15,"1168":15,"117":10,"118":10,"118122558":14,"1186":15,"11h":21,"12":[7,12,13,14,15,21],"120":10,"12239":7,"123616558":14,"1267651":7,"128544":7,"12h2":[7,12],"13":[7,10,12,14,15,21,28],"130":7,"130950":7,"1310":15,"1311":15,"1312":15,"1313":15,"1314":15,"1315":15,"1316":15,"134601":21,"1351":8,"136":29,"1380":7,"1381":7,"1382":7,"1383":7,"1384":7,"1388":15,"1389":15,"1390":15,"1391":15,"1392":15,"13h2":21,"14":[7,10,12,15,21,22,23,24,25],"140":10,"141623":13,"1443":22,"14445":33,"1449":33,"14571425":14,"14571426":14,"15":[7,12,15,21],"150":24,"151":12,"1515":[2,10,18,24],"153":10,"155903259":14,"1560":10,"156391":[12,13],"1568":14,"157010397":14,"1574":33,"1577":33,"158":33,"15h":21,"15h2":21,"15t08":22,"15t20":8,"16":[7,10,12,13,21],"160018":2,"1615":10,"162396372":14,"162396442":14,"162396443":14,"162396447":14,"162396448":14,"162396450":14,"162396452":14,"162396453":14,"162396458":14,"162396459":14,"162396460":14,"162396461":14,"162478807":14,"162479130":14,"162685338":14,"162712460":14,"162712462":14,"162712468":14,"162712471":14,"162712482":14,"162712489":14,"162712490":14,"162712498":14,"162712506":14,"1628705":7,"163283236":14,"163283238":14,"163283239":14,"163283243":14,"163283283":14,"163283284":14,"163283322":14,"163283330":14,"163283343":14,"163283370":14,"163283371":14,"163283387":14,"163283390":14,"163283407":14,"163285815":14,"163321803":14,"163341926":14,"163361849":14,"163361997":14,"163361998":14,"163362001":14,"163362005":14,"163362008":14,"163362009":14,"163362014":14,"163362016":14,"163362019":14,"163362026":14,"163362029":14,"163362031":14,"163421961":14,"163941851":14,"164040179":14,"164158215":14,"164159966":14,"16422":7,"164622832":14,"164701733":14,"164701736":14,"164701738":14,"164701741":14,"164701742":14,"164701743":14,"164701748":14,"164701749":14,"164701757":14,"164701758":14,"164701760":14,"164701766":14,"164701772":14,"164701773":14,"164701775":14,"164701776":14,"164701777":14,"164701789":14,"164701794":14,"164701798":14,"164701800":14,"164701802":14,"164701805":14,"164701807":14,"164701812":14,"164701813":14,"164701814":14,"164701815":14,"164701816":14,"164701817":14,"164701818":14,"164701819":14,"164701821":14,"164766036":14,"164766041":14,"164785132":14,"164850071":14,"164850073":14,"164850290":14,"164971185":14,"1650":22,"165179472":14,"165179485":14,"165179486":14,"165179488":14,"165368435":14,"165368436":14,"1657":33,"166149062":14,"166149063":14,"166149071":14,"166149074":14,"166149077":14,"166149089":14,"166149094":14,"166149137":14,"166156664":14,"166156672":14,"166156828":14,"166156829":14,"166156836":14,"166156886":14,"166157017":14,"166157023":14,"166157043":14,"166157052":14,"166157057":14,"166157065":14,"166157157":14,"166157170":14,"166157194":14,"166157205":14,"166157215":14,"166157269":14,"166157277":14,"166157313":14,"166494662":14,"166494843":14,"166537627":14,"166642632":14,"166840326":14,"166840392":14,"166840457":14,"166840466":14,"166840731":14,"166891533":14,"166891547":14,"166891596":14,"166891665":14,"166893182":14,"166893274":14,"166893275":14,"166893276":14,"166893348":14,"166893351":14,"166949500":14,"166949501":14,"166964883":14,"166964886":14,"166964888":14,"166964890":14,"166964899":14,"166964903":14,"166964904":14,"166964908":14,"166964913":14,"166986000":14,"166986065":14,"166986067":14,"166986077":14,"167":[7,33],"167065080":14,"167065082":14,"167065154":14,"167065160":14,"167094315":14,"167094316":14,"167094334":14,"167094341":14,"167203321":14,"167203580":14,"167203581":14,"167203582":14,"167203608":14,"167203609":14,"167206597":14,"167206598":14,"167206599":14,"167206807":14,"167207061":14,"167213710":14,"167229685":14,"167251496":14,"167278770":14,"167331610":14,"167331612":14,"167331630":14,"167331639":14,"167331698":14,"167338845":14,"167338850":14,"167338914":14,"167338917":14,"167338943":14,"167430402":14,"167480975":14,"167480997":14,"167481005":14,"167481033":14,"167481034":14,"167481037":14,"167481072":14,"167481103":14,"167481104":14,"167481130":14,"167481158":14,"167481199":14,"167481201":14,"167481202":14,"167481210":14,"167481232":14,"167481234":14,"167481250":14,"167481257":14,"167481266":14,"167481309":14,"167481324":14,"167481327":14,"167481349":14,"167481356":14,"167481364":14,"167481374":14,"167481379":14,"167481386":14,"167481398":14,"167481400":14,"167481430":14,"167481462":14,"167481474":14,"167481480":14,"167481489":14,"167481535":14,"167481542":14,"167481547":14,"167481557":14,"167481565":14,"167481566":14,"167481575":14,"167481592":14,"167481608":14,"167481637":14,"167481640":14,"167481663":14,"167481675":14,"167481747":14,"167481808":14,"167481821":14,"167481860":14,"167481876":14,"167481880":14,"167481900":14,"167481908":14,"167481917":14,"167481924":14,"167481927":14,"167481929":14,"167481944":14,"167481950":14,"167481970":14,"167481972":14,"167481999":14,"167482005":14,"167482039":14,"167482043":14,"167482074":14,"167482083":14,"167482106":14,"167482130":14,"167482167":14,"167482178":14,"167482205":14,"167482212":14,"167482213":14,"167482218":14,"167482232":14,"167482240":14,"167482261":14,"167482283":14,"167482292":14,"167482295":14,"167482299":14,"167482300":14,"167482314":14,"167482317":14,"167514":[2,9],"167518190":14,"167518234":14,"167521394":14,"167537951":14,"167574477":14,"167574478":14,"167579537":14,"167674037":14,"168":7,"168010016":14,"168093174":14,"168142141":14,"168142152":14,"168142166":14,"168142167":14,"168142213":14,"168154285":14,"168290284":14,"168291677":14,"168301133":14,"168310836":14,"168310837":14,"168476190":14,"168750579":14,"168750586":14,"168750590":14,"168750593":14,"168870655":14,"168878798":14,"168878799":14,"168941969":14,"168942044":14,"168993728":14,"168993735":14,"169084219":14,"169084221":14,"169084224":14,"169084228":14,"169095061":14,"169122295":14,"169193197":14,"169193261":14,"169193357":14,"169193396":14,"169193437":14,"169193547":14,"169193552":14,"169193733":14,"169193751":14,"169193754":14,"169193839":14,"169193895":14,"169193963":14,"169193967":14,"169193968":14,"169193984":14,"169194030":14,"169194114":14,"169194124":14,"169194140":14,"169194186":14,"169194204":14,"169194217":14,"169194236":14,"169194258":14,"169194293":14,"169194319":14,"169194330":14,"169194348":14,"169194427":14,"169240696":14,"169240697":14,"169240701":14,"169240702":14,"169283836":14,"169283867":14,"169283881":14,"169291133":14,"169436361":14,"169436363":14,"169595592":14,"169595627":14,"169595871":14,"169595872":14,"169595876":14,"169595897":14,"169595900":14,"169595902":14,"169595937":14,"169595991":14,"169595994":14,"169595998":14,"169597577":14,"169655654":14,"169655658":14,"169655661":14,"169655677":14,"169655713":14,"169655746":14,"169655747":14,"169655787":14,"169655789":14,"169655830":14,"169676887":14,"169686050":14,"169686051":14,"169707956":14,"169707957":14,"169728040":14,"169728041":14,"169728431":14,"169728432":14,"169732235":14,"169732236":14,"169734644":14,"169735016":14,"169736642":14,"169736643":14,"169737661":14,"169816596":14,"169860851":14,"169860855":14,"169860863":14,"169860866":14,"169860882":14,"169861043":14,"169861121":14,"169861122":14,"169861123":14,"169861126":14,"169861127":14,"169861128":14,"169861209":14,"169861410":14,"169861544":14,"169861545":14,"169861547":14,"169861552":14,"169861641":14,"169861643":14,"169861899":14,"169861924":14,"169862040":14,"169862121":14,"169878303":14,"169878305":14,"169878307":14,"169878308":14,"169878349":14,"169878350":14,"169878352":14,"169878353":14,"169878366":14,"169878439":14,"169878441":14,"169878442":14,"169878445":14,"169878446":14,"169878447":14,"169878448":14,"169878449":14,"169878451":14,"169878452":14,"169878453":14,"169878454":14,"169878455":14,"169878511":14,"169878512":14,"169878513":14,"169878514":14,"169878517":14,"169878631":14,"169878890":14,"169907886":14,"169907978":14,"169914451":14,"169914647":14,"169914666":14,"169914913":14,"169915447":14,"169915455":14,"169915574":14,"169966328":14,"169979396":14,"169979540":14,"169989970":14,"169994700":14,"169994701":14,"169994702":14,"169994703":14,"169994705":14,"169994706":14,"169994745":14,"169994895":14,"169994956":14,"169995108":14,"169995153":14,"169995154":14,"169995311":14,"169995401":14,"169995678":14,"169995679":14,"169995904":14,"17":[7,10,12,21],"170005512":14,"170014641":14,"170036051":14,"170036241":14,"170036248":14,"170036499":14,"170036541":14,"170036602":14,"170036799":14,"170036842":14,"170036848":14,"170036858":14,"170036928":14,"170036943":14,"170036979":14,"170037210":14,"170037247":14,"170038496":14,"170052965":14,"170052972":14,"170052975":14,"170053029":14,"170053129":14,"170053614":14,"170053627":14,"170053669":14,"170053921":14,"170054633":14,"170054800":14,"170060745":14,"170060748":14,"170080981":14,"170151866":14,"170164555":14,"170164590":14,"170164688":14,"170164691":14,"170164767":14,"170165331":14,"170165348":14,"170165489":14,"170165491":14,"170165562":14,"170165698":14,"170165794":14,"170165798":14,"170165926":14,"170166075":14,"170166112":14,"170166207":14,"170166212":14,"170166479":14,"170166597":14,"170166774":14,"170166889":14,"170166912":14,"170166968":14,"170167024":14,"170167073":14,"170167108":14,"170167420":14,"170167453":14,"170167521":14,"170167651":14,"170167675":14,"170167680":14,"170167936":14,"170168021":14,"170168510":14,"170168543":14,"170200729":14,"170201013":14,"170203998":14,"170291885":14,"170404012":14,"170552067":14,"170552068":14,"170631558":14,"170631565":14,"170631680":14,"170631745":14,"170701828":14,"170701834":14,"170701836":14,"170701844":14,"170701848":14,"170701854":14,"170701858":14,"1710620773":22,"1766":10,"177":7,"1783":33,"1798":10,"18":[2,7,10,12,15,21],"180":[12,13],"1808":10,"1817":10,"182":[7,10],"182843":33,"184":7,"1868":10,"18950":14,"19":[7,10,12,21,22],"190985":7,"192":[7,10],"192000":10,"192949":7,"1940":7,"1956":15,"196000":10,"1963":33,"1963ern":33,"19782":33,"1983":12,"1995":22,"1996":8,"1998":10,"1a":23,"1a1":9,"1c":[7,14],"1c2":7,"1d":18,"1f":33,"1h3":[7,14,21,29],"1s":[7,12,13,14,21,25,29],"1s1":10,"1s2":10,"2":[1,9,11,28],"20":[7,10,12,15,21,33],"200":12,"2000":[7,10],"2003":10,"2006":[8,10],"2007":33,"2009":[2,18,28],"200x200":[13,14],"2010":10,"2011":12,"2013":[12,15],"2014":8,"2016":2,"2018":24,"2019":[8,15],"2020":[10,25],"2021":[2,9,10,18,21,22],"2021379090":9,"2022":[2,9,18,34],"2023":[2,8,9,12,13,14,22,33],"2024":[7,8,10,15,21,22,23,24,25],"205000":10,"206":[12,13],"207caf":22,"20index":15,"20retent":15,"21":[7,12,21],"211":33,"211000":10,"21480":7,"216000":10,"217":[2,9],"2193":8,"219aec":22,"22":[2,7,9,10,12,18,21],"220":7,"2204":8,"22252593":7,"22362":7,"2244":[9,12,13,14],"2244812":7,"22660":7,"22729":7,"228":7,"2283":7,"23":[2,7,9,12,21],"230":[12,22,33],"23270":7,"234":23,"2348":10,"23532":7,"23567":7,"23602":7,"23636":7,"23681059":13,"237":33,"23989":7,"23h":7,"24":[7,8,10,12,13,15,33],"240":33,"2409557":7,"241":[7,15],"24310":14,"24330":7,"24364":7,"24474":7,"247":33,"24876":7,"25":[7,10,12],"25014":7,"25084":7,"25130":7,"25153":7,"25194":7,"25221":7,"25237":7,"25257":7,"25312":7,"25321":7,"25350":7,"25367":7,"25384":7,"2540":22,"25403":7,"25448":7,"25493":7,"25504":22,"25512":7,"25555":7,"2566761":7,"25706":7,"25708":7,"25709":33,"25723":7,"25742":7,"25785":7,"25818":7,"25838":7,"25865":7,"25945":7,"25952":7,"26":[7,12,33],"26005":7,"26066":7,"26132":7,"26257":7,"265":7,"26540":7,"26560":7,"26635":7,"26745":7,"26768":7,"26952":7,"26973":7,"26976":7,"27":[12,22,25],"27092":7,"27178":7,"2723872":14,"27311":7,"27317":7,"27337":7,"27340":7,"27352":7,"27354":7,"2744":10,"27473":7,"27487":7,"27502":7,"27505":7,"27516":7,"27530":7,"27542":7,"27554":7,"27569":7,"27583":7,"27598":7,"27612":7,"27695":7,"277":10,"27730":7,"27747":7,"27837":7,"27903":7,"28":[7,8,9,10,12,13,14,22,25,33],"28002":7,"28036":7,"28071":7,"28140":7,"28224":7,"28227":7,"28242":7,"28252":7,"283":7,"28354":7,"28380":7,"28427":7,"28454":7,"285":15,"28522":7,"28524":7,"28559":7,"286":15,"28600":7,"28602":7,"28611":7,"28657":7,"287":15,"28779":7,"28796":7,"288":15,"28828":7,"28860":7,"28978":7,"28h":12,"29":[12,13],"290":10,"29082":7,"29134":7,"29146":7,"29263":7,"293":10,"294":10,"29406":7,"29478":7,"29479":7,"29480":7,"29495":7,"295":10,"29504":7,"29507":7,"29530":7,"29544":7,"29686":7,"29695":7,"29697":7,"296z":22,"29700":7,"29715":7,"29727":7,"298":10,"29819":7,"29885":7,"29894":7,"29912":7,"29914":7,"29924":7,"29983":7,"29989":7,"29t14":22,"2a":23,"2b":23,"2c":14,"2c1cn":14,"2d":[12,18],"2h":14,"2h3":[7,29],"2p1":10,"2s":13,"2s1":10,"2s2":10,"3":[2,9,11,28],"30":[10,12,15,22],"300":[7,12],"30041":7,"300x300":12,"301":33,"30102":7,"30121":7,"30128":7,"30131":7,"30223":7,"30272":7,"30275":7,"30281":7,"30284":7,"30310":7,"30317":7,"30344":7,"30347":7,"30402":7,"30451":7,"30489":7,"30541":7,"30573":7,"30602":7,"30671":7,"30691":7,"30703":7,"30778":7,"30792":7,"30847":7,"30850":7,"309":7,"30948":7,"30960":7,"30t08":22,"30t09":22,"31":[7,12],"31070":7,"31200":7,"313":7,"31376":7,"31419":7,"31540":7,"31567":7,"31575":7,"31705":7,"31760":7,"31774":7,"31777":7,"318":7,"31809":7,"31850":7,"31855":7,"31899":7,"31988":7,"319892613":15,"32":[12,22],"32040":7,"320x240":12,"32107":7,"32185":7,"32202":7,"32205":7,"32242":7,"323":[10,15],"32312":7,"32315":7,"324":[7,15],"32422":7,"325":15,"326":15,"327":15,"32758":7,"32762":7,"32866":7,"33":12,"3317":14,"3333":7,"334":33,"33634":13,"34":[7,14],"340":33,"34370395":9,"345":13,"35":[10,14],"3524":22,"36":[7,10,14],"3672":12,"368":7,"37":[7,10,12,14,15],"370000":10,"3716":7,"38":14,"39":22,"392":10,"39241":13,"3a":22,"3c":14,"3ccnc3":14,"3d":[12,25],"3f":33,"3h2":29,"3h3":21,"3mdt9n":22,"3rd":8,"4":[7,9,13,14,22,23,24,28],"40":7,"400":14,"40385d32372c7c8af5dd4fe1ee442a47bc8ad87d":22,"405z":22,"41":14,"41224":14,"42":7,"4273":10,"43":8,"433":7,"434":[2,9],"434z":22,"439312":14,"439709":14,"44":7,"44227150":14,"443z":22,"446157":[12,14],"453":10,"458":15,"46":12,"460":15,"461":15,"462":13,"463":15,"463075":9,"464":[7,15],"465":7,"466":7,"467":7,"468":7,"469":7,"47":[7,15,22],"470":7,"471":7,"47cp":15,"48":7,"483":[7,15],"485":[7,15],"486":[7,15],"487":[7,15],"488":[7,15],"489":[7,15],"49":[7,12,15],"490":[7,15],"491":[7,15],"492":[7,15],"493":[7,15],"4932":9,"494":[7,15],"495":[7,15],"496":[7,15],"497":[7,15],"498":[7,15],"4a":23,"4b":23,"4c":7,"4h3":12,"4xrzw1":22,"5":[7,9,10,12,15,21,23,28],"50":7,"500":[7,12,15,33],"501":[7,15],"5027":22,"51":[2,7,9],"511":7,"512":7,"512z":22,"513":7,"514":7,"515":7,"516":7,"517":7,"518":7,"519":7,"51st":21,"520":7,"521":7,"522":7,"523":7,"524":7,"525":7,"5280656":12,"5281":2,"53":[7,10],"53114542":12,"534":15,"534000":10,"535":15,"536":15,"537":15,"538":15,"54":10,"55":[7,10,15],"5592":7,"55980":7,"56":[7,15,23],"562":14,"56841568":13,"57":[7,10,15],"5793":14,"58":[7,15],"584":[7,15],"585":[7,15],"586":[7,15],"58604790":14,"58605465":14,"587":[7,10,15],"58766735":14,"58799705":14,"588":[7,15],"589":[7,15],"58908752":14,"58908973":14,"59":[7,15,33],"591":[7,15],"59115469":14,"59115764":14,"593":15,"598":10,"5b":23,"5f14":10,"5h":14,"6":[2,7,9,10,12,13,14,18,21,29,33],"6036":14,"60823":9,"61":7,"618":10,"62":[7,15],"623":[2,18],"63":[7,12,15],"633":7,"634":7,"635":7,"636":[2,7,18],"639":7,"64":[7,15],"640":7,"642":7,"643":7,"644":7,"645":7,"646":7,"64689":14,"647":7,"648":7,"649":7,"65":[7,10,15,33],"650":7,"651":7,"652":7,"653":7,"654":7,"655":7,"656":7,"657":7,"658":7,"659":7,"66":7,"660":7,"661":7,"67324":33,"675728":22,"679":15,"68":[7,8],"6839":14,"69":33,"6912":7,"6925666":13,"693346":33,"6d10":10,"6v9v2ryj8n":13,"7":[7,9,10,12,21,33],"70":[7,15],"700":[7,15],"70171":9,"702":[7,15],"703":[7,15],"7036":8,"704":15,"705":[7,15],"706":[7,15],"707":15,"708":15,"71":[7,15],"7111":13,"7124":9,"71380237":14,"71463":7,"72":33,"720659":15,"72646":7,"73":[7,15],"74":7,"7488":22,"7489":22,"75":7,"754":10,"759616":13,"76":7,"7620":7,"767303":7,"77":7,"77098502":13,"779":7,"78":[7,13],"780":7,"782":7,"783":7,"784":7,"785":7,"786":7,"787":[7,15],"788":7,"789":[7,15],"790":[7,15],"79025":14,"791":[7,15],"792":[7,15],"793":[7,15],"794":[7,15],"795":[7,15],"796":[7,15],"797":[7,15],"798":[7,15],"799":[7,15],"7cb81a2bbf44":8,"7ga79k":22,"7h2":21,"7hp91k":22,"7p2":10,"7p3":10,"7p4":10,"7p5":10,"7p6":10,"7s2":10,"8":[2,7,9,10,12,13,14,15,21,22,23,33],"80":15,"800":[7,15],"8000":22,"801":[7,15],"802":[7,15],"803":[7,15],"804":8,"805":[7,15],"806":[7,15],"8071":22,"81":10,"810000":10,"8148324":15,"829042":9,"8291":22,"83":7,"84":7,"840482":7,"85":10,"850000":10,"8509":22,"857212":7,"85833":7,"85b4a510":22,"86":10,"8604":13,"864908":7,"87":10,"875538":7,"8859":15,"888714":7,"890027":7,"892":14,"894767":7,"898813":7,"898814":7,"899813":7,"8\u03b1":7,"8h2":7,"9":[7,9,10,12,14,15,21,22],"90":[7,14],"9003":7,"900786":7,"900789":7,"906550":7,"909263":7,"909767":7,"909882":7,"910878":7,"910880":7,"911445":7,"913":22,"918778":7,"92":7,"92473c":22,"93":7,"94":[2,7,18],"95":[7,10,14,22],"95650":7,"9581":13,"96":7,"96f3gm":22,"97":7,"98":[10,13],"99":[7,14],"9986":15,"9h2":7,"9j4wh2":22,"\u03b5":33,"\u03bb":33,"\u0438\u0437\u043e\u043c\u0435\u0440\u0438\u0437\u044a\u043c":8,"\u0442\u0440\u0430\u043d\u0441":8,"\u0442\u0440\u0430\u043d\u0441_\u0438\u0437\u043e\u043c\u0435\u0440\u0438\u0437\u044a\u043c":8,"\u0442\u0440\u0430\u043d\u0441_\u0456\u0437\u043e\u043c\u0435\u0440\u0456\u044f":8,"\u0446\u0438\u0441":8,"\u0456\u0437\u043e\u043c\u0435\u0440\u0456\u044f":8,"\u0627\u06cc\u0632\u0648\u0645\u0631\u06cc":8,"\u0627\u06cc\u0632\u0648\u0645\u0631\u06cc_\u0633\u06cc\u0633":8,"\u062a\u0631\u0627\u0646\u0633":8,"\u0633\u06cc\u0633":8,"\u987a\u53cd\u5f02\u6784":8,"\ud835\udf06":33,"abstract":[5,18,22],"break":[8,14,15,33],"byte":18,"case":[0,5,7,15,22,24,28,30],"class":[7,15,21,22,23,33],"default":[7,12,14,25],"do":[5,7,10,12,15,18,22,23,25,29,33],"export":[23,25],"final":[7,9],"float":7,"function":[0,18,28],"geom\u00e9trica":8,"goto":28,"import":[5,10,13,14,15,22,33],"int":7,"isomer\u00eda":8,"isomer\u00eda_ci":8,"isomeria_geom\u00e9trica":8,"izom\u00e9ria":8,"long":[15,16,23,28],"new":[1,7,10,15,19,29],"null":22,"public":[3,12,22,24,28,33],"return":[7,8,12,14,15,22,23,24,28,29,33],"short":33,"super":15,"syst\u00e8m":25,"trans_izom\u00e9ria":8,"true":[7,14,15,21,22],"try":[7,15,25,28,33],"while":[13,15,23,28,29],A:[2,4,5,9,12,13,15,18,22,25,33],As:[14,15,18,23],BY:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],Be:10,By:[7,15,29],For:[9,12,14,15,18,23,28,29,33],IFS:18,If:[3,7,8,12,15,18,23,24,25,28,29,33],In:[7,9,10,12,13,14,15,18,19,23,24,25,29,33],It:[8,12,13,14,15,19,22,23,28,29,33],Its:33,NOT:14,No:[13,15,33],Not:22,OF:[13,33],On:23,One:[15,18,32,33],Or:21,That:[15,22,29],The:[0,1,2,3,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,29,30,34],Then:23,There:[5,15],These:[5,10,12,18,30,33],To:[5,12,14,15,18,22,29,33],WILL:14,With:[14,15],__class__:15,_creat:7,_make_request:[7,15],_maxlin:15,_raise_timeout:[7,15],_read_statu:15,_sock:15,_ssl_wrap_socket_and_match_hostnam:7,_ssl_wrap_socket_impl:7,_sslobj:[7,15],_timeout_occur:15,_validate_conn:7,_validate_ssl_context_for_tls_in_tl:7,_wrap_socket:7,a1:9,aachen:4,abbrevi:[15,22],abil:23,abl:[23,24,25],about:[7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,27,28,33],abov:[8,10,12,13,15,22,23,29,33],absent:33,absorb:33,absorpt:33,abund:10,ac:[22,25,28,29],accept:22,acceptor:12,access:[0,3,5,6,9,11,18,19,20,22,23,25,29,33],accompani:[18,33],accord:[15,23,25],account:22,accur:23,accuraci:5,acet:7,acid:[2,7,9,13,22,33],across:[0,2,5,19,30,34],act:18,actahist:13,actif:13,action:18,activ:[0,3,5,13,18,23,30],ad:[7,15,18,23,29],adam:22,adapt:[7,15,16,21],add:[7,10,24,28,29,33],addin:23,addit:[1,7,9,15,17,18,33],address:[0,31],adher:[5,18],adjust:14,administr:16,adopt:[17,19],advanc:[23,34],advantag:[18,30,32,33],advent:24,advil:13,advisor:23,advisori:22,affect:[25,33],after:[7,8,9,12,15,18,21,22,23,24,25,29],again:25,against:[9,23],agenc:[18,22,24],agent:[18,22],aggreg:[0,6,18,22,32],agil:16,ai:[5,20],aid:[9,13,15,18],aim:[0,30,33],air:22,akos027383893:13,al:[2,10,12,15],alabama:[4,7,22],alcohol:13,alev:13,algorithm:[5,18,22,28],align:[0,5],alik:19,alkali:10,alkalin:10,all:[7,8,9,10,12,13,14,18,22,23,24,28,29,30,33],allegra:13,allerf:13,allergi:13,allianc:[18,22,34],alliancegenom:22,alloi:28,allow:[7,15,18,19,22,25,28,33],allow_redirect:[7,15],allowotherel:14,allpath:8,almost:33,along:[9,18],alpha:[7,9,13],alphanumer:[18,33],alreadi:[25,33],also:[5,9,10,12,13,14,15,18,23,25,28,29,30,33],altern:[9,10,21,25],although:[15,23],aluminum:28,alwai:[7,15],am:8,america:[23,33],american:7,amino:29,among:[10,25],amount:8,an:[0,1,3,5,7,8,9,10,11,12,13,15,18,19,21,22,23,28,29,30,32,33],analogu:8,analys:[18,33],analysi:[0,5,10,18,19,22,33],analyt:23,analyz:19,anchor:29,andr:4,ani:[7,8,13,18,22,23,29,33],anid:15,anion:[13,29],ann:4,annot:[9,10,22,30],anoth:[18,22],antilog:33,antoni:[2,18],antonio:4,anyon:18,anyth:[18,33],api:[6,9,10,13,14,15,23,28],api_doc:22,apiurl:29,app:24,appear:[10,15,33],append:[7,21,22,24,29],appl:23,appli:[0,2,8,18,19,33,34],applic:[5,8,9,10,11,12,13,14,15,22,23,28,29,30,31,33],appreci:5,approach:[0,3,26],appropri:[0,5,18,30],approv:22,approxim:[7,15],ar:[0,1,3,5,7,8,9,10,12,13,14,15,18,19,20,22,24,25,26,28,29,30,32,33],arang:10,arbitrari:12,arbitrarili:12,archibald:[2,18],archiv:[9,15,18,22],area:[9,12,15],arg:33,arg_max:33,argmax:33,argon:15,argument:33,aris:[23,28],around:[19,23,24,28],arrai:33,arrang:18,articl:18,ashgat:7,asia:23,ask:28,aspect:[11,18],aspir:18,aspirin:[9,12,13],asprin:12,assai:[9,12,15],assembl:21,assert:18,assert_fingerprint:7,assert_header_pars:15,assert_hostnam:7,assert_same_host:[7,15],assess:[5,15],asset:18,assign:[18,23,33],associ:[18,33],associated_tool:22,asta:[2,9],athena:22,atla:22,atm:10,atom:[8,12,13,18,20,22],atomicmass:10,atomicnumb:10,atomicradiu:10,atsdr:22,attract:33,attribut:[5,7,8,18,22,33],atw:22,au:22,aug:9,augment:[0,18,28],auspic:18,australia:22,auth:[7,15],author:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33,34],authorit:[9,10],auto:7,autoignit:15,autom:[0,5,18],automat:23,avail:[0,3,6,7,8,9,10,12,13,14,15,18,19,21,22,23,24,25,28,29,30,32,33],avoid:[7,15],awar:25,ax:10,axi:10,b10:12,b2:15,b:[8,10,15,23],back:[18,25,28,29],background:[5,17,23],badrequest:14,bai:13,baidu:25,baker:9,balxufovqveniu:13,bank:[15,22],banner:33,bar:7,bark:22,barplot:10,barri:22,barrier:[17,19],base:[0,3,10,12,13,15,18,19,20,22,23,28,29],basesslerror:[7,15],basic:[0,8,9,11,18,19,23,26],bay98:13,bc3bqtab2p0nxjjy6nfxlouljvrxvc7wsuc7:22,bd:22,bearer:22,becaus:[13,14,15,23],becom:[0,18,23,32],been:[15,18,22,24,28,33],beer:33,beer_lambert:33,befor:[7,23,25,32],begin:[12,15,19,23],behalf:33,behind:25,beilstein:22,being:[7,12,18,23,25,29],belong:25,below:[1,8,10,12,15,18,22,23,24,28,29,30,33],benefit:3,benjamin:[2,9],bennevil:7,benzen:[15,28],benzenemethanol:13,benzenepropano:7,benzyl:13,berendsen:22,beryllium:10,besan:13,best:[0,3,17,19,23],beta:15,better:[8,22],between:[5,7,9,15,18,23],bfznmugazyamtg:7,bg:8,bgee:22,bh:10,big:[8,24,28],bigcat:22,bin:[7,10],binari:[22,23,33],bind:[22,33],binder:[29,33],bindingdb:22,bing:25,bioactiv:9,bioassai:[9,15,22],biocyc:22,bioexcel:22,biogrid:22,bioinformat:22,biolog:[9,15],biologi:[2,9],biomed:9,biotechnolog:4,biovia_ctfileformats_2020:25,bit:18,bitstream:18,black:7,blank:23,block:[0,7,8,12,15,33],blog:29,bloodworth:33,blue:[7,10],bo:[2,9],board:22,bodi:[7,15],body_po:[7,15],boil:[7,15],boilingpoint:10,bolton:[2,9,12],bond:12,book:[2,3,12,13,16,17,22,24,33],bookshelv:15,boron:10,both:[15,18,19,20,22,23,27,33],box:[23,28],bp:[13,22,33],bprhuizqvsmcrt:12,br:22,bracket:22,breast:9,brenda:22,bridg:[2,9],brief:[5,6,12,27,33],british:13,broaden:30,broader:[0,1,18,34],broadli:[0,3],broman:13,bromf:13,browser:[15,23,24,30],bruno:[2,18],bsg:22,buffer:15,built:[22,33],bullet:30,bundl:18,butadien:7,button:[10,23],c01092:8,c01093:8,c01497:8,c10h16clno:13,c11h18o2:7,c11h20o2:7,c12h16n2o3:21,c14h13nao3:13,c14h13o3:13,c14h14o3:13,c14h16n2o6:21,c14h18n2o5:21,c17:21,c17h24n2o4:21,c1:[7,12,14,21,29],c1c:[12,13,14],c1ccccc1:7,c1o:14,c20h24n2o2:7,c22h28fn3o6:12,c23h32f3n5o4:14,c23h33f2n5o4:14,c24h30clno4:13,c24h34f3n5o4:14,c24h35f2n5o4:14,c24h35f3n6o4:14,c24h36f3n5o4:14,c25h37f3n6o4:14,c2:[7,12,14],c2c1:14,c2c1c:14,c2c3:12,c2c:7,c2cn:14,c2ff00:10,c2h7n:29,c31h35clnnao4:13,c3:[7,14],c3h6o:29,c3n4ccc:7,c4:7,c4cc4:12,c6h12o6:14,c7h6o3:33,c9h8o4:[12,13,14],c:[7,10,12,13,14,15,21,29,33],ca:[22,23,33],ca_cert:7,ca_cert_data:7,ca_cert_dir:7,cactu:[25,29],cactv:14,calcul:[25,33],calibr:33,call:[7,8,9,10,12,13,15,33],cam:[22,28,29],cambridg:[15,22],cameo:22,cameochem:22,can:[0,5,7,8,10,11,12,13,14,15,18,19,20,22,23,24,26,27,28,29,33],cancer:9,cannot:14,canon:[7,12],canonicalsmil:[7,12],cansmi:7,cansmil:7,canva:33,capabl:[18,28],caplet:13,caplu:7,caption:[23,24],captur:33,carboxi:7,carboximid:7,card:22,careon:13,carri:18,carriag:23,cas_rn:7,casrn1:7,casrn1_data:7,casrn:[7,23],casrn_data:7,casrn_idx:7,casrn_list:7,catalog:18,catalogu:22,catalogueoflif:22,categori:18,cation:29,caught:14,cb1adb:22,cc1:[7,12,14,21],cc1cnc:14,cc21:7,cc3ccnc3:14,cc4:7,cc80ff:10,cc:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],ccc1ccccc1:7,ccc:7,ccccc1:7,ccccccc:7,ccccn:14,cccn:14,ccdc:22,ccg:13,ccsbase:22,cdc:22,ceas:18,cell:[7,9,10,12,15,22],cellosauru:22,center:4,centipois:15,central:9,centric:[2,9],cerevisia:9,cert:[7,15],cert_fil:7,cert_req:7,certain:15,certfil:7,certifi:13,cexcept:14,ch:[7,22,28,29],chain:22,chalk:[2,4,7,8,18,21,22,23,24,25,28,29,33],chang:[8,18,23,29],charact:[12,14,15,18,25,29],character:[18,30],charg:[29,33],charmm:22,chart:10,chebi:[13,22],check:[8,10,15,23,28,29],chem:[7,15,21,22],chembl1200724:13,chembl:22,chemcookbook:22,chemdb:22,chemdraw:25,chemic:[0,1,2,3,5,7,8,9,11,14,15,17,18,19,20,21,22,26,28,29,30,33,34],chemicalprob:22,chemidplu:22,chemimag:8,cheminform:12,cheminformat:[0,9,15,19,27],chemist:[17,18,19,23],chemistri:[0,2,3,5,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,30,32,33],chemoinformat:22,chemoproteom:22,chemsketch:25,chemspid:[22,25],chen:[2,9],cheng:[2,9],children:13,chlorid:13,choic:23,choos:23,chosen:22,chri:22,christin:4,chromatographi:18,chrome:15,chunk:[7,15,23,33],ci100384d:28,ci:[7,8,14],cid2244:12,cid679:15,cid:[9,12,13,14,15,21],cid_prop:14,cids1:[13,14],cids2:[13,14],cids3:[13,14],cinchonan:7,cinkona:7,cipher:7,circumv:[14,15],citat:[7,8,9,10,12,13,14,15,21,22,23,25,28,29,33],citrin:4,cl:[7,10,12,22],classif:9,clean:8,clean_exit:[7,15],clearli:22,clementi:22,click:[10,15,23,33],client:15,clo:22,close:[7,13,15,22],cloud:23,cm:[10,33],cmc:22,cml:[28,29],cn1n:7,cn2c:[12,14],cn:[7,10],co:[7,12,14],coadvil:13,coalit:22,cobalt:28,coc:21,codata:34,code:[0,5,10,14,19,20,22,29,30],codim:13,coe:22,coeffici:33,col:22,colab:33,cold:13,cole:[4,33],coli:22,collabor:[3,19,23,34],collaps:[24,30],collect:[2,8,9,18,22,30,33],colon:33,color:[7,10],column:[10,14,23,33],com:[8,22,25,32,33],combin:[5,7,13,18,33],come:[18,22,23,28],comfort:19,comma:[12,23],command:[12,33],comment:29,commerc:33,commerci:8,commis:22,committe:[22,34],common:[0,8,12,22,23,25,26,28],commonchemistri:7,commonli:[9,23,33],commun:[0,1,3,5,9,16,19,22,23,29,30,32,33,34],compar:[8,22],compat:14,compendium:8,compil:[5,8],complement:22,complet:[5,7,8,9,12,18,21,22,23,24,25,29],complex:[25,28],compon:[12,13,19,33],compos:18,composit:22,compound:[9,10,12,13,14,18,22,23,25,28,29,33],compress:23,comput:[9,18,19,22,23,24],computation:12,concaten:29,concentr:33,concept:[5,8,24],concret:5,confidenti:22,configur:24,conform:[12,18],conformer1:12,conformer2:12,confus:15,congest:13,congestionnon:13,conjug:13,conn:[7,15],connect:[7,14,15,33],connectionerror:[7,15],connectionpool:[7,15],consid:[3,5,15],consist:[5,12,15,18],consortium:22,constant:[32,33],constitu:22,constitut:18,constraint:18,consum:[5,24],contac:13,contact:[8,22],contact_email:22,contact_nam:22,contact_orcid:22,contain:[2,7,8,9,12,13,14,15,18,23,29,33],content:[0,1,3,6,8,9,12,13,14,16,17,18,19,22,23,29,30,33],context:[5,7,18,24,33],contextu:[18,22,23],continent:23,continu:[1,8,15,18,28],contrari:14,contrast:22,contribut:[1,7,8,9,10,12,13,14,15,17,21,22,23,24,25,33],contributor:16,control:18,conv:21,conveni:[5,25],convers:21,convert:[5,7,8,14,21,22,25,28,29,33],cookbook:[7,8,9,10,12,13,14,15,21,22,23,24,25,26,28,29,33],cooki:[7,15],cooordin:12,coordin:[12,22],copenhagen:22,copi:[20,24,33],copper:28,copyright:33,core:25,cornel:4,corongiu:22,corph:13,correct:[23,25],correctli:23,correl:22,correspond:[12,15,25,33],corrupt:23,cost:[18,33],could:[3,18,28,33],council:34,count:[7,12,14],countri:[22,23],coupl:22,cover:[0,3],covid:22,cp:[15,33],cpcd:21,cpdd:13,cpkhexcolor:10,cpz1:[2,9],cr:23,creat:[3,7,10,14,16,18,22,23,24,29,33],created_at:22,creation:[16,18],creativ:8,creativecommon:[8,22],credit:7,criteria:[0,22,24],critic:5,cross:5,crossref:18,crosswalk:18,cs:8,cscppacgzoocgx:29,csv:[10,12,14,23,33],ctd:22,ctdbase:22,cti:10,ctx:7,cuadro:[4,25,29],cuniculu:15,curat:[0,5,18,25],curr:9,current:[2,8,9,12,14,15,18,22,24,25,28,33],cv:13,cwzk3c:22,cyclic:18,cycloalkan:8,cyclohexanepropano:7,cyclohexanepropion:7,cyclohexen:7,cyclohexylpropano:7,cyclohexylpropion:7,cyp1a1:9,cytochrom:9,d00485:13,d011803:7,d1373:[2,9],d1380:[2,9],d1:[2,9],d3:[1,2],d9ffff:10,d:[2,7,9,12,13,22,33],dai:[13,23],damien:[2,18],dan2097:28,daniel:28,darkgrid:10,dash:25,dasharrai:7,dashoffset:7,dassault:25,data:[0,1,2,3,5,8,11,14,17,18,19,25,26,28,30,31,34],data_dictionari:33,databas:[9,11,15,18,22,23,25,28,33],datacit:18,datafairi:22,dataset:[18,28,32,33],datayp:9,date:[15,23,33],datetim:33,datum:18,davi:[2,18],daytim:13,db:[10,22],dbn:22,dd:13,ddk9t9:22,de:[7,23],deal:[23,24,28],death:9,decai:18,decim:33,declar:18,decod:33,decode_cont:[7,15],decomp:7,decomposit:15,decongest:13,decongestantd:13,decongestantmaximum:13,decongestantnas:13,decongestantnon:13,decons:13,dedic:9,def:[7,8,15,33],defens:7,defin:[8,18,33],definit:[18,33],degre:18,del:29,delai:7,delet:29,delimit:23,demo:[6,27],demonstr:[0,3,10,12,15,19,20,31],densiti:15,depart:22,depend:[5,23,33],deploy:16,deposit:[9,33],depositor:[9,15],deprecation_reason:22,deriv:[5,18,22],describ:[5,12,15,18,22,32,33],descript:[5,6,9,12,15,18,22,33],design:[0,1,9,18,19,22],desir:[12,18,33],detail:[10,11,12,14,15,22,24,33],detail_base_url:7,detect:8,determin:[12,15,33],develop:[0,3,9,12,18,25,28,29,30,33],df:10,df_tmp:10,dgidb:22,dialog:[7,23],dichloromethan:28,dictat:23,dictionari:8,diethyl:7,differ:[0,5,8,11,13,14,15,18,23,24,26,29,30],difficult:23,diffract:18,digit:[0,3,5,18,19,21,23,24,30,33],dilirank:22,dimens:10,dimension:9,dimer:7,dimetan:13,dimetapp:13,dimethyl:15,dip:22,diphenhydramin:13,diphenylphosphino:28,direct:[22,34],directli:[0,5,10,18,21,23,33],director:8,directori:33,disciplin:[5,34],disclaim:8,discov:25,discover:[5,18,19],discoveri:[5,9,18,19],discuss:23,diseas:[15,22],disk:22,displai:[8,12,13,14,21,22,29],dissemin:0,dissoci:[13,32,33],dissolv:13,distanc:22,distinguish:18,distribut:[5,18,22,25,33],divers:[12,16],dm:13,dmaximum:13,dmso:15,do_handshak:7,do_handshake_on_connect:7,doc:[12,15,21],docstr:33,document:[3,5,6,7,9,11,12,16,18,21,22,23,24,25,33],docuri:7,dodg:10,doe:[8,10,15,18,22,24,25,29,33],doi:[2,8,9,10,15,18,22,24,28],domain:[5,18,22,34],don:[23,28],done:[15,25,27,33],donor:12,dorcol:13,dose:13,dot:22,doubl:[23,25],down:[8,24],download:[10,12,13,14,15,23,25,29,33],downstream:34,dph:13,dr:9,draft:18,draw:[12,21],drawn:25,driven:[18,19],drop:13,dropbox:23,dropna:10,drowsi:13,drug:[7,9,13,15,22],drugbank:22,drugcentr:22,ds:10,dsstox:22,dtxsid10889343:13,dtxsid80931146:13,dtype:10,dump:[15,22,29],dure:[5,18,23],dx:[13,18,23,33],dynam:[3,12,29,33],e217:[2,9],e5c86:22,e:[2,7,8,9,10,12,13,14,15,22,23,25,28,29,30,33],each:[5,8,9,12,15,18,22,23,24,29,33],earli:7,earth:10,easi:[5,12,15,23,24,26,28,33],easier:[15,23,24,33],easiest:33,easili:33,ebi:22,ec:13,ecmdb:22,ecotox:15,ed:[8,9,15,22],edg:15,edit:33,editor:[23,25],edu:22,educ:30,effect:19,effici:[22,33],effort:[18,33],efidac:13,egbgwm:22,egfr:15,egon:22,einec:13,either:[18,25,29],el:22,elaps:[7,15],electronaffin:10,electronconfigur:10,element:[15,18,22,24,29,33],elif:10,els:[7,15,28],em:7,emerg:15,emodnet:22,emphas:[3,33],emphasi:26,empow:19,empti:[7,8],en:[8,21,22],enabl:[5,16,18,19,32,33,34],encapsul:33,encod:[7,14,15,18],encount:3,encourag:[8,33],encyclopedia:[15,22],end:[12,15,24,25,29,33],endpoint:[18,24,28,29],energi:33,enforce_content_length:[7,15],engag:[0,3,16,30],engin:[5,19,25],english:[22,23],enough:[22,28],ensembl:[12,14],ensur:[5,18],enter:[22,28,33],entir:7,entiti:18,entrez:12,entri:[8,18,22,31],environ:[5,19],environment:[15,19,22],enzym:22,eol:22,ep:13,epa:22,ephedrin:13,epsilon:33,epsilon_arrai:33,equalin:13,equat:[5,13],equival:[15,21,22],ernst:33,err:[7,15],error:[12,14,15,28,29],es:8,escap:14,especi:[10,12,25,32],essenti:[18,33],ester:7,et:[2,10,12,15],etc:[12,23,33],ethanol:29,ethoxycarbonyl:7,ethyl:[7,13,28],ethylammonium:29,eukaryot:22,europ:23,european:[13,22],ev:10,evalu:22,evan:[2,9],even:[8,29],ever:32,everi:8,everyth:[7,15,33],evolv:[1,19],exact:13,exactli:[13,15],exampl:[0,5,7,8,9,12,13,14,15,18,20,21,22,23,24,25,29,30,33],exce:15,excel:12,except:[7,15,23],excerpt:15,exchang:[5,18,22],exclud:10,execut:[0,3,8,19,20,33],executivedirector:8,exemplifi:[0,19],exhaust:33,exhaustive_lic:22,exist:[10,33],exp:33,expasi:22,expect:[10,25,32],experi:[0,33],experienti:19,experiment:[0,7,12,15,33],experimentalproperti:7,expertis:33,expiri:22,explain:33,explan:[27,33],exploit:19,explor:[2,9,24],exponenti:33,exposur:15,express:[8,15,29],extend:[18,33],extens:[11,18,23,33],extent:18,extern:[0,22,30],extinct:33,extra:[7,23,24],extract:[0,7,8,9,15,18,33],extrem:23,eyjhbgcioijiuzi1nij9:22,eyjqdgkioii0yjvknzqymi1hotg3ltrlzwytyjqyyi1hn2u3yjc2mtm0zteilcjzdwiioii4nta5iiwic2nwijoidxnlciisimf1zci6bnvsbcwiawf0ijoxnzewntm0mzczlcjlehaioje3mta2mja3nzn9:22,f:[4,7,10,12,14,22,33],fa:8,facecolor:7,facilit:[5,18],fact:23,facto:23,factor:[9,22],fail:[14,28],fair:[0,2,3,7,8,9,10,12,13,14,15,16,17,18,20,21,23,24,25,28,29,30,31,32,33,34],fairsharing_lic:22,fairsharing_record:22,fairsharing_record_id:22,fairsharing_registri:22,fairspec:[2,18,33],fall:18,fals:[7,10,15,21,22],familar:[10,12,13,14,15],famili:7,familiar:[5,7,8,9,12,19,21,22,23,24,29,33],far:25,faradai:33,faster:8,fastformula:14,fastident:14,fastsimilarity_2d:14,fastsimilarity_3d:14,fastsubstructur:14,fastsuperstructur:14,fate:15,fatima:4,fda:22,fear:23,featur:[23,25],feder:18,feed:23,feedback:[1,30],feel:30,few:15,fewer:14,ffb5b5:10,ffffff:10,fid:18,field:[18,19,24],fifti:23,fig:10,figsiz:[7,10],figur:[7,10,13,23,28,33],file:[0,7,9,12,15,18,21,22,24,28,29],fill:7,filter:7,find:[5,9,15,18,23,25,28,29,33],findabl:[0,18,19,20,33],findal:29,firefox:24,first:[7,12,13,14,15,22,23,25,29,33],firsti:33,firstx:33,fission:22,five:12,fix:28,fl:10,flag:15,flat:7,flerovium:10,florida:4,flow:15,fluid:15,flybas:22,focu:33,focus:[3,15,19,23,24],folder:18,follow:[9,10,11,12,14,15,16,24,25,29,33],font:7,forc:[7,23],form:[3,5,14,18,28,29,33],formal:18,format:[5,7,8,9,10,12,13,14,15,18,19,21,24,25,28,29,32],formerli:33,formul:[1,12,15],formula:[12,13],forward:14,found:[8,11,12,15,18,25,29,32],foundat:[9,18],four:[12,23],fp:15,frame:[5,10],free:[9,13,18,33],freeli:[10,18,33],freqent:13,friction:15,from:[0,5,8,9,12,13,14,18,22,23,25,29,33],front:29,fs_pass:22,fs_user:22,full:[2,7,9,18,23],fulli:[5,20,26,33],fund:22,funder:[18,33],further:30,futur:33,g:[7,8,10,12,15,22,23,25,28,29,33],ga:10,galpseud:13,galsud:13,gatewai:12,gdhzqmfxvqiwaw:12,gencc:22,gene:[2,9,12,15,22],geneid:9,genenam:22,geneontolog:22,gener:[7,8,10,11,12,16,18,21,23,28,29,33],generalist:18,genom:22,geolog:22,geometricprecis:7,get:[5,7,8,9,10,14,17,19,22,23,24,25,28,29,33],getrespons:15,gh:[13,22],ghs_index:22,gindulyt:[2,9],github:[16,17,22,28,29,32],githubusercont:33,give:[12,23,26,28,33],given:[9,12,14,18],gkac956:[2,9],global:[5,22],gloriam:22,glue:33,glycan:22,glycolysi:9,glyconavi:22,glygen:22,go:[22,24],goal:[17,19,34],goldbook:8,goldifi:8,good:[13,23],googl:15,googlesheet:12,got:25,gov:[9,10,12,13,14,15,22,29],gramen:22,grant:22,grant_id:22,granular:5,graph:[18,33],graphic:29,great:[7,15,24],greater:10,greedi:29,greek:28,green:22,grid:[21,33],gromac:22,group:[8,9,18,22],groupblock:10,gsr:22,guid:[2,18,22],guidanc:[0,33],guidetopharmacolog:22,gunclkarsa:12,gutenberg:4,h10h:7,h1:[21,29],h2:[14,21,29],h3:7,h4:21,h5:12,h:[7,10,12,14,21],ha:[7,8,9,15,18,22,23,24,25,28,33],had:33,halogen:10,hand:[0,17,19],handl:[0,5,15,18,19,23],hanson:[2,18],happen:33,harri:13,harvest:18,hash:33,hasmolfil:7,have:[3,7,8,10,12,15,21,23,24,28,33],haz:22,hazard:[15,22],hbondacceptorcoun:12,hbondacceptorcount:12,hbonddonorcount:12,hci:22,hcl:13,hclunit:13,he:[2,9,10,28],head:[22,33],headach:13,header:[7,14,15,22,23,30],heading1:15,heading2:15,heading_typ:15,health:[4,13,19,22],heart:19,heavi:12,heavier:10,heavyatomcount:[12,14],height:7,hela:15,helium:10,help:[9,10,12,15,22,25,33],henc:23,henri:[2,18],here:[8,9,10,11,12,15,18,22,23,24,29,33],herein:18,herr:4,hesiglob:22,hetero:8,heterogen:18,hexahydr:28,hgnc:22,hi:28,high:[0,9,22,30,33],higher:14,highli:15,highlight:27,hist:7,histaf:13,histogram:[7,10],histor:18,histori:18,histplot:10,histtyp:7,hit:[9,13,22],hja:[2,18],hmdb:22,hms1920n04:13,hoesel:22,hold:[24,33],homepag:[12,22,28],homopolym:7,hook:[7,15],hormon:15,hospit:22,host:[7,14,22,33,34],hostedtoolcach:[7,15,33],hour:[13,15],hous:22,how:[0,1,3,5,7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,29,33],howev:[10,14,15,18,22,23,25,28,33],hpa:22,hs:10,hsa:9,hsdb:[15,22],htm:22,html:[8,9,15,18,21,22,23],http:[2,7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,32,33],httpadapt:[7,15],httpconnect:[7,15],httpconnectionpool:[7,15],httplib_respons:15,httprespons:15,httpsconnect:7,httpsconnectionpool:7,hue:10,hugo:22,human:[9,12,15,18,20,22,27,28,29,33],hundr:[9,23],hycofenix:13,hydrat:28,hydrochlorid:13,hydrocinnam:7,hydrogen:[10,12,13],hygien:15,hyphen:25,i03289:8,i:[8,9,10,13,14,15,22,29,30],ian:[2,18],iaozjiptcawirg:21,ib:13,icsc:22,id:[7,8,9,12,15,22,33],idea:[17,30,33],ideal:18,ident:[9,18,25],identif:22,identifi:[7,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],identity_typ:14,idrblab:22,idx:7,ifcc001:28,ifcc002:29,ifcc003:8,ifcc004:9,ifcc006:12,ifcc007:13,ifcc008:14,ifcc009:15,ifcc010:33,ifcc011:7,ifcc012:21,ifcc013:22,ifcc014:23,ifcc015:24,ifcc016:10,ifcc017:25,ifcc:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],ignor:33,ilo:22,imag:[7,8,12,13,14,15,18,21,22,28,33],image_s:[12,13,14],imagin:18,img:[8,22],implement:[1,12,26,34],implicit:18,importjson:24,imposs:15,improv:[10,26,29,33],inchi:[7,11,12,18,28,29],inchi_output:21,inchikei:[7,12,21,28],inchikey_output:21,inchismil:33,includ:[6,7,8,9,12,15,18,20,22,25,27,28,29,30,33],increas:[1,5,25],increasingli:19,increment:10,indent:[15,22,29,33],index:[7,8,9,10,15,21,22,25,33],indic:[15,27],indirectli:18,indispens:28,individu:[8,9,33],induc:[9,22],induct:18,industri:[15,22],inep:33,infil:21,info:22,inform:[2,3,4,5,7,9,10,11,12,14,15,18,19,22,24,25,28,29,30,33],informat:[4,5,22],infrastructur:[0,16],ingredi:13,inherit:22,inhibit:13,inhibitor:9,initi:[1,19,26,34],injuri:22,inlin:8,innov:19,inoh:22,input:[11,12,13,18,28],insecurerequestwarn:7,insid:33,insight:[0,32],inspir:26,instal:[25,29],instanc:[23,24],instead:29,institut:[4,18,22,33],instruct:[3,9,22,28,33],instrument:[18,23,33],intact:22,integ:22,integr:[0,5,15,18,19,22,33],intend:[1,33],interact:[0,7,8,9,10,12,13,14,15,19,20,21,22,29,30,33],interest:8,interfac:[5,8,9,10,11,12,13,14,15,22,23,28,29,33],intern:[8,10,15,18,19,21,22,34],interoper:[0,18,19,20,33],interpol:7,interpret:[18,23,25,28,29,33],interpro:22,intrins:18,introduc:26,introduct:12,introductori:[8,9,10,12,13,14,15,22,33],involv:[0,18,19,29],io:[14,21,22],iochem:22,ion:[22,28,29],ionic:29,ioniz:22,ionizationenergi:10,iptei:22,ipynb:33,ipython:[7,12,13,14,29,33],iq:4,ir:[18,22],irbbarcelona:22,is_clos:7,is_cur:22,is_ipaddress:7,is_lead:22,is_super_cur:22,is_time_off:7,is_verifi:7,isn:23,isnul:10,iso:15,isoclor:13,isoephedrin:13,isoform:15,isol:33,isom:[8,25],isomer:[8,12,14],isomeria:8,isomeria_ci:8,isomericsmil:[12,13,14],isotact:7,isotop:[14,22,25],isotopom:9,issu:[14,15,23,25,28],istoxnet:15,ital:7,item:[8,14,18],iter:8,its:[12,18,21,22,24,25,28,29,33],ium:29,iupac:[0,2,3,7,9,10,12,13,14,15,18,21,22,23,24,25,29,30,32,33,34],iuphar:22,izomeri:8,j:[2,9,12,15,18,22,33],java:29,javascript:[8,9,23,28],jax:22,jcamp:[18,23,33],jcamp_read:33,jdx:[23,33],jeannerat:[2,18],jeffrei:[2,18],jia:[2,9],jian:[2,9],jie:[2,9],jmb:[2,9],johann:4,john:4,join:[12,29],joint:22,jolliff:4,jordi:[4,25,29],jorlugaqui:8,journal:[2,7,9,15,18,22,24,33],jp:22,json:[7,9,12,15,18,22,23,28,29],jsondata:[8,29],jsonview:24,jupyt:[3,7,8,10,12,13,14,15,16,20,21,22,29],just:[18,23,24,25],juypter:30,jwt:22,k:[10,22],kb:8,kcc:[2,9],kch:[2,9],keep:33,kegg2:22,kegg:22,kei:[14,18,33],ken:4,kept:23,key_fil:7,key_password:7,keyboardinterrupt:[7,15],keyfil:7,keyword:[7,33],khpcprhqvvszah:12,kim21:[2,9],kim:[2,4,9,10,12,13,14,15],kind:[7,9,12,22],knapsack:22,knapsackfamili:22,knight:4,know:[8,13,22,23,24,25,27],knowledg:22,known:[10,33,34],koidmi:22,kovat:15,kr:10,kroenlein:4,kruve:22,kruvelab:22,kwarg:[7,15],kxnxzcpbsa:13,l:[2,7,13,33],lab:[22,23],label:[22,25,33],laboratori:18,lambda:33,lambda_max:33,lambert:33,lancashir:[2,18],land:18,lang:[2,18,22],langaug:28,languag:[22,23,28,29,33],larg:[12,15,22,23,25,32],larger:[18,29],largest:33,last:[7,15,23,29],lastupd:8,lastx:33,later:8,latest:21,latin:23,launch:[23,33,34],law:33,layer:[14,25,29],lead:4,leader:13,leah:[4,28],leak:[7,15],learn:[0,7,8,9,10,12,13,14,15,19,21,22,23,24,25,28,29,30,33],least:[22,25],leav:[7,15],left:[18,23],legacy_id:22,legend:10,legitim:28,len:[7,8,10,14,15],length:[7,33],leonid:[2,9],less:[10,15,23],let:[10,15,23,33],letter:[25,28],level:[7,16,18,23,33],leverag:33,lf:23,li:[2,4,9,10],lib:[7,15,33],liber:33,librari:[10,22,33],libretext:15,licence_link:22,licens:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],licenseurl:15,life:22,lifecycl:[5,18],light:33,lightweight:23,like:[3,7,9,12,15,18,22,23,25,28,29],limit:[12,15],line:[7,9,12,14,15,18,22,29,33],linear:18,linecap:7,linejoin:7,linetoolong:15,link:[8,18,22,23,33],linked_record:22,linkedin:22,linking_record:22,linux:23,lipid:22,lipidmap:22,liquid:13,list:[8,10,12,15,18,22,25,33],list_of_http_header_field:22,literatur:24,lithium:10,live:[1,19],liver:22,livermorium:10,llow:0,llull:4,load:[8,10,21,24,33],loc:10,local:[16,25],locat:[18,33],log:[14,33],log_epsilon:33,logarithm:33,loghdr:22,logic:[18,33],login:[17,22],longtitl:8,look:[7,8,10,15,22],loop:[8,15,21,22],lossi:22,lot:[8,22,24],lotu:22,louprkontzgtk:7,low:28,lower:[17,19],lr:10,ltkb:22,lu:22,luck:28,lv:10,lww6a1:22,m0:[7,21],m1:[12,13,21],m:[2,4,7,15,18,21,22,25],maastricht:22,maastrichtunivers:22,mac:23,machin:[0,1,5,12,18,19,20,26,27,29,30],maco:23,made:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,28,29,33],magnesium:28,mai:[12,15,18,22,23,25,32,33],main:[24,33],main_pag:22,maintain:[18,22,33],mainten:33,mainz:4,major:[25,33],make:[5,7,8,9,10,15,23,24,25,32,33],man:22,manag:[0,2,16,18,19,20,33],mandatori:33,mani:[0,3,9,12,15,18,19,22,23,24,25,28,30],manifest:5,manipul:[27,30,33],manner43:18,manual:[18,22],map:[18,22,33],marin:22,marinespeci:22,mark:[2,13,18],markdown:[9,23,24,33],markerdb:22,markup:[8,22,23,28,29],mart:13,marvinsketch:25,mass:22,massachusett:4,match:[5,8,13,18,29],materi:[0,3,6,12,13,18,19,22,27,30,33],mathemat:33,matplotlib:[7,10,33],matrix:33,max:33,max_retri:[7,15],maxi:33,maxim:12,maximum:[13,15,33],maxx:33,mbi:22,mc:[10,22],mcewen:[2,4,28],mcf:9,mct09a:22,mcw:22,meacham:22,mean:[0,5,12,15,18,22,23,25,29],meaning:18,meant:26,measur:[10,15,33,34],media:18,medic:[13,22],medicin:[9,22],medium:8,melt:7,meltingpoint:10,member:[0,30],membran:22,memori:[7,15,33],men230:33,menashi:33,mendelian:22,mention:15,menu:23,merck:15,mesh:[7,22],messag:[12,14,22,29],meta:5,metabol:22,metabolit:22,metabolom:22,metadata:[5,18,22,23,24,25,30,33],metal:[10,22],metalloid:10,metecc:22,methanol:[7,13],method:[5,7,14,15,22,29,34],methoxi:7,methoxycinchonan:7,methoxycinchonidin:7,methoxynaphthalen:13,methyl:29,methylamino:13,methylpyrimidin:29,mg:13,mgi:22,mi:13,micad:22,michigan:9,microsoft:12,might:[5,18,22,23,27,28,30,32],mime:14,min:7,mina:22,mine:19,miner:22,mini:33,minimum:33,minnesota:22,mint:24,minx:33,misinterpret:23,misspel:28,mit:7,miter:7,miterlimit:7,mixtur:[13,28],ml:[5,13],mls001304069:13,mm:7,mm_idx:7,mms_valu:7,mms_values_float:7,model:[18,22],model_and_format:22,modifi:33,modul:33,modular:33,mol:[18,21,33],molar:33,molecul:[12,14,22,25,29],molecular:[2,8,9,18,22,29],molecularformula:[7,12,13,14],molecularmass:7,molecularweight:[12,13],molform:33,molfromsmil:21,moli:22,molmedb:22,molsperrow:21,molstogridimag:21,moltoinchi:21,moltoinchikei:21,mondai:33,monograph:13,more:[3,5,7,10,12,15,17,18,19,23,26,29,32],moscovium:10,mosgard:7,most:[7,12,15,18,22,23],motrin:13,mous:[9,22],move:15,mp:33,ms:[15,18,21,23],msg:15,mt:10,much:[8,24],mucinex:13,multi:22,multipl:[9,12,14,18,19,23,29,31,33],multipli:22,mundai:[4,8,9,10,12,13,14,15,33],must:[18,22,33],mustafa:4,my_smil:21,mycid:[13,14],mydata:15,myfe:13,mysql:23,n1:14,n1c:14,n1cc2c:14,n2:14,n:[2,7,10,12,13,14,18,21,25,29],n_casrn_list:7,n_detail_data:7,n_idx:7,n_search_data:7,name:[7,10,11,12,15,18,22,28,29,33],name_idx:7,name_typ:13,nan:10,nanomateri:15,naproxen:13,nar:[2,9],nasal:13,nation:[4,22],nativ:[18,29,33],natur:[15,22],naturalproduct:22,navig:[0,5,10,33],nbk5330:22,nbyte:15,nc3:14,nc:[7,12,14,21],ncbi:[9,10,12,13,14,15,22],ncc:14,nci:[22,29],ncit:22,ncitbrows:22,ncol:10,ncollect:33,ne:10,necessari:[10,15,33],necessit:18,necrosi:9,need:[0,5,7,10,13,14,15,16,18,19,21,23,24,25,29,33],neg:28,neighbor:13,neil:15,nequim:22,net:22,netherland:22,network:[19,22,29],neutral:25,never:32,newlin:[12,21,23],nexaf:13,next:[14,15,21,23,33],nextmov:22,nextmovesoftwar:22,nextprot:22,nf:22,nfdi4chem:22,nh:10,niaid:22,nice:[22,29],nicer:29,nicola:4,night:13,nih:[9,10,12,13,14,15,22,29],niosh:22,nist:[22,33],nite:22,nitrat:29,nl:22,nlm:[9,10,12,13,14,15,22],nm:[22,33],nmr:18,nn:12,no3:29,noaa:22,nobl:10,node:15,noinspect:33,nomenclatur:[22,25,34],non:[7,12,13,15,33],none:[7,8,10,15,22],nonmet:10,nonyno:7,normal:[7,8,29],north:4,notat:[8,9,12,14,22,23,28],note:[7,8,12,13,14,15,18,22,29],notebook:[0,3,7,8,9,10,12,13,14,15,20,21,22,23,24,25,29,30],notebookmarkdown:33,notepad:23,noteworthi:[12,15],notimplementederror:7,novaf:13,novic:[9,33],now:[7,10,15,24,32,33],np:[10,33],npatla:22,npf403:22,npg:22,npoint:33,nrvpmfhphgbqlp:7,ns00079374:13,nsc106567:13,nsc33634:13,nsc759616:13,nsc:[7,13],nuanc:26,nucleic:[2,9,22],num_page_tot:15,num_result:7,number:[5,8,10,15,18,22,23,33],numer:[23,33],numpi:[7,10,33],o04281:8,o1:14,o2:12,o3:12,o:[7,10,12,13,14,15,21,29],ob:21,obconvers:21,obj:8,object:[7,8,9,10,14,15,18,23,24,28,30],obmol:21,obophenotyp:22,obtain:[7,21,25],obviou:[18,33],oc1:[13,14],oc:7,occ:7,occup:22,occurr:22,ocean:22,odor:15,oet:9,off:[7,13],offici:33,offset:7,often:[13,15,33],og:10,oganesson:10,oh:7,ol:[7,13],olefin:8,omim:22,onc:[8,25,33],one:[8,9,12,14,15,18,22,23,25,29,33],onedr:23,ones:25,onli:[7,12,14,15,18,23,29,33],onlin:[0,3,6,8,9,16,19,22,25,27],ontolog:[9,22],op:23,opac:7,open:[3,7,12,15,16,18,19,22,23,25,33],openbabel:[21,25],openli:19,opensmil:25,opentarget:22,oper:[5,12,18,23,29,33],opposit:8,opsin:25,opt:[7,15,33],optic:33,optim:5,option:[7,12,14,15,23,24,25,29],orang:[13,22],orcid:18,order:[7,12,18,22,23,29,30],org:[2,7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],organ:[5,9,15,18,22,23,29,33],organisation_id:22,orient:33,origin:[18,23,33],ornex:13,oryctolagu:15,oserror:[7,15],osrd:33,other:[0,3,5,6,7,9,12,13,18,19,20,22,23,24,25,26,28,33],otherwis:32,otrinol:13,our:[7,17,18,19,22],out:[5,7,8,13,15,18,22,23,29],outcom:[7,8,9,10,12,13,14,15,21,22,23,24,25,29,33],outfil:15,outlin:18,output:[1,12,14,15,18,24,25,28,29,33],over:[8,22,24],overal:[17,18,28],overload:15,own:[18,19,22,26,33],owner:33,ownership:18,oxidationst:10,p00184:9,p10828:15,p1654:13,p450:9,p:[2,15,29,33],pac199668122193:8,pac:[2,8,18,24],pack:14,packag:[7,15,22,25],page:[2,8,9,10,12,18,22,23,25,33],page_curr:15,page_data:7,page_idx:7,pagin:15,pair:[18,33],panda:10,panel:15,panther:22,pantherdb:22,paper:[9,10,15,18,22,24,25,29,33],param:[7,15],paramet:[5,12,14,15,18,33],parenthes:33,pars:[5,15,22],parser:25,part:[11,18,19,24,28,29],partial:[13,24],particular:[9,12,26],particularli:23,pass:7,password:22,patent:[9,15],path:[8,14,15,23,24,29,33],pathbank:22,pathogen:22,pathwai:[2,9,15,22],pattern:29,paul:[2,9],pawli:4,pd:10,pdb:22,pdf:[8,25],peak:18,pediacar:13,peer:15,pentahydr:28,peopl:[13,18,33],per:[7,12,15,22],perform:[22,33],perhap:14,period:[10,15,22,23],periodict:10,persist:18,person:18,persona:16,perspect:[5,24],pertain:0,pertin:15,peter:7,pfam:22,pharm:22,pharmaceut:[13,22],pharmaci:13,pharmacolog:22,pharmacopeia:13,pharmacopoeia:13,pharmakon1600:13,pharmgkb:22,pharo:22,phd:28,phenyl:13,phenylpropan:13,php:22,physic:[10,15,18,22,33],physical_and_theoretical_chemistri:15,physical_and_theoretical_chemistry_textbook_map:15,physical_properties_of_matt:15,pick:[22,23],picnic:13,pid:18,piec:[15,23,33],pilot:22,pip:33,pistoia:22,pistoiaalli:22,pka:32,pkb:32,place:18,plai:[18,24,33],plain:[8,33],plan:18,plane:8,plant:22,plantcyc:22,plantreactom:22,platform:[0,3,19,33],pleas:[3,8,12,17,22,25],plot:[7,23,33],plt:[7,10,33],plugin:24,pm:[13,22],pmc8363119:9,pmcid:9,pmid:9,png:[8,12,13,14,18,21,28,29,33],point:[0,7,15,23,30,33],pointer:23,pois:15,polar:12,polarimetri:18,polici:[12,15,22],polybutadien:7,polygon:7,pombas:22,pool_timeout:[7,15],popular:[9,12,23],portabl:[22,29],portal:22,portion:18,posit:8,possibl:[0,12,13,14,15,18,30],post1:33,post:[10,14,22],potenti:[12,13,14,15,18,25],power:[9,12],pprint:7,practic:[0,3,5,12,17,18,19,23,26,34],practition:19,pre:33,preced:25,precis:[18,22],predict:[5,10],prefer:[18,25],preferred_clock:[7,15],preload_cont:[7,15],prep:[7,15],prepar:[5,19,31,33],present:[0,8,9,15,23,30],preserv:[7,18,23,25,33],press:[7,33],pressur:[10,13,15,22],preval:23,previous:[10,15],primari:18,primarili:18,principl:[0,1,2,5,18,19,33,34],print:[7,8,12,13,14,15,21,22,29,33],prioriti:33,probabl:7,probe:[18,22],problem:33,proce:5,procedur:[15,33],process:[0,5,18,19,22,23,25,33],proconsortium:22,produc:[22,33],product:[13,22],profession:18,profici:19,profile_typ:22,program:[8,9,10,11,12,13,14,15,22,23,25,28,29,33],programat:[10,15],programm:[5,33],programmat:[0,5,12,13,15],programmt:22,progress:33,project:[2,17,18,19,22,33,34],prolog:12,propan:29,propano:13,propanol:13,proper:33,properti:[7,10,13,14,18,22],properties_of_liquid:15,propertycit:7,proport:33,proprietari:33,protein:[2,9,12,15,22],proteinatla:22,protoc:9,protocol:[0,2,5,6,9,18,30],protocolerror:[7,15],proven:[18,22,33],provid:[0,3,5,6,9,10,12,14,15,17,18,19,22,24,25,26,29,30,32,33],proxi:[7,15],proxim:22,pseudo:13,pseudoephedrin:13,pseudophedrin:13,psi:13,pt23:[2,5],pt:[7,8],pubchem:[2,21,23,25,28],pubchemrdf:12,publish:[0,3,7,22,33],pubm:9,pubmed_id:22,pug:[9,10,22],pug_view:15,pugrest:14,pugrest_input:12,pugrest_oper:12,pugrest_output:12,pugrest_prolog:12,pugrest_url:12,pull:24,puls:18,pure:[2,8,18,19,34],purpos:[18,25,33],put:[23,24,29],py:[7,15],pybel:21,pypi:[29,33],pyplot:[7,10,33],pyprotectedmemb:33,pyrazol:7,pyrazoleacet:7,pyshadowingnam:33,python3:[7,15,33],python:[7,9,10,13,14,15,20,21,30],pytz:33,q27108108:13,q:[7,22,29],qhrnxk:22,qingliang:[2,9],qsm:7,qualaquin:7,qualiti:[0,5,22,30],quantit:22,quantiti:18,queri:[7,9,11,15,23,28],queryabl:18,questionnair:17,qui:22,quickli:[7,28,33],quin:7,quinex:7,quinin:7,quinine_detail_data:7,quinine_rn:7,quinine_search_data:7,quinlex:7,quinlup:7,quinolyl:7,quit:[18,25],quot:[22,23,25,33],qut5xvq:22,qwrguyrksa:21,qyr:13,r7kwy7:22,r:[2,7,9,13,15,33],ra:33,rabbit:15,rai:18,rais:[7,15],ramon:4,rang:[0,3,7,10,15,30],rank:22,rapid:33,rat:22,rather:[8,23,29,33],raw:[8,18,22,33],rawtitl:8,rcsb:22,rda:[18,34],rdchem:21,re:[0,3,8,12,17,18,29],reach:24,reaction:22,reactom:[9,22],read:[7,8,12,15,22,23,29],read_csv:10,read_timeout:15,readabl:[0,1,5,12,18,19,20,26,27,30,33],reader:[14,33],readi:[5,18,20,22,33],readili:[0,15],readinto:15,readlin:15,readm:33,readstr:21,readthedoc:21,real:[13,19],realiz:[18,28],realli:[8,28],reanalysi:33,reason:[14,15,23],reassess:5,receiv:[15,23],recent:[7,15,18,23],recent_d:7,receptor:15,recip:[0,6,7,8,9,10,12,13,14,15,20,21,22,23,24,25,27,29,30,32,33],recogn:[12,18,23,29],recommend:[8,15,33],record:[9,12,13,14,18,22],record_id:15,record_typ:[12,15,22],recordnumb:15,recordtitl:15,recordtyp:15,rect:7,recv_into:15,redirect:[7,15],redistribut:18,reduc:[22,33],ref:33,refer:[0,8,13,15,18,21,22,25,29,30,33],referenc:[2,18],referencedin:8,referencenumb:15,reflect:18,refract:15,refresh:23,regex:[8,29],regist:[18,22],registr:[7,18,22,24],registri:[22,23,33],regular:[8,29],regularli:[3,8],regulatori:15,rel:[8,26,28],relat:[7,9,12,13,15,18,20,22,25,34],relationship:18,release_conn:[7,15],relev:[0,9,10,30],reliabl:[5,6],reliefmaximum:13,reluct:23,rememb:25,remot:22,remov:[7,8,12,13,21,23,29],remove_html_tag:8,render:7,repeat:5,replac:[8,15,33],replacedrn:7,report:[2,22,23],repositori:[0,5,6,12,16,18,22,28,29,33],repres:[14,18,19,23,29,33],represent:[5,9,10,12,15,18,22],reproduc:5,republish:18,reput:22,reqdata:[8,29],reqest:12,reqimg:29,request:[8,9,10,11,13,14,15,28,29,33],requir:[7,15,16,29,33],rerun:[8,29],res2d:12,res3d:12,research:[0,2,3,5,6,9,18,19,22,23,24,27,32,33,34],reserv:33,resist:15,resolut:[18,25],resolv:[18,29],resort:25,resourc:[1,2,3,5,9,12,18,19,22,24,28,34],resourcewarn:[7,15],resp:[7,15],respect:[9,15],respons:[7,15,19,22,25],response_conn:[7,15],response_kw:[7,15],response_typ:22,rest:[9,10,15,22],result:[5,9,12,14,22,23,25,26,33],retent:15,retri:[7,15],retriev:[5,6,9,10,13,14,15,22,23,25,28,29],reus:[0,1,5,7,8,9,10,12,13,14,15,18,19,21,22,23,24,25,26,28,29,31,33,34],reusabl:[0,18,19,20,33],reuser:18,review:[6,7,8,9,10,12,13,14,15,17,21,25,28,29,33],rezquin:7,rf:10,rg:10,rgd:22,rhea:22,rhinalair:13,rich:18,right:[10,23,33],rmd:33,rn:10,robert:[2,18],role:[18,22],ror:18,round:[7,22],rout:[12,15],routin:[22,33],row:[10,14,22,23],royal:[15,22],rruff:22,rs:13,rstrip:21,rtype:[7,15],rugbi:13,rugbynas:13,rule:[23,28],run:[23,29,30],rwd:22,rwth:4,rzepa:[2,18],s001620:22,s05983:8,s13321:15,s1:[7,12,21],s900006580:13,s:[2,7,9,10,12,13,14,15,18,22,23,24,26,29,33],sa:[8,22,25],saccharomyc:[9,22],safe:22,safeti:[15,22],safework:22,safeworkaustralia:22,sai:12,salicycl:33,salicyl:33,salli:33,salt:29,sam:[8,9],same:[8,14,15,18,23,24],same_connect:14,same_isotop:14,same_stereo:14,same_stereo_isotop:14,sampl:[11,12,18,33],sample_data:33,samuel:[4,10,12,13,14,15,33],san:[4,7],sandbox:33,satisfi:33,save:[12,15,23,33],saved_st:22,savefig:33,saw:8,scalabl:5,scale:[0,22,29],scalfani:[4,7,21],scatterplot:10,scenario:[0,5,7,8,9,10,12,13,14,15,19,21,27,29],schema:[18,23,24],schembl33285:13,scholarli:7,scienc:[19,22,27,28,33,34],scientif:[2,15,22,33],scientist:[3,5],scifind:25,scope:[0,24],score:9,scratch:33,screen:33,screenshot:15,scripp:22,script:[10,12,15,23,24,28,33],scrollabl:22,sdata:2,sdf:[12,18,25],se:22,seaborn:10,search:[5,6,9,12,18,19,23,25,28,29],search_base_url:7,searchabl:22,searchcod:8,searchterm:[8,22],searchurl:22,second:[12,15,25],secondari:13,secretari:33,section:[5,6,12,20,22,26,27,31,33],sector:19,see:[1,8,12,15,17,19,22,23,24,28,29,30,32,33],seem:28,seen:33,segment:14,select:[18,23],selen:7,self:[7,15,19],semant:33,semanticscholar:22,semi:18,semprex:13,send:[7,15,29],send_kwarg:[7,15],sens:[5,13],sent:12,separ:[12,14,15,18,23,33],sequenc:[18,22,29],serial:18,serif:7,serv:[18,19,23,25],server:[8,15,23,29],server_hostnam:7,server_sid:7,servic:[2,7,9,10,12,15,18,22,23,25,27],session:[7,15,21],set:[7,8,10,15,16,18,21,22,23,32,33],set_alpn_protocol:7,set_styl:10,setoutformat:21,settimeout:7,setuptool:33,sever:[7,9,12,22],sg:10,sgd:22,shape:[7,10],share:[0,1,5,17,18,19,26,34],sharealik:8,shift:[18,33],shoemak:[2,9],shop:33,should:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,27,29,33],show:[7,8,12,15,18,21,22,23,33],shown:[7,10,12,13,15],sid:[9,15],side:[5,8],sigma:13,sign:13,sign_in:22,signup:22,similar:[9,15,33],simon:[4,33],simpl:[7,23,25,28,33],simpli:[23,33],simplic:14,simplier:32,simplifi:[12,18],sinc:28,sine:13,singl:[12,18,28,33],sinu:13,sinuf:13,siqian:[2,9],site:[1,7,15,22,25,28,30,33],situat:[23,28],six:23,size:[7,12,22,24],sk:8,skill:[7,8,9,10,12,13,14,15,19,21,22,23,24,25,29,30,33],slash:14,sleep:[7,12,13,14,15],small:[10,12,23],smi:[21,28],smi_bd:7,smi_casrn_list:7,smi_detail_data:7,smi_search_data:7,smile:[7,11,12,18,28,29,33],smiles_list:21,smooth:[17,19],smr000718787:13,sn:10,snfg:22,snippet:30,so:[5,8,10,22,23,24,25,33],soap:12,soc:33,societi:[7,15,22],sock:7,sock_and_verifi:7,socket:[7,15],socketio:15,sockettimeout:7,sodium:13,softwar:[22,23,25,33],solid:10,solubl:15,solut:[21,33],solv:33,solvat:28,solvent:[22,33],some:[5,9,10,12,14,15,18,23,25,33],someon:29,somewhat:15,sonja:4,sort:24,sourc:[0,7,8,9,10,15,18,33],sourceid:15,sourcenam:15,sourcenumb:7,sourcet:22,southampton:4,southan:22,sp:33,space:[7,12,15,22,23],span:33,sparql:23,speak:23,spec:18,speci:[22,25,33],special:[14,15,18],specialist:18,specif:[2,5,9,12,18,20,23,25,30,31,33],specifi:[7,12,15,18,33],spectral:[18,33],spectromet:33,spectrometri:22,spectrophotomet:33,spectrophotometr:33,spectroscop:[2,18,33],spectroscopi:18,spectrum1500516:13,spectrum2:33,spectrum:[18,23,33],speed:12,split:[13,14,18,33],splitlin:33,spread:24,spreadsheet:[12,23,33],squar:7,squib:33,src:22,srchdr:22,ssl:[7,15],ssl_:7,ssl_context:7,ssl_maximum_vers:7,ssl_minimum_vers:7,ssl_sock:7,ssl_version:7,ssl_wrap_socket:7,sslcontext:7,sslsocket:[7,15],sslsocket_class:7,ssltransport:7,stabil:16,stage:[5,31],stakehold:[0,3],stand:12,standard:[0,2,3,5,9,10,13,14,18,19,22,23,25,28,29,30,33,34],standardst:10,start:[7,15,25,29,32,33],state:[9,10,12,13,15,18,33],statement:[7,12,15],states_of_matt:15,statu:[8,14,15,22,29],stdinchi:[28,29],stdinchikei:[28,29],step:[5,9,12,23],stereochemistri:[8,14,25],stereoisom:9,stereoisomer:8,stewardship:[2,19],still:23,stockholm:22,stop:[23,29,33],storag:33,store:[9,12,15,18,22,23,33],stp:10,str:[7,8,15],straightforward:12,strategi:1,stream:[7,15],strength:13,string:[7,8,11,12,13,15,18,21,23,24,28,29],stringifi:23,stringio:14,stringwithmarkup:15,strip:[8,12,13,14],stroke:7,structur:[5,8,9,14,18,19,22,23,24,25,28],stuart:[2,4,7,8,18,21,22,23,24,25,28,29,33],student:[0,28],studi:33,style:[7,15],stylesheet:23,sub:[7,8],subdirectori:24,subject:22,sublay:[14,25],sublim:23,sublist:7,submit:[3,9,15],subplot:10,subsequ:32,subset:[10,12],substanc:[7,9,12,13,15,18,22,28],substitut:33,substructur:9,subtl:15,success:[22,29],sudaf:13,sudafednas:13,sudogest:13,sudomyl:13,suggest:17,suit:33,suitabl:33,sulfat:28,sulfoxid:15,summari:[9,12,15,33],sun:13,sunghwan:[2,4,9,10,12,13,14,15],superscript:28,suphedrin:13,suphedrine12:13,supplement:33,supplemental_modules_:15,supplementari:33,support:[0,1,3,9,12,16,17,19,28,33,34],support_link:22,suppos:15,suppress_ragged_eof:7,sure:[7,15,23,25,33],surechembl:22,surfac:12,surridg:22,surround:[8,23],suscept:23,svg:[7,21,22,28,29],svg_idx:7,svg_string1:7,svg_string:7,sw:7,sweden:22,swedish:22,swiss:22,symbol:[10,18,22,33],symptom:13,syn:7,syndiotact:7,synonym:[7,13],synonyms_flat:7,synonyms_list:7,syntax:[11,14,33],system:[5,7,18,19,22,23,33],systemat:[5,18,25,29],systematicnam:29,systemtimewarn:7,t10:21,t13:7,t14:21,t16:12,t3db:22,t8:21,t:[14,23,25,28,33],tab:23,tabl:[10,18,22,23,33],tabular:33,tag:[8,23],take:[7,18,24,25,30,33],talk:8,tangibl:26,tap:[5,19],target:[0,2,9,13,22,30],task:[0,9,12,15,18,20,26,30,31,33],taxon:[9,15],taxonomi:[2,9,15,22],teach:28,teacher:10,technic:[0,2,5,23],techniqu:[0,19,22],technolog:4,teeter:13,temperatur:[10,15,18,22],temporarili:12,ten:12,tennessin:10,term:[5,9,16,18,22,23],terminolog:[8,18,34],termvers:8,test:[9,33],texa:4,text:[7,8,9,10,12,13,14,18,23,28,29,33],textedit:23,textmat:23,textual:[8,18,33],than:[7,8,10,12,14,18,23,29,32,33],thebiogrid:22,thegencc:22,thei:[5,8,13,18,22,23,25,28,33],them:[5,8,15,17,22,23,25,28,29,33],themselv:18,therapeut:22,therefor:[5,10,12,15,24,33],thermophys:22,thesauru:22,theta:13,thi:[1,2,5,6,7,8,9,10,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33],thiazol:29,thiessen:[2,9],thing:[15,33],think:[23,24],third_parti:22,thirti:23,those:[5,10,17,18,23],though:[8,23],thought:33,thousand:23,three:[9,13,18],threshold:14,throttl:12,through:[0,1,2,3,5,7,9,16,20,21,23,24,33,34],throughoout:24,throughout:18,throughput:9,thu:[5,7,15,18,28],thyroid:15,tiejun:[2,9],tighter:14,time:[7,8,12,13,14,15,22,23,24,28,29,33],timeout:[7,15],timeout_obj:[7,15],timeout_valu:[7,15],timeoutsauc:[7,15],tin:28,tip:[17,19],tipl:33,titl:[7,8,22,30,33],tls_in_tl:7,tn:13,tnf:9,tochead:15,togeth:[18,25,33],tolist:10,too:24,tool:[0,3,9,17,19,23,28,29],toolbox:19,toolkit:33,top:[7,33],topcar:13,topic:[7,8,9,10,12,13,14,15,21,22,23,24,25,29,33],topolog:12,torr:7,total:[7,15,29],toxic:[15,22],toxicogenom:22,toxicolog:15,toxin:22,toxnet:22,tpsa:12,traceback:[7,15],track:33,train:0,trajectori:22,tran:[8,14,33],trans_isomer:8,trans_izomeri:8,transfer:[9,10,12,15,18,23],transform:[7,23],transit:10,translat:[7,18],trcbd2:22,treat:12,tree:23,triacin:13,trichloro:28,trick:22,trigger:[7,15],trilitron:13,trimer:7,triph:13,trust:[22,25],ts:10,tsgmte:33,tsv:23,ttd:22,ttn:22,tumor:9,tussaph:13,tutori:[0,6,12,23,24,25,27],twelv:24,two:[9,12,13,14,15,23,25,33],txt:[12,13,14,23,33],tylenol:13,type:[0,6,8,15,18,21,22,24,33],typic:[8,15,18,22,29,33],u00b0c:15,u:33,ua:22,ucla:22,ufmg:22,uhfffaoysa:[7,12,29],uk:[8,15,22,28,29],umbrella:33,unabl:14,unambigu:[5,22],uncom:15,uncompress:33,undefin:22,under:[7,8,9,10,12,13,14,18,21,22,23,24,25,28,29,33],underli:[10,19],understand:[1,7,8,9,12,13,21,22,23,24,25,29,30,33],underwai:18,unencrypt:33,unfamiliar:0,uni:22,unicam:33,unicarbkb:22,unichem:[25,28],unicod:23,unig:22,unii:13,union:[8,19,34],uniphednas:13,uniprot:22,uniqu:[9,18,33],unit:[13,22,33],univers:[4,7,22],universitat:4,unix:22,until:[15,24,29],unverifi:7,up:[8,12,21,23,28,33],updat:[2,7,8,9,15,22,23,28,33],updated_at:22,upload:25,upon:23,upper:10,uppercas:25,upstream:5,uri:7,url1:15,url2:15,url:[2,7,8,9,10,11,14,15,18,22,24,28,29,33],url_for_logo:22,urllib3:[7,15],urlopen:[7,15],us:[0,3,5,7,9,10,11,12,15,17,18,22,23,24,27,28,34],usabl:[0,25,32],usag:[12,15,22,24,28],usan:13,user:[0,5,8,9,10,12,15,16,18,22,23,28,30,33],user_defined_tag:22,usernam:22,usesvg:21,usethelibrari:21,usp:13,usual:[18,22],utf:[23,33],util:[2,5,7,12],uvcb:22,uvvis_metadata_fig:33,v3:21,v8nve2:22,valid:[5,7,23,28,33],valu:[7,8,10,12,15,18,22,23,29,33],valueerror:[7,15],van:22,vandf:13,vapor:15,vari:23,variabl:[8,15,23,29],varieti:18,variou:[6,12,15,18],vector:[22,29],vendor:33,veri:[9,10,13,15,23,24,28,33],verifi:[7,15],version:[8,15,25,33],vet:22,veupathdb:22,veuzhwnksa:12,via:[8,9,18,22,23,28,29,33],vienna:22,view:[2,7,8,9,12,29],viewbox:7,vincent:[4,7,21],vinylquinuclidin:7,violat:[12,15],viscos:15,visibl:18,visual:[5,7,10,12,19,33],visualis:33,vocabulari:[18,22],volatil:22,voltammetri:18,volum:[12,33],w3:7,w3id:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],w4tncg:22,w:[12,13,15],wa:[1,3,10,18,28],wai:[7,12,14,18,19,22,23,24,25,26,29,33],walker:22,walph:13,want:[8,10,15,22,23,28,29],warn:[7,14],watched_record:22,water:[13,22,28],wavelength:33,wcms_113134:22,we:[5,7,8,10,13,15,18,21,22,24,25,29,33],web:[9,10,12,15,18,19,23,25,27,29],web_polici:15,webbook:[22,33],webpag:9,websit:[22,23,28,29,33],weight:[7,12],weird:23,welcom:[1,30],well:[12,15,18,19,25,33],went:[7,15],were:[7,18,22],wfchemcookbook:33,what:[3,5,7,12,13,15,24,25,27,30],whatev:18,when:[12,13,15,18,22,23,25,26,28,30,33],where:[0,5,8,10,12,15,18,22,23,25,27,28,30,33],whether:12,which:[7,8,9,10,12,13,15,18,22,23,33],white:7,who:[13,17,22,33],whole:[24,33],whose:[13,18],why:23,wide:15,width:7,wiki:[3,8,22],wikidata:[22,23,25],wikipedia:[8,22,25],wil16:[0,2,19],wilkinson:2,willighagen:22,window:23,within:[5,7,10,15,18,23,28,33,34],without:[10,23,33],wln:13,won:[23,33],word:[13,18],work:[0,1,3,5,14,15,19,22,24,25,26,28,29,30,33],workflow:[0,5,20,26,30,34],world:[13,19,22,34],worldfair:[1,2,19,34],worm:22,wormbas:22,wors:23,worth:[12,25],would:32,wqtfkv:22,wr297608:7,wrap_socket:7,write:[8,12,22,25,29,33],writestr:21,written:[22,23,29,33],www3:22,www:[7,9,15,21,22,33],wzblmqshsa:7,x1:7,x2:7,x64:[7,15,33],x:[7,10,13,18,33],xdr:22,xe:10,xenbas:22,xfactor:33,xhtml:23,xlabel:[7,10,33],xlogp:12,xml:[7,8,12,18,23,28,29,33],xmln:7,xpath:23,xqueri:23,xslt:23,xtc:22,xunit:33,xxx:23,xy:33,xypoint:33,y1:[7,13],y2:7,y:[7,10,33],ydt_wdh_mrd:22,ye:4,year:22,year_creat:22,yeardiscov:10,yeast:[9,22],yeastgenom:22,yfactor:33,yl:[7,13,29],ylabel:[7,10,33],ymdb:22,you:[3,5,7,8,9,10,12,13,14,15,21,22,24,25,28,29,33],your:[17,22,23,24],yourself:[23,33],yu:[2,9],yunit:33,z:[14,33],zaslavski:[2,9],zebrafish:22,zenodo:2,zephrex:13,zero:15,zfin:22,zh:8,zhang:[2,9],zip:18,zope:33,zyrtec:13},titles:["About this Cookbook","About the IUPAC FAIR Chemistry Cookbook Project","Bibliography","Contribute to the Cookbook!","Project Contributors","The Joy of FAIR","Sources of FAIR Chemical Data","CAS Common Chemistry API","Accessing the IUPAC Gold Book API in Python","Data Repository: PubChem","Accessing the Chemical Elements Data from PubChem","PubChem PUG-REST API","Accessing PubChem through PUG-REST - Part I","Accessing PubChem through PUG-REST: Part II","Accessing PubChem through PUG-REST: Part III","Accessing PubChem through PUG-View","Cookbook development","Feedback on the Cookbook","Glossary","Welcome to the IUPAC FAIR Chemistry Cookbook","Manipulating Data within a Digital Environment","Computing InChIs","Finding a Findable Dataset","Importing Chemical Data into Excel","Importing JSON Citation Data from an API into Google Sheets","Using InChI and InChIKey to annotate your chemical entities","FAIR Techniques","Tools for working with FAIR Chemical Data","OPSIN: Open Parser for Systematic IUPAC Nomenclature","Using the OPSIN API in Python","How to use the Cookbook","Use Cases & Workflows","Reuse of Curated Chemical Data","Structured UV/Vis (meta)data for small molecule characterisation","WordFAIR Chemistry"],titleterms:{"1":[7,8,10,12,13,14,15,21,22,23,24,25,29,33],"2":[7,8,10,12,13,14,15,21,22,23,25,29,33],"3":[7,8,10,12,14,15,21,22,23,25,29,33],"4":[8,10,12,15,21,25,29,33],"5":[8,14,25,29,33],"6":8,"7":14,"case":[25,31],"float":33,"function":[8,22,33],"import":[7,8,12,21,23,24,25,29],"try":[8,29],The:[5,33],about:[0,1,29],access:[8,10,12,13,14,15,24],accur:25,add:8,affin:10,all:15,an:[14,24,25],anaconda:33,annot:[15,25],api:[7,8,11,12,22,24,29],ar:23,atom:10,audienc:33,authent:22,babel:21,basic:12,between:10,bibliographi:2,boil:10,book:8,ca:[7,25],calcul:21,call:29,can:25,charact:23,characteris:33,check:25,chemic:[6,10,12,13,23,25,27,32],chemistri:[1,7,19,34],citat:24,code:[8,12,33],collect:15,comment:33,common:7,comparison:10,compound:15,comput:[12,21,33],construct:12,contribut:3,contributor:4,cookbook:[0,1,3,16,17,19,30],creat:21,crossref:24,curat:[22,32],d:14,data:[6,7,9,10,12,13,15,20,22,23,24,27,29,32,33],dataset:22,definit:8,densiti:10,detail:7,develop:16,dictionari:33,digit:20,displai:7,doc:33,download:8,draw:[7,25],each:7,effort:22,electron:10,electroneg:10,element:10,encod:23,end:23,energi:10,entiti:25,environ:[20,33],excel:23,exemplar:33,extract:29,fair:[1,5,6,19,22,26,27],fairshar:22,feedback:17,file:[8,23,25,33],find:22,findabl:22,format:[22,23,33],formula:[14,29],from:[7,10,15,21,24],get:[12,13,15],given:[13,15],glossari:[18,33],gold:8,googl:[23,24,25],handl:7,have:[22,25],head:15,hierarchi:33,how:30,i:[12,25],ident:14,ii:13,iii:14,imag:29,inchi:[14,21,25],inchikei:25,input:14,instal:33,ioniz:10,its:8,iupac:[1,8,19,28],joi:5,json:[8,24],jupyt:33,last:25,let:25,librari:7,line:23,list:[7,21],load:22,loop:7,make:22,manipul:20,mass:10,melt:10,meta:33,method:33,microsoft:23,modul:21,mol:25,molecul:[7,21,33],molecular:[12,14,21,25],multi:15,multipl:[7,15],my:25,name:[13,25],need:[8,12],nomenclatur:28,notebook:33,number:25,object:[21,33],onli:25,open:[21,28],opsin:[28,29],other:[8,15,29],our:25,output:22,packag:[8,12,29,33],page:[7,15],paramet:7,parser:28,part:[12,13,14],perform:14,point:10,potenti:10,present:22,project:[1,4],properti:[12,15],pubchem:[9,10,11,12,13,14,15,22],pug:[11,12,13,14,15],python:[8,12,22,29,33],queri:[14,29],quick:25,rdkit:21,record:[7,15],refer:9,registri:25,report:33,repositori:9,request:[7,12,22],resolv:25,rest:[11,12,13,14],result:7,retriev:[7,8,12],reus:32,rn:[7,25],run:[12,33],s:25,save:7,scenario:[22,25],search:[7,8,14,22],section:15,select:7,setup:7,share:22,sheet:[23,24],similar:14,singl:15,small:33,smile:[14,21,25],some:7,sourc:[6,22],specif:[7,15],step:[8,22,25,29],string:[14,25,33],structur:[12,13,33],substanc:[25,29],substructur:14,summari:[23,24],superstructur:14,syntax:12,systemat:28,target:33,techniqu:26,term:[8,33],than:15,thi:[0,12],through:[12,13,14,15],tool:[25,27,33],tutori:9,type:23,unambigu:25,under:15,url:12,us:[8,13,14,21,25,29,30,31,33],uv:33,variabl:33,vi:33,view:15,virtual:33,welcom:19,what:[9,23,33],within:20,word:15,wordfair:34,work:[23,27],workflow:31,you:23,your:[25,33]}})
\ No newline at end of file
+Search.setIndex({docnames:["about_cookbook","about_project","bibliography","contributions","contributors","cooking","data_sources","datasources/cas_commonchem","datasources/goldbook_api","datasources/pubchem","datasources/pubchem_ptable","datasources/pubchem_pugrest","datasources/pubchem_pugrest1","datasources/pubchem_pugrest2","datasources/pubchem_pugrest3","datasources/pubchem_pugview","development","feedback","glossary","intro","manipulations","manipulations/computing_inchis","manipulations/dataset_search","manipulations/excel_import","manipulations/gsheets_citations","manipulations/using_inchi","techniques","tools","tools/opsin_api","tools/opsin_api_jn","use_cookbook","usecases","usecases/iupac_pkadata","usecases/uvvis_metadata","worldfair"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinxcontrib.bibtex":9,sphinx:56},filenames:["about_cookbook.md","about_project.md","bibliography.md","contributions.md","contributors.md","cooking.md","data_sources.md","datasources/cas_commonchem.ipynb","datasources/goldbook_api.ipynb","datasources/pubchem.md","datasources/pubchem_ptable.ipynb","datasources/pubchem_pugrest.md","datasources/pubchem_pugrest1.ipynb","datasources/pubchem_pugrest2.ipynb","datasources/pubchem_pugrest3.ipynb","datasources/pubchem_pugview.ipynb","development.md","feedback.md","glossary.md","intro.md","manipulations.md","manipulations/computing_inchis.ipynb","manipulations/dataset_search.ipynb","manipulations/excel_import.md","manipulations/gsheets_citations.md","manipulations/using_inchi.md","techniques.md","tools.md","tools/opsin_api.md","tools/opsin_api_jn.ipynb","use_cookbook.md","usecases.md","usecases/iupac_pkadata.ipynb","usecases/uvvis_metadata.ipynb","worldfair.md"],objects:{},objnames:{},objtypes:{},terms:{"0":[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],"00":[7,8,10],"000":24,"0000":22,"000000":10,"000090":10,"000179":10,"0002":22,"0006":10,"0006cecd00000001":12,"0006cecd00000007":12,"0006cecd0000000d":12,"0006cecd00000013":12,"0006cecd00000015":12,"0006cecd00000016":12,"0006cecd00000017":12,"0006cecd0000001a":12,"0006cecd0000002":12,"0006cecd00000027":12,"000900":10,"000z":22,"001251":10,"001429":10,"001620":22,"001696":10,"001784":10,"002600":10,"003214":10,"003733":10,"0050":13,"005887":10,"008000":10,"009730":10,"01":15,"01093":8,"012183":10,"01500516":13,"019":15,"02":[7,8,9,10,12,13,14,15,21,22,23,24,25,33],"03":[7,22],"0375":15,"04":[7,10],"0459":15,"05":7,"06":[8,22],"0658":33,"066":33,"0779":33,"08":[22,25],"09":[7,22],"0x7f658e7518d0":21,"0x7f658e751990":21,"0x7f658e751a10":21,"0x7f658e751b50":21,"0x7f658e751f10":21,"0x7f658e752490":21,"0x7f658ffb11c0":21,"0x7f658ffb1770":21,"0x7f658ffb17e0":21,"0x7f658ffb1b60":21,"0x7f658ffb1bd0":21,"0x7f658ffb1c40":21,"0x7f658ffb1cb0":21,"1":[2,9,11,28],"10":[2,7,8,9,10,12,14,15,18,21,22,24,25,28,33],"100":15,"1000":[22,23],"1002":[2,9],"10025":7,"10026":7,"10031":7,"10031922":7,"10036":7,"10094":7,"10094367":7,"100x100":12,"1010":24,"10101":7,"10102":7,"10112":7,"1016":[2,9],"10161":7,"1019020":7,"10199":7,"1021":28,"10214":7,"10236":7,"103":10,"10310":7,"1038":2,"104":10,"1048":33,"105":[7,10,33],"10514901":2,"106":[7,10],"10608":7,"106567":13,"106727":13,"107":10,"1071756":7,"107526":14,"108":10,"109":10,"1093":[2,9],"10h":21,"10h2":21,"11":[2,7,9,10,12,14,15,21,22,33],"110":10,"111":[7,10],"112":10,"112433":33,"113":[7,10],"114":10,"115":10,"116":10,"1164":15,"1165":15,"1166":15,"1167":15,"1168":15,"117":10,"118":10,"118122558":14,"1186":15,"11h":21,"12":[7,12,13,14,15,21],"120":10,"12239":7,"123616558":14,"1267651":7,"128544":7,"12h2":[7,12],"13":[7,10,12,14,15,21,28],"130":7,"130950":7,"1310":15,"1311":15,"1312":15,"1313":15,"1314":15,"1315":15,"1316":15,"134601":21,"1351":8,"136":29,"1393":15,"1394":15,"1395":15,"1396":15,"1397":15,"13h2":21,"14":[7,10,12,15,21,22,23,24,25],"140":10,"141623":13,"1443":22,"14445":33,"1449":33,"14571425":14,"14571426":14,"14t19":8,"15":[7,12,21],"150":24,"151":12,"1515":[2,10,18,24],"153":10,"155903259":14,"1560":10,"156391":[12,13],"157010397":14,"1571":14,"1574":33,"1577":33,"158":33,"15h":21,"15h2":21,"15t08":22,"16":[7,10,12,13,21],"160018":2,"1615":10,"162396372":14,"162396442":14,"162396443":14,"162396447":14,"162396448":14,"162396450":14,"162396452":14,"162396453":14,"162396458":14,"162396459":14,"162396460":14,"162396461":14,"162478807":14,"162479130":14,"162685338":14,"162712460":14,"162712462":14,"162712468":14,"162712471":14,"162712482":14,"162712489":14,"162712490":14,"162712498":14,"162712506":14,"1628705":7,"163283236":14,"163283238":14,"163283239":14,"163283243":14,"163283283":14,"163283284":14,"163283322":14,"163283330":14,"163283343":14,"163283370":14,"163283371":14,"163283387":14,"163283390":14,"163283407":14,"163285815":14,"163321803":14,"163341926":14,"163361849":14,"163361997":14,"163361998":14,"163362001":14,"163362005":14,"163362008":14,"163362009":14,"163362014":14,"163362016":14,"163362019":14,"163362026":14,"163362029":14,"163362031":14,"163421961":14,"163941851":14,"164040179":14,"164158215":14,"164159966":14,"16422":7,"164622832":14,"164701733":14,"164701736":14,"164701738":14,"164701741":14,"164701742":14,"164701743":14,"164701748":14,"164701749":14,"164701757":14,"164701758":14,"164701760":14,"164701766":14,"164701772":14,"164701773":14,"164701775":14,"164701776":14,"164701777":14,"164701789":14,"164701794":14,"164701798":14,"164701800":14,"164701802":14,"164701805":14,"164701807":14,"164701812":14,"164701813":14,"164701814":14,"164701815":14,"164701816":14,"164701817":14,"164701818":14,"164701819":14,"164701821":14,"164766036":14,"164766041":14,"164785132":14,"164850071":14,"164850073":14,"164850290":14,"164971185":14,"1650":22,"165179472":14,"165179485":14,"165179486":14,"165179488":14,"165368435":14,"165368436":14,"1657":33,"166149062":14,"166149063":14,"166149071":14,"166149074":14,"166149077":14,"166149089":14,"166149094":14,"166149137":14,"166156664":14,"166156672":14,"166156828":14,"166156829":14,"166156836":14,"166156886":14,"166157017":14,"166157023":14,"166157043":14,"166157052":14,"166157057":14,"166157065":14,"166157157":14,"166157170":14,"166157194":14,"166157205":14,"166157215":14,"166157269":14,"166157277":14,"166157313":14,"166494662":14,"166494843":14,"166537627":14,"166642632":14,"166840326":14,"166840392":14,"166840457":14,"166840466":14,"166840731":14,"166891533":14,"166891547":14,"166891596":14,"166891665":14,"166893182":14,"166893274":14,"166893275":14,"166893276":14,"166893348":14,"166893351":14,"166949500":14,"166949501":14,"166964883":14,"166964886":14,"166964888":14,"166964890":14,"166964899":14,"166964903":14,"166964904":14,"166964908":14,"166964913":14,"166986000":14,"166986065":14,"166986067":14,"166986077":14,"167":[7,33],"167065080":14,"167065082":14,"167065154":14,"167065160":14,"167094315":14,"167094316":14,"167094334":14,"167094341":14,"167203321":14,"167203580":14,"167203581":14,"167203582":14,"167203608":14,"167203609":14,"167206597":14,"167206598":14,"167206599":14,"167206807":14,"167207061":14,"167213710":14,"167229685":14,"167251496":14,"167278770":14,"167331610":14,"167331612":14,"167331630":14,"167331639":14,"167331698":14,"167338845":14,"167338850":14,"167338914":14,"167338917":14,"167338943":14,"167430402":14,"167480975":14,"167480997":14,"167481005":14,"167481033":14,"167481034":14,"167481037":14,"167481072":14,"167481103":14,"167481104":14,"167481130":14,"167481158":14,"167481199":14,"167481201":14,"167481202":14,"167481210":14,"167481232":14,"167481234":14,"167481250":14,"167481257":14,"167481266":14,"167481309":14,"167481324":14,"167481327":14,"167481349":14,"167481356":14,"167481364":14,"167481374":14,"167481379":14,"167481386":14,"167481398":14,"167481400":14,"167481430":14,"167481462":14,"167481474":14,"167481480":14,"167481489":14,"167481535":14,"167481542":14,"167481547":14,"167481557":14,"167481565":14,"167481566":14,"167481575":14,"167481592":14,"167481608":14,"167481637":14,"167481640":14,"167481663":14,"167481675":14,"167481747":14,"167481808":14,"167481821":14,"167481860":14,"167481876":14,"167481880":14,"167481900":14,"167481908":14,"167481917":14,"167481924":14,"167481927":14,"167481929":14,"167481944":14,"167481950":14,"167481970":14,"167481972":14,"167481999":14,"167482005":14,"167482039":14,"167482043":14,"167482074":14,"167482083":14,"167482106":14,"167482130":14,"167482167":14,"167482178":14,"167482205":14,"167482212":14,"167482213":14,"167482218":14,"167482232":14,"167482240":14,"167482261":14,"167482283":14,"167482292":14,"167482295":14,"167482299":14,"167482300":14,"167482314":14,"167482317":14,"167514":[2,9],"167518190":14,"167518234":14,"167521394":14,"167537951":14,"167574477":14,"167574478":14,"167579537":14,"167674037":14,"168":7,"168010016":14,"168093174":14,"168142141":14,"168142152":14,"168142166":14,"168142167":14,"168142213":14,"168154285":14,"168290284":14,"168291677":14,"168301133":14,"168310836":14,"168310837":14,"168476190":14,"168750579":14,"168750586":14,"168750590":14,"168750593":14,"168870655":14,"168878798":14,"168878799":14,"168941969":14,"168942044":14,"168993728":14,"168993735":14,"169084219":14,"169084221":14,"169084224":14,"169084228":14,"169095061":14,"169122295":14,"169193197":14,"169193261":14,"169193357":14,"169193396":14,"169193437":14,"169193547":14,"169193552":14,"169193733":14,"169193751":14,"169193754":14,"169193839":14,"169193895":14,"169193963":14,"169193967":14,"169193968":14,"169193984":14,"169194030":14,"169194114":14,"169194124":14,"169194140":14,"169194186":14,"169194204":14,"169194217":14,"169194236":14,"169194258":14,"169194293":14,"169194319":14,"169194330":14,"169194348":14,"169194427":14,"169240696":14,"169240697":14,"169240701":14,"169240702":14,"169283836":14,"169283867":14,"169283881":14,"169291133":14,"169436361":14,"169436363":14,"169595592":14,"169595627":14,"169595871":14,"169595872":14,"169595876":14,"169595897":14,"169595900":14,"169595902":14,"169595937":14,"169595991":14,"169595994":14,"169595998":14,"169597577":14,"169655654":14,"169655658":14,"169655661":14,"169655677":14,"169655713":14,"169655746":14,"169655747":14,"169655787":14,"169655789":14,"169655830":14,"169676887":14,"169686050":14,"169686051":14,"169707956":14,"169707957":14,"169728040":14,"169728041":14,"169728431":14,"169728432":14,"169732235":14,"169732236":14,"169734644":14,"169735016":14,"169736642":14,"169736643":14,"169737661":14,"169816596":14,"169860851":14,"169860855":14,"169860863":14,"169860866":14,"169860882":14,"169861043":14,"169861121":14,"169861122":14,"169861123":14,"169861126":14,"169861127":14,"169861128":14,"169861209":14,"169861410":14,"169861544":14,"169861545":14,"169861547":14,"169861552":14,"169861641":14,"169861643":14,"169861899":14,"169861924":14,"169862040":14,"169862121":14,"169878303":14,"169878305":14,"169878307":14,"169878308":14,"169878349":14,"169878350":14,"169878352":14,"169878353":14,"169878366":14,"169878439":14,"169878441":14,"169878442":14,"169878445":14,"169878446":14,"169878447":14,"169878448":14,"169878449":14,"169878451":14,"169878452":14,"169878453":14,"169878454":14,"169878455":14,"169878511":14,"169878512":14,"169878513":14,"169878514":14,"169878517":14,"169878631":14,"169878890":14,"169907886":14,"169907978":14,"169914451":14,"169914647":14,"169914666":14,"169914913":14,"169915447":14,"169915455":14,"169915574":14,"169966328":14,"169979396":14,"169979540":14,"169989970":14,"169994700":14,"169994701":14,"169994702":14,"169994703":14,"169994705":14,"169994706":14,"169994745":14,"169994895":14,"169994956":14,"169995108":14,"169995153":14,"169995154":14,"169995311":14,"169995401":14,"169995678":14,"169995679":14,"169995904":14,"17":[7,10,12,21],"170005512":14,"170014641":14,"170036051":14,"170036241":14,"170036248":14,"170036499":14,"170036541":14,"170036602":14,"170036799":14,"170036842":14,"170036848":14,"170036858":14,"170036928":14,"170036943":14,"170036979":14,"170037210":14,"170037247":14,"170038496":14,"170052965":14,"170052972":14,"170052975":14,"170053029":14,"170053129":14,"170053614":14,"170053627":14,"170053669":14,"170053921":14,"170054633":14,"170054800":14,"170060745":14,"170060748":14,"170080981":14,"170151866":14,"170164555":14,"170164590":14,"170164688":14,"170164691":14,"170164767":14,"170165331":14,"170165348":14,"170165489":14,"170165491":14,"170165562":14,"170165698":14,"170165794":14,"170165798":14,"170165926":14,"170166075":14,"170166112":14,"170166207":14,"170166212":14,"170166479":14,"170166597":14,"170166774":14,"170166889":14,"170166912":14,"170166968":14,"170167024":14,"170167073":14,"170167108":14,"170167420":14,"170167453":14,"170167521":14,"170167651":14,"170167675":14,"170167680":14,"170167936":14,"170168021":14,"170168510":14,"170168543":14,"170200729":14,"170201013":14,"170203998":14,"170291885":14,"170404012":14,"170552067":14,"170552068":14,"170631558":14,"170631565":14,"170631680":14,"170631745":14,"170701828":14,"170701834":14,"170701836":14,"170701844":14,"170701848":14,"170701854":14,"170701858":14,"171108715":14,"171108717":14,"171347857":14,"171355745":14,"171379688":14,"171394959":14,"1718479553":22,"1766":10,"177":7,"1783":33,"1798":10,"18":[2,7,10,12,15,21],"180":[12,13],"1808":10,"1817":10,"182":[7,10],"182843":33,"184":7,"1868":10,"19":[7,10,12,21,22],"190985":7,"192":[7,10],"192000":10,"192949":7,"1940":7,"1956":15,"196000":10,"1963":33,"1963ern":33,"19782":33,"1983":12,"1995":22,"1996":8,"1998":10,"1a":23,"1a1":9,"1c":[7,14],"1c2":7,"1d":18,"1f":33,"1h3":[7,14,21,29],"1s":[7,12,13,14,21,25,29],"1s1":10,"1s2":10,"2":[1,9,11,28],"20":[7,10,12,15,21,33],"200":12,"2000":[7,10],"2003":10,"2006":[8,10],"2007":33,"2009":[2,18,28],"200x200":[13,14],"2010":10,"2011":12,"2013":[12,15],"2014":8,"2016":2,"2018":24,"2019":[8,15],"2020":[10,25],"2021":[2,9,10,18,21,22],"2021379090":9,"2022":[2,9,18,34],"2023":[2,8,9,12,13,14,22,33],"2024":[7,8,10,15,21,22,23,24,25],"205000":10,"206":[12,13],"207caf":22,"20index":15,"20retent":15,"21":[7,12,21],"211":33,"211000":10,"21480":7,"216000":10,"217":[2,9],"2193":8,"219aec":22,"22":[2,7,9,10,12,18,21],"220":7,"2204":8,"22252593":7,"22362":7,"2244":[9,12,13,14],"2244812":7,"2260361":15,"22660":7,"22729":7,"228":7,"2283":7,"23":[2,7,9,12,21],"230":[12,22,33],"23270":7,"234":23,"2348":10,"23532":7,"23567":7,"23602":7,"23636":7,"23681059":13,"237":33,"23989":7,"23h":7,"24":[7,8,10,12,13,15,33],"240":33,"2409557":7,"241":[7,15],"24310":14,"24330":7,"24364":7,"24474":7,"247":33,"24876":7,"25":[7,10,12],"25014":7,"25084":7,"25130":7,"25153":7,"25194":7,"25221":7,"25237":7,"25257":7,"25312":7,"25321":7,"25350":7,"25367":7,"25384":7,"2540":22,"25403":7,"25448":7,"25493":7,"25504":22,"25512":7,"25555":7,"2566761":7,"25706":7,"25708":7,"25709":33,"25723":7,"25742":7,"25785":7,"25818":7,"25838":7,"25865":7,"25945":7,"25952":7,"26":[7,12,33],"26005":7,"26066":7,"26132":7,"26257":7,"265":7,"26540":7,"26560":7,"26635":7,"26745":7,"26768":7,"26952":7,"26973":7,"26976":7,"26e0d8":22,"27":[8,12,22,25],"27092":7,"27178":7,"2723872":14,"27311":7,"27317":7,"27337":7,"27340":7,"27352":7,"27354":7,"2744":10,"27473":7,"27487":7,"27502":7,"27505":7,"27516":7,"27530":7,"27542":7,"27554":7,"27569":7,"27583":7,"27598":7,"27612":7,"27695":7,"277":10,"27730":7,"27747":7,"27837":7,"27903":7,"28":[7,8,9,10,12,13,14,22,25,33],"28002":7,"28036":7,"28071":7,"28140":7,"28224":7,"28227":7,"28242":7,"28252":7,"283":7,"28354":7,"28380":7,"28427":7,"28454":7,"285":15,"28522":7,"28524":7,"28559":7,"286":15,"28600":7,"28602":7,"28611":7,"28657":7,"287":15,"28779":7,"28796":7,"288":15,"28828":7,"28860":7,"28978":7,"28h":12,"29":[12,13],"290":10,"29082":7,"29134":7,"29146":7,"29263":7,"293":10,"294":10,"29406":7,"29478":7,"29479":7,"29480":7,"29495":7,"295":10,"29504":7,"29507":7,"29530":7,"29544":7,"29686":7,"29695":7,"29697":7,"296z":22,"29700":7,"29715":7,"29727":7,"298":10,"29819":7,"29885":7,"29894":7,"29912":7,"29914":7,"29924":7,"29983":7,"29989":7,"29t14":22,"2a":23,"2b":23,"2c":14,"2c1cn":14,"2d":[12,18],"2h":14,"2h3":[7,29],"2p1":10,"2s":13,"2s1":10,"2s2":10,"3":[2,9,11,28],"30":[10,12,15,22],"300":[7,12],"30041":7,"300x300":12,"301":33,"30102":7,"30121":7,"30128":7,"30131":7,"30223":7,"30272":7,"30275":7,"30281":7,"30284":7,"30310":7,"30317":7,"30344":7,"30347":7,"30402":7,"30451":7,"30489":7,"30541":7,"30573":7,"30602":7,"30671":7,"30691":7,"30703":7,"30778":7,"30792":7,"30847":7,"30850":7,"309":7,"30948":7,"30960":7,"30t08":22,"30t09":22,"31":[7,12],"31070":7,"31200":7,"313":7,"31376":7,"31419":7,"31540":7,"31567":7,"31575":7,"31705":7,"31760":7,"31774":7,"31777":7,"318":7,"31809":7,"31850":7,"31855":7,"31899":7,"31988":7,"319892613":15,"32":[12,22],"32040":7,"320x240":12,"32107":7,"32185":7,"32202":7,"32205":7,"32242":7,"323":[10,15],"32312":7,"32315":7,"324":[7,15],"32422":7,"325":15,"326":15,"327":15,"32758":7,"32762":7,"32866":7,"33":12,"3319":14,"3333":7,"334":33,"33634":13,"34":[7,14],"340":33,"34370395":9,"345":13,"35":[10,14],"3524":22,"36":[7,10,14],"3672":12,"368":7,"37":[7,10,12,14],"370000":10,"3716":7,"38":14,"39":22,"392":10,"39241":13,"3a":22,"3c":14,"3ccnc3":14,"3d":[12,25],"3f":33,"3h2":29,"3h3":21,"3mdt9n":22,"3rd":8,"4":[7,9,13,14,22,23,24,28],"40":7,"400":14,"40385d32372c7c8af5dd4fe1ee442a47bc8ad87d":22,"405z":22,"41":[14,15],"41285":14,"42":[7,14],"4273":10,"433":7,"434":[2,9],"434z":22,"439312":14,"439353":14,"439709":14,"44":7,"44227150":14,"443z":22,"446157":[12,14],"453":10,"458":15,"46":12,"460":15,"461":15,"462":13,"463":15,"463075":9,"464":15,"47":[7,15,22],"47cp":15,"48":7,"483":15,"485":15,"486":15,"487":15,"488":15,"489":15,"49":[7,12,15],"490":15,"491":15,"492":15,"493":15,"4932":9,"494":15,"495":15,"496":15,"497":15,"498":15,"4a":23,"4b":23,"4c":7,"4h3":12,"4xrzw1":22,"5":[7,9,10,12,15,21,23,28],"50":7,"500":[12,15,33],"501":15,"5027":22,"51":[2,7,9],"512z":22,"51st":21,"5280656":12,"5281":2,"5290":22,"53":[7,10],"53114542":12,"534":15,"534000":10,"535":15,"536":15,"537":15,"538":15,"54":10,"55":[10,15],"5592":7,"55980":7,"56":[15,23],"568":14,"56841568":13,"57":[7,10,15],"5793":14,"58":[7,15],"584":15,"585":15,"586":15,"58604790":14,"58605465":14,"587":[10,15],"58766735":14,"58799705":14,"588":15,"589":15,"58908752":14,"58908973":14,"59":[7,15,33],"591":15,"59115469":14,"59115764":14,"593":15,"598":10,"5b":23,"5f14":10,"5h":14,"6":[2,7,9,10,12,13,14,18,21,29,33],"6036":14,"60823":9,"61":7,"618":10,"62":[7,15],"623":[2,18],"63":[12,15],"636":[2,18],"64":15,"64689":14,"65":[10,15,33],"66":7,"67324":33,"675728":22,"679":15,"68":[7,8],"6853":14,"69":33,"6912":7,"6925666":13,"693346":33,"6d10":10,"6v9v2ryj8n":13,"7":[7,9,10,12,21,33],"70":15,"700":15,"70171":9,"702":15,"703":15,"7036":8,"704":15,"705":15,"706":15,"707":15,"708":15,"71":15,"7111":13,"7124":9,"71380237":14,"71463":7,"72":33,"720659":15,"72646":7,"73":15,"74":7,"7488":22,"7489":22,"75":7,"754":10,"759616":13,"76":7,"7620":7,"767303":7,"77":7,"77098502":13,"78":[7,13],"787":15,"789":15,"790":15,"791":15,"792":15,"793":15,"794":15,"795":15,"796":15,"797":15,"798":15,"799":15,"7cb81a2bbf44":8,"7ga79k":22,"7h2":21,"7hp91k":22,"7p2":10,"7p3":10,"7p4":10,"7p5":10,"7p6":10,"7s2":10,"8":[2,7,9,10,12,13,14,15,21,22,23,33],"80":15,"800":15,"8000":22,"801":15,"802":15,"803":15,"804":8,"805":15,"806":15,"8071":22,"81":10,"810000":10,"8148324":15,"829042":9,"8291":22,"83":7,"84":7,"840482":7,"85":10,"850000":10,"8509":22,"857212":7,"85833":7,"85b4a510":22,"86":10,"8604":13,"864908":7,"87":10,"875538":7,"8859":15,"888714":7,"890027":7,"892":14,"894767":7,"898813":7,"898814":7,"899813":7,"8\u03b1":7,"8h2":7,"9":[7,9,10,12,14,15,21,22,33],"90":[7,14],"9003":7,"900786":7,"900789":7,"906550":7,"909263":7,"909767":7,"909882":7,"910878":7,"910880":7,"911445":7,"913":22,"918778":7,"92":7,"93":7,"94":[2,7,18],"95":[7,10,14,15,22],"95650":7,"9581":13,"96":7,"96f3gm":22,"97":7,"98":[10,13],"99":[7,14],"9986":15,"9h2":7,"9j4wh2":22,"\u03b5":33,"\u03bb":33,"\u0438\u0437\u043e\u043c\u0435\u0440\u0438\u0437\u044a\u043c":8,"\u0442\u0440\u0430\u043d\u0441":8,"\u0442\u0440\u0430\u043d\u0441_\u0438\u0437\u043e\u043c\u0435\u0440\u0438\u0437\u044a\u043c":8,"\u0442\u0440\u0430\u043d\u0441_\u0456\u0437\u043e\u043c\u0435\u0440\u0456\u044f":8,"\u0446\u0438\u0441":8,"\u0456\u0437\u043e\u043c\u0435\u0440\u0456\u044f":8,"\u0627\u06cc\u0632\u0648\u0645\u0631\u06cc":8,"\u0627\u06cc\u0632\u0648\u0645\u0631\u06cc_\u0633\u06cc\u0633":8,"\u062a\u0631\u0627\u0646\u0633":8,"\u0633\u06cc\u0633":8,"\u987a\u53cd\u5f02\u6784":8,"\ud835\udf06":33,"abstract":[5,18,22,24],"break":[8,14,15,33],"byte":18,"case":[0,5,15,22,24,28,30],"class":[15,21,22,23,33],"default":[7,12,14,25],"do":[5,7,10,12,15,18,22,23,24,25,29,33],"export":[23,25],"final":[7,9,24],"float":7,"function":[0,18,24,28],"geom\u00e9trica":8,"goto":28,"import":[5,10,13,14,15,22,33],"int":7,"isomer\u00eda":8,"isomer\u00eda_ci":8,"isomeria_geom\u00e9trica":8,"izom\u00e9ria":8,"long":[15,16,23,28],"new":[1,10,15,19,29],"null":22,"public":[3,12,22,24,28,33],"return":[7,8,12,14,15,22,23,24,28,29,33],"short":[24,33],"super":15,"syst\u00e8m":25,"trans_izom\u00e9ria":8,"true":[7,14,15,21,22],"try":[15,25,28,33],"while":[13,15,23,24,28,29],A:[2,4,5,9,12,13,15,18,22,25,33],As:[14,15,18,23],BY:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],Be:10,By:[15,29],For:[9,12,14,15,18,23,24,28,29,33],IFS:18,If:[3,7,8,12,15,18,23,24,25,28,29,33],In:[7,9,10,12,13,14,15,18,19,23,24,25,29,33],It:[8,12,13,14,15,19,22,23,24,28,29,33],Its:33,NOT:14,No:[13,15,33],Not:22,OF:[13,33],On:23,One:[15,18,32,33],Or:21,That:[15,22,29],The:[0,1,2,3,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,29,30,34],Then:23,There:[5,15],These:[5,10,12,18,30,33],To:[5,12,14,15,18,22,29,33],WILL:14,With:[14,15,24],__class__:15,_make_request:15,_maxlin:15,_raise_timeout:15,_read_statu:15,_sock:15,_sslobj:15,_timeout_occur:15,a1:9,aachen:4,abbrevi:[15,22,24],abil:23,abl:[23,24,25],about:[7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,27,28,33],abov:[8,10,12,13,15,22,23,24,29,33],absent:33,absorb:33,absorpt:33,abund:10,ac:[22,25,28,29],accept:22,acceptor:12,access:[0,3,5,6,9,11,18,19,20,22,23,25,29,33],accompani:[18,33],accord:[15,23,25],account:22,accur:23,accuraci:5,acet:7,acid:[2,7,9,13,22,33],across:[0,2,5,19,24,30,34],act:18,actahist:13,actif:13,action:18,activ:[0,3,5,13,18,22,23,30],ad:[7,15,18,23,24,29],adam:22,adapt:[7,15,16,21],add:[7,10,24,28,29,33],addin:23,addit:[1,7,9,15,17,18,33],addon:24,address:[0,24,31],adher:[5,18],adjust:14,administr:16,adopt:[17,19],advanc:[23,34],advantag:[18,30,32,33],advent:24,advil:13,advisor:23,advisori:22,affect:[25,33],after:[7,8,9,12,15,18,21,22,23,24,25,29],again:25,against:[9,23],agenc:[18,22,24],agent:[18,22],aggreg:[0,6,18,22,32],agil:16,ai:[5,20],aid:[9,13,15,18],aim:[0,15,30,33],air:22,akos027383893:13,al:[2,10,12,15],alabama:[4,7,22],alcohol:13,alev:13,algorithm:[5,18,22,28],align:[0,5],alik:19,alkali:10,alkalin:10,all:[7,8,9,10,12,13,14,18,22,23,24,28,29,30,33],allegra:13,allerf:13,allergi:13,allianc:[18,22,34],alliancegenom:22,alloi:28,allotrop:22,allow:[7,15,18,19,22,24,25,28,33],allow_redirect:15,allowotherel:14,allpath:8,almost:33,along:[9,18],alpha:[7,9,13],alphanumer:[18,33],alreadi:[25,33],also:[5,9,10,12,13,14,15,18,23,25,28,29,30,33],altern:[9,10,21,24,25],although:[15,23],aluminum:28,alwai:15,am:8,america:[23,33],american:[7,22],amino:29,among:[10,25],amount:8,an:[0,1,3,5,7,8,9,10,11,12,13,15,18,19,21,22,23,28,29,30,32,33],analogu:8,analys:[18,33],analysi:[0,5,10,18,19,22,33],analyt:23,analyz:19,anchor:29,andr:4,ani:[8,13,18,22,23,24,29,33],anid:15,anion:[13,29],ann:4,annot:[9,10,22,30],anoth:[18,22],antilog:33,antoni:[2,18],antonio:4,anyon:18,anyth:[18,33],api:[6,9,10,13,14,15,23,28],api_doc:22,apiurl:29,app:24,appear:[10,15,33],append:[7,21,22,24,29],appl:23,appli:[0,2,8,18,19,33,34],applic:[5,8,9,10,11,12,13,14,15,22,23,28,29,30,31,33],appreci:5,approach:[0,3,24,26],appropri:[0,5,18,30],approv:22,approxim:15,ar:[0,1,3,5,7,8,9,10,12,13,14,15,18,19,20,22,24,25,26,28,29,30,32,33],arang:10,arbitrari:12,arbitrarili:12,archibald:[2,18],archiv:[9,15,18,22],area:[9,12,15],arg:33,arg_max:33,argmax:33,argon:15,argument:33,aris:[23,28],around:[19,23,24,28],arrai:[24,33],arrang:18,articl:18,ashgat:7,asia:23,ask:28,aspect:[11,18],aspir:18,aspirin:[9,12,13],asprin:12,assai:[9,12,15],assembl:21,assert:18,assert_header_pars:15,assert_same_host:15,assess:[5,15],asset:18,assign:[18,23,33],associ:[18,33],associated_tool:22,asta:[2,9],athena:22,atla:22,atm:10,atom:[8,12,13,18,20,22],atomicmass:10,atomicnumb:10,atomicradiu:10,atsdr:22,attract:33,attribut:[5,7,8,18,22,33],atw:22,au:22,aug:9,augment:[0,18,28],auspic:18,australia:22,auth:15,author:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33,34],authorit:[9,10],auto:7,autoignit:15,autom:[0,5,18],automat:23,avail:[0,3,6,7,8,9,10,12,13,14,15,18,19,21,22,23,24,25,28,29,30,32,33],avoid:15,awar:[24,25],ax:10,axi:10,b10:12,b15:24,b19:24,b27:24,b2:[15,24],b3:24,b:[8,10,15,23,24],back:[18,24,25,28,29],background:[5,17,23],badrequest:14,bai:13,baidu:25,baker:9,bank:[15,22],banner:33,bar:7,bark:22,barplot:10,barri:22,barrier:[17,19],base:[0,3,10,12,13,15,18,19,20,22,23,28,29],basesslerror:15,basic:[0,8,9,11,18,19,23,26],bay98:13,bd:22,bearer:22,becaus:[13,14,15,23],becom:[0,18,23,32],been:[15,18,22,24,28,33],beer:33,beer_lambert:33,befor:[23,25,32],begin:[12,15,19,23],behalf:33,behind:25,beilstein:22,being:[12,18,23,25,29],belong:25,below:[1,8,10,12,15,18,22,23,24,28,29,30,33],benefit:3,benjamin:[2,9],bennevil:7,benzen:[15,28],benzenemethanol:13,benzenepropano:7,benzyl:13,berendsen:22,beryllium:10,besan:13,best:[0,3,17,19,23],beta:15,better:[8,22],between:[5,7,9,15,18,23,24],bfznmugazyamtg:7,bg:8,bgee:22,bh:10,bidd:22,big:[8,24,28],bigcat:22,bin:[7,10],binari:[22,23,33],bind:[22,33],binder:[29,33],bindingdb:22,bing:25,bioactiv:9,bioassai:[9,15,22],biochemistri:22,biocyc:22,bioexcel:22,biogrid:22,bioinformat:22,biolog:[9,15,22],biologi:[2,9,22],biomed:9,biotechnolog:4,biovia_ctfileformats_2020:25,bit:18,bitstream:18,black:7,blank:23,block:[0,8,12,15,33],blog:29,bloodworth:33,blue:[7,10],bo:[2,9],board:22,bodi:15,body_po:15,boil:[7,15],boilingpoint:10,bolton:[2,9,12],bond:12,book:[2,3,12,13,16,17,22,24,33],bookshelv:15,boron:10,both:[15,18,19,20,22,23,24,27,33],box:[23,28],bp:[13,22,33],bprhuizqvsmcrt:12,br:22,bracket:22,breast:9,brenda:22,bridg:[2,9],brief:[5,6,12,24,27,33],british:13,broaden:30,broader:[0,1,18,34],broadli:[0,3],broman:13,bromf:13,browser:[15,23,24,30],bruno:[2,18],bsg:22,buffer:15,built:[22,33],bullet:30,bundl:18,butadien:7,button:[10,23],c01092:8,c01093:8,c01497:8,c10h16clno:13,c11h18o2:7,c11h20o2:7,c12h16n2o3:21,c14h13nao3:13,c14h13o3:13,c14h14o3:13,c14h16n2o6:21,c14h18n2o5:21,c17:21,c17h24n2o4:21,c1:[7,12,14,21,29],c1c:[12,13,14],c1ccccc1:7,c1o:14,c20h24n2o2:7,c22h28fn3o6:12,c23h32f3n5o4:14,c23h33f2n5o4:14,c24h30clno4:13,c24h34f3n5o4:14,c24h35f2n5o4:14,c24h35f3n6o4:14,c24h36f3n5o4:14,c25h37f3n6o4:14,c2:[7,12,14,24],c2c1:14,c2c1c:14,c2c3:12,c2c:7,c2cn:14,c2ff00:10,c2h7n:29,c31h35clnnao4:13,c3:[7,14],c3h6o:29,c3n4ccc:7,c4:7,c4cc4:12,c6h12o6:14,c7h6o3:33,c9h8o4:[12,13,14],c:[7,10,12,13,14,15,21,24,29,33],ca:[22,23,33],cactu:[25,29],cactv:14,calcul:[25,33],calibr:33,call:[7,8,9,10,12,13,15,24,33],cam:[28,29],cambridg:[15,22],cameo:22,cameochem:22,can:[0,5,7,8,10,11,12,13,14,15,18,19,20,22,23,24,26,27,28,29,33],cancer:[9,22],cancerrxgen:22,cannot:14,canon:[7,12],canonicalsmil:[7,12],cansmi:7,cansmil:7,canva:33,capabl:[18,28],caplet:13,caplu:7,caption:[23,24],captur:33,carboxi:7,carboximid:7,card:[15,22],careon:13,carri:18,carriag:23,cas_rn:7,casrn1:7,casrn1_data:7,casrn:[7,23],casrn_data:7,casrn_idx:7,casrn_list:7,catalog:18,catalogu:22,catalogueoflif:22,categori:18,cation:29,caught:14,cb1adb:22,cc1:[7,12,14,21],cc1cnc:14,cc21:7,cc3ccnc3:14,cc4:7,cc80ff:10,cc:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],ccc1ccccc1:7,ccc:7,ccccc1:7,ccccccc:7,ccccn:14,cccn:14,ccdc:22,ccg:13,ccsbase:22,cdc:22,ceas:18,cell:[7,9,10,12,15,22,24],cellosauru:22,center:4,centipois:15,central:9,centric:[2,9],cerevisia:9,cert:15,certain:15,certifi:13,cexcept:14,ch:[7,22,28,29],chain:22,chalk:[2,4,7,8,18,21,22,23,24,25,28,29,33],chang:[8,18,23,29],charact:[12,14,15,18,24,25,29],character:[18,30],charg:[29,33],charmm:22,chart:10,chebi:[13,22],check:[8,10,15,23,28,29],chem:[7,15,21,22],chembl1200724:13,chembl:22,chemcookbook:22,chemdb:22,chemdraw:25,chemic:[0,1,2,3,5,7,8,9,11,14,15,17,18,19,20,21,22,26,28,29,30,33,34],chemicalprob:22,chemidplu:22,chemimag:8,cheminform:12,cheminformat:[0,9,15,19,27],chemist:[17,18,19,23],chemistri:[0,2,3,5,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,30,32,33],chemoinformat:22,chemoproteom:22,chemsketch:25,chemspid:[22,25],chen:[2,9],cheng:[2,9],children:13,chlorid:13,choic:23,choos:23,chosen:22,chri:22,christin:4,chromatographi:18,chrome:15,chunk:[15,23,33],ci100384d:28,ci:[8,14],cid2244:12,cid679:15,cid:[9,12,13,14,15,21],cid_prop:14,cids1:[13,14],cids2:[13,14],cids3:[13,14],cinchonan:7,cinkona:7,cir:22,circumv:[14,15],citat:[7,8,9,10,12,13,14,15,21,22,23,25,28,29,33],citrin:4,cl:[10,12,22],classif:9,clean:8,clean_exit:15,clear:15,clearli:22,clementi:22,click:[10,15,23,33],client:15,clo:22,close:[13,15,22],cloud:23,cm:[10,33],cmc:22,cml:[28,29],cn1n:7,cn2c:[12,14],cn:[7,10],co:[7,12,14],coadvil:13,coalit:22,cobalt:28,coc:21,codata:34,code:[0,5,10,14,19,20,22,24,29,30],codim:13,coe:22,coeffici:33,col:22,colab:33,cold:13,cole:[4,33],coli:22,collabor:[3,19,23,34],collaps:[24,30],collect:[2,8,9,18,22,30,33],colon:33,color:[7,10],column:[10,14,23,24,33],com:[8,22,25,32,33],combin:[5,7,13,18,33],come:[18,22,23,28],comfort:19,comma:[12,23,24],command:[12,33],comment:29,commerc:33,commerci:8,commis:22,committe:[22,34],common:[0,8,12,15,22,23,25,26,28],commonchemistri:7,commonli:[9,23,33],commun:[0,1,3,5,9,16,19,22,23,24,29,30,32,33,34],compar:[8,22],compat:14,compendium:8,compil:[5,8],complement:22,complet:[5,7,8,9,12,18,21,22,23,24,25,29],complex:[25,28],compon:[12,13,19,33],compos:18,composit:22,compound:[9,10,12,13,14,18,22,23,25,28,29,33],compress:23,comptox:22,comput:[9,18,19,22,23,24],computation:12,concat:24,concaten:[24,29],concentr:33,concept:[5,8,24],concis:15,concret:5,confidenti:22,configur:24,conform:[12,18],conformer1:12,conformer2:12,confus:15,congest:13,congestionnon:13,conjug:13,conn:15,connect:[14,15,33],connectionerror:15,connectionpool:15,consequ:24,consid:[3,5,15],consist:[5,12,15,18],consortium:22,constant:[22,32,33],constitu:22,constitut:18,constraint:18,consum:[5,24],contac:13,contact:[8,22],contact_email:22,contact_nam:22,contact_orcid:22,contain:[2,7,8,9,12,13,14,15,18,23,24,29,33],content:[0,1,3,6,8,9,12,13,14,16,17,18,19,22,23,29,30,33],context:[5,18,24,33],contextu:[18,22,23],continent:23,continu:[1,8,15,18,28],contrari:14,contrast:22,contribut:[1,7,8,9,10,12,13,14,15,17,21,22,23,24,25,33],contributor:16,control:18,conv:21,conveni:[5,25],convers:21,convert:[5,7,8,14,21,22,25,28,29,33],cookbook:[7,8,9,10,12,13,14,15,21,22,23,24,25,26,28,29,33],cooki:15,cooordin:12,coordin:[12,22],copenhagen:22,copi:[20,24,33],copper:28,copyright:[15,33],core:25,cornel:4,corongiu:22,corph:13,correct:[23,25],correctli:23,correl:22,correspond:[12,15,25,33],corrupt:23,cosmet:22,cost:[18,33],could:[3,18,24,28,33],council:34,count:[7,12,14],countri:[22,23],coupl:22,cours:24,cover:[0,3,24],covid:22,cp:[15,33],cpcd:21,cpdd:13,cpkhexcolor:10,cpz1:[2,9],cqnu8w1hvnc0qyljlv0ybou3c4eg:22,cr:23,creat:[3,7,10,14,16,18,22,23,24,29,33],created_at:22,creation:[16,18],creativ:[8,15],creativecommon:[8,22],credit:7,criteria:[0,22],critic:5,cross:5,crossref:18,crosswalk:18,cs:8,cscppacgzoocgx:29,csv:[10,12,14,23,33],ctd:22,ctdbase:22,cti:10,cuadro:[4,25,29],cuniculu:15,curat:[0,5,18,25],curr:9,current:[2,8,9,12,14,15,18,22,24,25,28,33],cv:13,cyclic:18,cycloalkan:8,cyclohexanepropano:7,cyclohexanepropion:7,cyclohexen:7,cyclohexylpropano:7,cyclohexylpropion:7,cyp1a1:9,cytochrom:9,d00485:13,d011803:7,d1373:[2,9],d1380:[2,9],d1:[2,9],d2:24,d3:[1,2],d9ffff:10,d:[2,7,9,12,13,22,24,33],dai:[13,23,24],damien:[2,18],dan2097:28,daniel:28,darkgrid:10,dash:25,dasharrai:7,dashboard:22,dashoffset:7,dassault:25,data:[0,1,2,3,5,8,11,14,17,18,19,25,26,28,30,31,34],data_dictionari:33,databas:[9,11,15,18,22,23,25,28,33],datacit:18,datafairi:22,dataset:[18,28,32,33],datayp:9,date:[15,23,24,33],datetim:33,datum:18,davi:[2,18],daytim:13,db:[10,22],dbn:22,dd:13,ddk9t9:22,de:[7,23],deal:[23,24,28],death:9,decai:18,decim:33,declar:18,decod:33,decode_cont:15,decomp:7,decomposit:15,decongest:13,decongestantd:13,decongestantmaximum:13,decongestantnas:13,decongestantnon:13,decons:13,dedic:9,def:[8,15,33],defin:[8,18,33],definit:[18,33],degre:18,del:29,delai:7,delet:29,delimit:23,demo:[6,27],demonstr:[0,3,10,12,15,19,20,31],densiti:15,depart:22,depend:[5,23,24,33],deploy:16,deposit:[9,33],depositor:[9,15],deriv:[5,18,22],describ:[5,12,15,18,22,32,33],descript:[5,6,9,12,15,18,22,33],design:[0,1,9,18,19,22],desir:[12,18,33],detail:[10,11,12,14,15,22,24,33],detail_base_url:7,detect:8,determin:[12,15,33],develop:[0,3,9,12,18,25,28,29,30,33],df:10,df_tmp:10,dgidb:22,dialog:[7,23],dichloromethan:28,dictat:23,dictionari:8,diethyl:7,differ:[0,5,8,11,13,14,15,18,23,24,26,29,30],difficult:23,diffract:18,digit:[0,3,5,18,19,21,22,23,24,30,33],dilirank:22,dimens:10,dimension:9,dimer:7,dimetan:13,dimetapp:13,dimethyl:15,dip:22,diphenhydramin:13,diphenylphosphino:28,direct:[22,34],directli:[0,5,10,18,21,23,33],director:8,directori:33,disciplin:[5,34],disclaim:8,discov:25,discover:[5,18,19],discoveri:[5,9,18,19],discuss:23,diseas:[15,22],disk:22,displai:[8,12,13,14,15,21,22,29],dissemin:0,dissoci:[13,22,32,33],dissolv:13,distanc:22,distinguish:18,distribut:[5,18,22,25,33],divers:[12,16],dm:13,dmaximum:13,dmjscepqtcujqw:13,dmso:15,doc:[12,15,21],docstr:33,document:[3,5,6,7,9,11,12,16,18,21,22,23,24,25,33],docuri:7,dodg:10,doe:[8,10,15,18,22,24,25,29,33],doi:[2,8,9,10,15,18,22,24,28],domain:[5,18,22,34],don:[23,28],done:[15,24,25,27,33],donor:12,dorcol:13,dose:13,dot:22,doubl:[23,25],down:8,download:[10,12,13,14,15,23,25,29,33],downstream:34,dph:13,dr:9,draft:18,draw:[12,21],drawn:25,driven:[18,19],drop:13,dropbox:23,dropna:10,drowsi:13,drug:[7,9,13,15,22],drugbank:22,drugcentr:22,ds:10,dsstox:22,dtxsid10889343:13,dtxsid80931146:13,dtype:10,dump:[15,22,29],dure:[5,18,23],dx:[13,18,23,33],dyn:15,dynam:[3,12,29,33],e217:[2,9],e5c86:22,e:[2,8,9,10,12,13,14,15,22,23,24,25,28,29,30,33],each:[5,8,9,12,15,18,22,23,24,29,33],earth:10,easi:[5,12,15,23,24,26,28,33],easier:[15,23,24,33],easiest:33,easili:[24,33],ebi:22,ec:13,ecmdb:22,ecotox:15,ed:[8,9,15,22],edg:15,edit:33,editor:[23,25],edu:22,educ:30,effect:19,effici:[22,33],effort:[18,33],efidac:13,egbgwm:22,egfr:15,egon:22,eight:24,einec:13,either:[18,25,29],el:22,elaps:15,electronaffin:10,electronconfigur:10,element:[15,18,22,24,29,33],elif:10,els:[15,28],elsevi:22,em:7,emerg:15,emodnet:22,emphas:[3,33],emphasi:26,empow:19,empti:[7,8,24],en:[8,15,21,22],enabl:[5,16,18,19,32,33,34],encapsul:33,encod:[14,15,18],encount:3,encourag:[8,33],encyclopedia:[15,22],end:[12,15,25,29,33],endpoint:[18,24,28,29],energi:33,enforce_content_length:15,engag:[0,3,16,30],engin:[5,19,25],english:[22,23],enough:[22,28],ensembl:[12,14],ensur:[5,18],enter:[22,28,33],entir:7,entiti:18,entrez:12,entri:[8,18,22,31],environ:[5,19],environment:[15,19,22],enzym:22,eol:22,ep:13,epa:22,ephedrin:13,epsilon:33,epsilon_arrai:33,equalin:13,equat:[5,13],equival:[15,21,22],ernst:33,err:15,error:[12,14,15,28,29],es:8,escap:14,especi:[10,12,25,32],essenti:[15,18,33],ester:7,et:[2,10,12,15],etc:[12,23,33],ethanol:29,ethoxycarbonyl:7,ethyl:[7,13,28],ethylammonium:29,eukaryot:22,europ:23,european:[13,22],ev:10,evalu:22,evan:[2,9],even:[8,24,29],ever:32,everi:8,everyth:[15,33],evolv:[1,19],exact:13,exactli:[13,15],exampl:[0,5,7,8,9,12,13,14,15,18,20,21,22,23,24,25,29,30,33],exce:15,excel:12,except:[15,23],excerpt:15,exchang:[5,18],exclud:10,execut:[0,3,8,19,20,33],executivedirector:8,exemplifi:[0,19],exhaust:33,exhaustive_lic:22,exist:[10,33],exp:33,expand:24,expasi:22,expect:[10,25,32],experi:[0,33],experienti:19,experiment:[0,7,12,15,33],experimentalproperti:7,expertis:33,expiri:22,explain:[24,33],explan:[27,33],exploit:19,explor:[2,9,24],exponenti:33,exposur:15,express:[8,15,29],extend:[18,33],extens:[11,18,23,33],extent:18,extern:[0,22,30],extinct:33,extra:[23,24],extract:[0,7,8,9,15,18,24,33],extrem:23,eyjhbgcioijiuzi1nij9:22,eyjqdgkioii0yjvknzqymi1hotg3ltrlzwytyjqyyi1hn2u3yjc2mtm0zteilcjzdwiioii4nta5iiwic2nwijoidxnlciisimf1zci6bnvsbcwiawf0ijoxnze4mzkzmtuzlcjlehaioje3mtg0nzk1ntn9:22,f:[4,10,12,14,22,33],fa:8,facecolor:7,facilit:[5,18],fact:23,facto:23,factor:[9,22],fail:[14,28],fair:[0,2,3,7,8,9,10,12,13,14,15,16,17,18,20,21,23,24,25,28,29,30,31,32,33,34],fairsharing_lic:22,fairsharing_record:22,fairsharing_record_id:22,fairsharing_registri:22,fairspec:[2,18,33],fall:18,fals:[10,15,21,22],familar:[10,12,13,14,15],famili:[7,24],familiar:[5,7,8,9,12,19,21,22,23,24,29,33],far:25,faradai:33,faster:8,fastformula:14,fastident:14,fastsimilarity_2d:14,fastsimilarity_3d:14,fastsubstructur:14,fastsuperstructur:14,fate:15,fatima:4,fda:22,fear:23,featur:[23,25],feder:18,feed:23,feedback:[1,30],feel:30,few:15,fewer:14,ffb5b5:10,ffffff:10,fid:18,field:[18,19,24],fifti:23,fig:10,figsiz:[7,10],figur:[7,10,13,23,28,33],file:[0,9,12,15,18,21,22,24,28,29],fill:7,filter:7,find:[5,9,15,18,23,25,28,29,33],findabl:[0,18,19,20,33],findal:29,firefox:24,first:[7,12,13,14,15,22,23,24,25,29,33],firsti:33,firstx:33,fission:22,five:12,fix:28,fl:10,flag:15,flat:7,flerovium:10,florida:4,flow:15,fluid:15,flybas:22,fo:24,focu:[24,33],focus:[3,15,19,23,24],folder:18,follow:[9,10,11,12,14,15,16,24,25,29,33],font:7,forc:23,form:[3,5,14,18,28,29,33],formal:18,format:[5,7,8,9,10,12,13,14,15,18,19,21,25,28,29,32],formerli:33,formul:[1,12,15],formula:[12,13],forward:14,found:[8,11,12,15,18,25,29,32],foundat:[9,18],four:[12,23,24],fp:15,frame:[5,10],free:[9,13,18,33],freeli:[10,18,33],freqent:13,friction:15,from:[0,5,8,9,12,13,14,18,22,23,25,29,33],front:29,fs_pass:22,fs_user:22,full:[2,7,9,18,23,24],fulli:[5,20,26,33],fund:22,funder:[18,33],further:30,futur:33,g:[7,8,10,12,15,22,23,25,28,29,33],ga:10,galpseud:13,galsud:13,gatewai:12,gdhzqmfxvqiwaw:12,gdsc:22,gencc:22,gene:[2,9,12,15,22],geneid:9,genenam:22,geneontolog:22,gener:[7,8,10,11,12,16,18,21,23,28,29,33],generalist:18,genom:22,geolog:22,geometricprecis:7,get:[5,7,8,9,10,14,17,19,22,23,25,28,29,33],getrespons:15,gh:[13,22],ghs_index:22,gindulyt:[2,9],github:[16,17,22,28,29,32],githubusercont:33,give:[12,23,26,28,33],given:[9,12,14,18,24],gkac956:[2,9],global:[5,15,22],gloriam:22,glue:33,glycan:22,glycolysi:9,glyconavi:22,glygen:22,glyomic:22,gnome:22,go:[22,24],goal:[17,19,24,34],goldbook:8,goldifi:8,good:[13,23],googl:15,googlesheet:12,got:25,gov:[9,10,12,13,14,15,22,29],gramen:22,grant:22,grant_id:22,granular:5,graph:[18,33],graphic:29,great:[15,24],greater:10,greedi:29,greek:28,green:22,grid:[21,33],gromac:22,group:[8,9,18,22],groupblock:10,gsr:22,guid:[2,18,22],guidanc:[0,33],guidetopharmacolog:22,gunclkarsa:12,gutenberg:4,gxvkoz_nwvyuqp:22,h10h:7,h1:[21,29],h2:[14,21,29],h3:7,h4:21,h5:12,h:[7,10,12,14,21],ha:[7,8,9,15,18,22,23,24,25,28,33],had:33,halogen:10,hand:[0,17,19],handl:[0,5,15,18,19,23],hanson:[2,18],happen:33,harri:13,harvest:18,hash:33,hasmolfil:7,have:[3,7,8,10,12,15,21,23,24,28,33],haz:22,hazard:[15,22],hbondacceptorcoun:12,hbondacceptorcount:12,hbonddonorcount:12,hci:22,hcl:13,hclunit:13,he:[2,9,10,28],head:[22,33],headach:13,header:[14,15,22,23,30],heading1:15,heading2:15,heading_typ:15,health:[4,13,15,19,22],heart:19,heavi:12,heavier:10,heavyatomcount:[12,14],height:7,hela:15,helium:10,help:[9,10,12,15,22,25,33],henc:23,henri:[2,18],here:[8,9,10,11,12,15,18,22,23,24,29,33],herein:18,herr:4,hesiglob:22,hetero:8,heterogen:18,hexahydr:28,hgnc:22,hi:28,hidden:24,high:[0,9,22,30,33],higher:14,highli:15,highlight:27,hist:7,histaf:13,histogram:[7,10],histor:18,histori:18,histplot:10,histtyp:7,hit:[9,13,22],hja:[2,18],hmdb:22,hms1920n04:13,hoesel:22,hold:[24,33],homepag:[12,22,28],homopolym:7,hook:15,hope:24,hormon:15,hospit:22,host:[14,22,33,34],hostedtoolcach:[15,33],hour:[13,15],hous:22,how:[0,1,3,5,7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,29,33],howev:[10,14,15,18,22,23,25,28,33],hpa:22,hs:10,hsa:9,hsdb:[15,22],htm:[15,22],html:[8,9,15,18,21,22,23],http:[2,7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,32,33],httpadapt:15,httpconnect:15,httpconnectionpool:15,httplib_respons:15,httprespons:15,hue:10,hugo:22,human:[9,12,15,18,20,22,27,28,29,33],hundr:[9,23],hycofenix:13,hydrat:28,hydrochlorid:13,hydrocinnam:7,hydrogen:[10,12,13],hygien:15,hyphen:25,i03289:8,i:[8,9,10,13,14,15,22,24,29,30],ian:[2,18],iaozjiptcawirg:21,ib:13,icsc:[15,22],id:[7,8,9,12,15,22,33],idea:[17,30,33],ideal:18,ident:[9,18,25],identif:22,identifi:[7,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],identity_typ:14,idrblab:22,idx:7,ifcc001:28,ifcc002:29,ifcc003:8,ifcc004:9,ifcc006:12,ifcc007:13,ifcc008:14,ifcc009:15,ifcc010:33,ifcc011:7,ifcc012:21,ifcc013:22,ifcc014:23,ifcc015:24,ifcc016:10,ifcc017:25,ifcc:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],ignor:33,ilo:[15,22],imag:[7,8,12,13,14,15,18,21,22,24,28,33],image_s:[12,13,14],imagin:18,img:[8,22],implement:[1,12,24,26,34],implicit:18,importjson:24,imposs:15,improv:[10,26,29,33],inchi:[7,11,12,18,28,29],inchi_output:21,inchikei:[7,12,21,28],inchikey_output:21,inchismil:33,includ:[6,7,8,9,12,15,18,20,22,25,27,28,29,30,33],increas:[1,5,25],increasingli:19,increment:10,indent:[15,22,29,33],index:[7,8,9,10,15,21,22,24,25,33],indic:[15,27],indirectli:18,indispens:28,individu:[8,9,33],induc:[9,22],induct:18,industri:[15,22],inep:33,infil:21,info:22,inform:[2,3,4,5,7,9,10,11,12,14,15,18,19,22,24,25,28,29,30,33],informat:[4,5,22],infrastructur:[0,16],ingredi:[13,22],inherit:22,inhibit:13,inhibitor:9,initi:[1,19,26,34],injuri:22,inlin:8,innov:19,inoh:22,input:[11,12,13,18,28],insid:33,insight:[0,32],inspir:26,instal:[25,29],instanc:[23,24],instead:29,institut:[4,18,22,33],instruct:[3,9,22,28,33],instrument:[18,23,33],intact:22,integ:22,integr:[0,5,15,18,19,22,24,33],intend:[1,15,33],interact:[0,7,8,9,10,12,13,14,15,19,20,21,22,29,30,33],interest:8,interfac:[5,8,9,10,11,12,13,14,15,22,23,28,29,33],intern:[8,10,15,18,19,21,22,34],interoper:[0,18,19,20,33],interpol:7,interpret:[18,23,25,28,29,33],interpro:22,intrins:18,introduc:26,introduct:12,introductori:[8,9,10,12,13,14,15,22,33],involv:[0,18,19,29],io:[14,21,22],iochem:22,ion:[22,28,29],ionic:29,ioniz:22,ionizationenergi:10,iptei:22,ipynb:33,ipython:[7,12,13,14,29,33],iq:4,ir:[18,22],irbbarcelona:22,is_cur:22,is_lead:22,is_super_cur:22,isn:23,isnul:10,iso:15,isoclor:13,isoephedrin:13,isoform:15,isol:33,isom:[8,25],isomer:[8,12,14],isomeria:8,isomeria_ci:8,isomericsmil:[12,13,14],isotact:7,isotop:[14,22,25],isotopom:9,issu:[14,15,23,24,25,28],istoxnet:15,ital:7,item:[8,14,18],iter:8,its:[12,18,21,22,24,25,28,29,33],ium:29,iupac:[0,2,3,7,9,10,12,13,14,15,18,21,22,23,24,25,29,30,32,33,34],iuphar:22,izomeri:8,j:[2,9,12,15,18,22,33],java:29,javascript:[8,9,23,28],jax:22,jcamp:[18,23,33],jcamp_read:33,jdx:[23,33],jeannerat:[2,18],jeffrei:[2,18],jia:[2,9],jian:[2,9],jie:[2,9],jmb:[2,9],johann:4,john:4,join:[12,29],jolliff:4,jordi:[4,25,29],jorlugaqui:8,journal:[2,7,9,15,18,22,24,33],jp:22,json:[7,9,12,15,18,22,23,28,29],jsondata:[8,29],jsonview:24,jupyt:[3,7,8,10,12,13,14,15,16,20,21,22,29],just:[18,23,24,25],juypter:30,jwt:22,k:[10,22],kb:8,kcc:[2,9],kch:[2,9],keep:33,kegg2:22,kegg:22,kei:[14,18,33],ken:4,kept:23,keyboardinterrupt:[7,15],keyword:[7,33],khpcprhqvvszah:12,kim21:[2,9],kim:[2,4,9,10,12,13,14,15],kind:[7,9,12,22],knapsack:22,knapsackfamili:22,knight:4,know:[8,13,22,23,24,25,27],knowledg:22,known:[10,33,34],koidmi:22,kovat:15,kr:10,kroenlein:4,kruve:22,kruvelab:22,kwarg:15,kxnxzcpbsa:13,l:[2,7,13,33],lab:[22,23],label:[22,25,33],laboratori:18,lambda:33,lambda_max:33,lambert:33,lancashir:[2,18],land:18,lang:[2,15,18,22],langaug:28,languag:[22,23,28,29,33],larg:[12,15,22,23,25,32],larger:[18,29],largest:33,last:[7,15,23,24,29],lastupd:8,lastx:33,later:8,latest:21,latin:23,launch:[23,33,34],law:33,layer:[14,25,29],lead:4,leader:13,leah:[4,28],leak:15,learn:[0,7,8,9,10,12,13,14,15,19,21,22,23,24,25,28,29,30,33],least:[22,25],leav:15,left:[18,23],legacy_id:22,legend:10,legitim:28,len:[7,8,10,14,15],length:[7,33],leonid:[2,9],less:[10,15,23],let:[10,15,23,24,33],letter:[25,28],level:[7,16,18,23,33],leverag:33,lf:23,li:[2,4,9,10],lib:[15,33],liber:33,librari:[10,22,33],libretext:15,licence_link:22,licens:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],licensenot:15,licenseurl:15,life:22,lifecycl:[5,18],light:33,lightweight:23,like:[3,7,9,12,15,18,22,23,24,25,28,29],limit:[12,15],line:[7,9,12,14,15,18,22,29,33],linear:18,linecap:7,linejoin:7,linetoolong:15,link:[8,18,22,23,33],linked_record:22,linkedin:22,linking_record:22,linux:23,lipid:22,lipidmap:22,liquid:13,list:[8,10,12,15,18,22,25,33],list_of_http_header_field:22,literatur:24,lithium:10,littl:24,live:[1,19],liver:22,livermorium:10,llow:0,llull:4,load:[8,10,21,24,33],loc:10,local:[16,25],locat:[18,33],log:[14,33],log_epsilon:33,logarithm:33,loghdr:22,logic:[18,24,33],login:[17,22],longtitl:8,look:[8,10,15,22,24],loop:[8,15,21,22],lossi:22,lot:[8,22,24],lotu:22,louprkontzgtk:7,low:28,lower:[17,19],lr:10,ltkb:22,lu:22,luck:28,lv:10,lww6a1:22,m0:[7,21],m1:[12,13,21],m:[2,4,7,15,18,21,22,25],maastricht:22,maastrichtunivers:22,mac:23,machin:[0,1,5,12,18,19,20,26,27,29,30],maco:23,made:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,28,29,33],magnesium:28,mai:[12,15,18,22,23,24,25,32,33],main:[24,33],main_pag:22,maintain:[18,22,33],mainten:33,mainz:4,major:[25,33],make:[5,8,9,10,15,23,24,25,32,33],man:22,manag:[0,2,16,18,19,20,33],mandatori:33,mani:[0,3,9,12,15,18,19,22,23,24,25,28,30],manifest:5,manipul:[27,30,33],manner43:18,manual:[18,22],map:[18,22,33],marin:22,marinespeci:22,mark:[2,13,18],markdown:[9,23,24,33],markerdb:22,markup:[8,22,23,28,29],mart:13,marvinsketch:25,mass:22,massachusett:4,match:[5,8,13,18,29],materi:[0,3,6,12,13,18,19,22,27,30,33],mathemat:33,matplotlib:[7,10,33],matrix:33,max:33,max_retri:15,maxi:33,maxim:12,maximum:[13,15,33],maxx:33,mbi:22,mc:[10,22],mcewen:[2,4,28],mcf:9,mct09a:22,mcw:22,meacham:22,mean:[0,5,12,15,18,22,23,25,29],meaning:18,meant:26,measur:[10,15,33,34],mechan:24,media:18,medic:[13,22],medicin:[9,22],medium:8,melt:7,meltingpoint:10,member:[0,30],memori:[15,33],men230:33,menashi:33,mendelian:22,mention:15,menu:23,merck:15,mesh:[7,22],messag:[12,14,22,24,29],meta:5,metabol:22,metabolit:22,metabolom:22,metadata:[5,18,22,23,24,25,30,33],metal:[10,22],metalloid:10,metecc:22,methanol:[7,13],method:[5,7,14,15,22,29,34],methoxi:7,methoxycinchonan:7,methoxycinchonidin:7,methoxynaphthalen:13,methyl:29,methylamino:13,methylpyrimidin:29,mg:13,mgi:22,mi:13,micad:22,michigan:9,microsoft:12,might:[5,18,22,23,27,28,30,32],mime:14,min:7,mina:22,mine:19,miner:22,mini:33,minimum:33,minnesota:22,mint:24,minx:33,misinterpret:23,misspel:28,mit:7,miter:7,miterlimit:7,mixtur:[13,28],ml:[5,13],mls001304069:13,mm:[7,15],mm_idx:7,mms_valu:7,mms_values_float:7,model:[18,22],model_and_format:22,modifi:33,modul:33,modular:33,mol:[18,21,33],molar:33,molecul:[12,14,22,25,29],molecular:[2,8,9,18,22,29],molecularformula:[7,12,13,14],molecularmass:7,molecularweight:[12,13],molform:33,molfromsmil:21,moli:22,molsperrow:21,molstogridimag:21,moltoinchi:21,moltoinchikei:21,mondai:33,monograph:13,month:24,more:[3,5,7,10,12,15,17,18,19,23,24,26,29,32],moscovium:10,mosgard:7,most:[7,12,15,18,22,23],motrin:13,mous:[9,22],move:15,mp:33,ms:[15,18,21,23],msg:15,mt:10,much:[8,24],mucinex:13,multi:22,multipl:[9,12,14,18,19,23,24,29,31,33],multipli:22,mundai:[4,8,9,10,12,13,14,15,33],must:[18,22,33],mustafa:4,my_smil:21,mycid:[13,14],mydata:15,myfe:13,mysql:23,n1:14,n1c:14,n1cc2c:14,n2:14,n:[2,7,10,12,13,14,18,21,25,29],n_casrn_list:7,n_detail_data:7,n_idx:7,n_search_data:7,name:[7,10,11,12,15,18,22,24,28,29,33],name_idx:7,name_typ:13,nan:10,nanomateri:15,naproxen:13,nar:[2,9],nasal:13,nation:[4,22],nativ:[18,29,33],natur:[15,22],naturalproduct:22,navig:[0,5,10,33],nbk5330:22,nbyte:15,nc3:14,nc:[7,12,14,21],ncbi:[9,10,12,13,14,15,22],ncc:14,nci:[22,29],ncit:22,ncitbrows:22,ncol:10,ncollect:33,ne:10,necessari:[10,15,33],necessit:18,necrosi:9,need:[0,5,10,13,14,15,16,18,19,21,23,24,25,29,33],neg:28,neighbor:13,neil:15,nequim:22,net:22,netherland:22,network:[19,22,29],neutral:25,never:32,newlin:[12,21,23],nexaf:13,next:[14,15,21,23,33],nextmov:22,nextmovesoftwar:22,nextprot:22,nf:22,nfdi4chem:22,nh:10,niaid:22,nice:[22,29],nicer:29,nicola:4,night:13,nih:[9,10,12,13,14,15,22,29],niosh:22,nist:[22,33],nite:22,nitrat:29,nl:22,nlm:[9,10,12,13,14,15,22],nm:[22,33],nmr:18,nn:12,no3:29,noaa:22,nobl:10,node:15,noinherit:24,noinspect:33,nomenclatur:[22,25,34],non:[12,13,15,24,33],none:[7,8,10,15,22],nonmet:10,nonyno:7,normal:[7,8,29],north:4,notat:[8,9,12,14,22,23,28],note:[7,8,12,13,14,15,18,22,29],notebook:[0,3,7,8,9,10,12,13,14,15,20,21,22,23,24,25,29,30],notebookmarkdown:33,notepad:23,noteworthi:[12,15],notrunc:24,novaf:13,novic:[9,33],now:[7,10,15,24,32,33],np:[10,33],npass:22,npatla:22,npf403:22,npg:22,npoint:33,nrvpmfhphgbqlp:7,ns00079374:13,nsc106567:13,nsc33634:13,nsc759616:13,nsc:[7,13],nuanc:26,nucleic:[2,9,22],num_page_tot:15,num_result:7,number:[5,8,10,15,18,22,23,33],numer:[23,33],numpi:[7,10,33],o04281:8,o1:14,o2:12,o3:12,o:[7,10,12,13,14,15,21,29],ob:21,obconvers:21,obj:8,object:[8,9,10,14,15,18,23,24,28,30],obmol:21,obophenotyp:22,obtain:[7,21,25],obviou:[18,33],oc1:[13,14],oc:7,occ:7,occup:22,occurr:22,ocean:22,odor:15,oet:9,off:13,offici:33,offset:7,often:[13,15,33],og:10,oganesson:10,oh:7,ol:[7,13],olefin:8,omim:22,onc:[8,25,33],one:[8,9,12,14,15,18,22,23,24,25,29,33],onedr:23,ones:25,onli:[7,12,14,15,18,23,24,29,33],onlin:[0,3,6,8,9,16,19,22,25,27],ontolog:[9,22],op:23,opac:7,open:[3,12,15,16,18,19,22,23,24,25,33],openbabel:[21,25],openli:19,opensmil:25,opentarget:22,oper:[5,12,18,23,29,33],opposit:8,opsin:25,opt:[15,33],optic:33,optim:[5,24],option:[7,12,14,15,23,24,25,29],orang:[13,22],orcid:18,order:[7,12,18,22,23,24,29,30],org:[2,7,8,9,10,12,13,14,15,18,21,22,23,24,25,28,29,33],organ:[5,9,15,18,22,23,24,29,33],organisation_id:22,orient:33,origin:[18,23,33],ornex:13,oryctolagu:15,oserror:15,osrd:33,other:[0,3,5,6,9,12,13,18,19,20,22,23,24,25,26,28,33],otherwis:32,otrinol:13,our:[7,17,18,19,22,24],out:[5,7,8,13,15,18,22,23,29],outcom:[7,8,9,10,12,13,14,15,21,22,23,24,25,29,33],outfil:15,outlin:18,output:[1,12,14,15,18,24,25,28,29,33],over:[8,22,24],overal:[17,18,28],overload:15,own:[18,19,22,26,33],owner:33,ownership:18,oxidationst:10,p00184:9,p10828:15,p1654:13,p450:9,p:[2,15,29,33],p_card_id:15,p_version:15,pac199668122193:8,pac:[2,8,18,24],pack:14,packag:[15,22,25],page:[2,8,9,10,12,18,22,23,24,25,33],page_curr:15,page_data:7,page_idx:7,pagin:15,pair:[18,33],panda:10,panel:15,panther:22,pantherdb:22,paper:[9,10,15,18,22,24,25,29,33],param:15,paramet:[5,12,14,15,18,33],parenthes:33,pars:[5,15,22],parser:25,part:[11,18,19,24,28,29],partial:[13,24],particular:[9,12,26],particularli:23,password:22,patent:[9,15],path:[8,14,15,23,24,29,33],pathbank:22,pathogen:22,pathwai:[2,9,15,22],pattern:29,paul:[2,9],pawli:4,pd:10,pdb:22,pdf:[8,25],peak:18,pediacar:13,peer:15,pentahydr:28,peopl:[13,18,33],per:[7,12,15,22],perform:[22,33],perhap:14,period:[10,15,22,23],periodict:10,persist:18,person:18,persona:16,perspect:[5,24],pertain:0,pertin:15,peter:7,pfam:22,pharm:22,pharmaceut:[13,22],pharmaci:13,pharmacolog:22,pharmacopeia:13,pharmacopoeia:13,pharmakon1600:13,pharmgkb:22,pharo:22,phd:28,phenyl:13,phenylpropan:13,php:22,physic:[10,15,18,22,33],physical_and_theoretical_chemistri:15,physical_and_theoretical_chemistry_textbook_map:15,physical_properties_of_matt:15,pick:[22,23],picnic:13,pid:18,piec:[15,23,33],pilot:22,pip:33,pistoia:22,pistoiaalli:22,pka:[22,32],pkb:32,place:18,plai:[18,24,33],plain:[8,33],plan:18,plane:8,plant:22,plantcyc:22,plantreactom:22,platform:[0,3,19,33],pleas:[3,8,12,17,22,25],plot:[7,23,33],plt:[7,10,33],plugin:24,pm:[13,22],pmc8363119:9,pmcid:9,pmid:9,png:[8,12,13,14,18,21,28,29,33],point:[0,7,15,23,24,30,33],pointer:23,pois:15,polar:12,polarimetri:18,polici:[12,15,22],polybutadien:7,polygon:7,pombas:22,pool_timeout:15,popul:24,popular:[9,12,23],portabl:[22,29],portal:22,portion:18,posit:8,possibl:[0,12,13,14,15,18,30],post1:33,post:[10,14,22],potenti:[12,13,14,15,18,25],power:[9,12],pprint:7,practic:[0,3,5,12,17,18,19,23,26,34],practition:19,pre:33,preced:25,precis:[18,22],predict:[5,10],prefer:[18,25],preferred_clock:15,preload_cont:15,prep:15,prepar:[5,19,31,33],present:[0,8,9,15,23,30],preserv:[7,18,23,25,33],press:[7,33],pressur:[10,13,15,22],preval:23,previous:[10,15],primari:[15,18],primarili:18,principl:[0,1,2,5,18,19,33,34],print:[7,8,12,13,14,15,21,22,29,33],prioriti:33,probe:[18,22],problem:33,proce:5,procedur:[15,33],process:[0,5,18,19,22,23,24,25,33],proconsortium:22,produc:[22,33],product:[13,22],profession:18,profici:19,profile_typ:22,program:[8,9,10,11,12,13,14,15,22,23,25,28,29,33],programat:[10,15],programm:[5,33],programmat:[0,5,12,13,15],programmt:22,progress:33,project:[2,17,18,19,22,33,34],prolog:12,promot:15,propan:29,propano:13,propanol:13,proper:33,properti:[7,10,13,14,18,22],properties_of_liquid:15,propertycit:7,proport:33,proprietari:33,protein:[2,9,12,15,22],proteinatla:22,protoc:9,protocol:[0,2,5,6,9,18,30],protocolerror:15,proven:[18,22,33],provid:[0,3,5,6,9,10,12,14,15,17,18,19,22,24,25,26,29,30,32,33],proxi:15,proxim:22,pseudo:13,pseudoephedrin:13,pseudophedrin:13,psi:13,pt23:[2,5],pt:[7,8],pubchem:[2,21,23,25,28],pubchemrdf:12,publis:24,publish:[0,3,7,22,24,33],pubm:9,pubmed_id:22,pug:[9,10,22],pug_view:15,pugrest:14,pugrest_input:12,pugrest_oper:12,pugrest_output:12,pugrest_prolog:12,pugrest_url:12,pull:24,puls:18,pure:[2,8,18,19,34],purpos:[18,25,33],put:[23,24,29],py:15,pybel:21,pypi:[29,33],pyplot:[7,10,33],pyprotectedmemb:33,pyrazol:7,pyrazoleacet:7,pyshadowingnam:33,python3:[15,33],python:[7,9,10,13,14,15,20,21,30],pytz:33,q27108108:13,q:[7,22,29],qingliang:[2,9],qsm:7,qualaquin:7,qualiti:[0,5,22,30],quantit:22,quantiti:18,queri:[7,9,11,15,23,28],queryabl:18,questionnair:17,qui:22,quickli:[7,28,33],quin:7,quinex:7,quinin:7,quinine_detail_data:7,quinine_rn:7,quinine_search_data:7,quinlex:7,quinlup:7,quinolyl:7,quit:[18,25],quot:[22,23,25,33],qut5xvq:22,qwrguyrksa:21,qyr:13,r7kwy7:22,r:[2,7,9,13,15,33],ra:33,rabbit:15,rai:18,rais:15,ramon:4,rang:[0,3,7,10,15,30],rank:22,rapid:33,rat:22,rather:[8,23,29,33],raw:[8,18,22,33],rawhead:24,rawtitl:8,rcsb:22,rda:[18,34],rdchem:21,re:[0,3,8,12,17,18,29],reaction:22,reactom:[9,22],read:[8,12,15,22,23,29],read_csv:10,read_timeout:15,readabl:[0,1,5,12,18,19,20,26,27,30,33],reader:[14,33],readi:[5,18,20,22,33],readili:[0,15],readinto:15,readlin:15,readm:33,readstr:21,readthedoc:21,real:[13,19],realiz:[18,28],realli:[8,28],reanalysi:33,reason:[14,15,23],reassess:5,receiv:[15,23],recent:[7,15,18,23],receptor:15,recip:[0,6,7,8,9,10,12,13,14,15,20,21,22,23,24,25,27,29,30,32,33],recogn:[12,18,23,29],recommend:[8,15,33],record:[9,12,13,14,18,22],record_id:15,record_typ:[12,15,22],recordnumb:15,recordtitl:15,recordtyp:15,rect:7,recv_into:15,redirect:15,redistribut:18,reduc:[22,33],ref:33,refer:[0,8,13,15,18,21,22,25,29,30,33],referenc:[2,18],referencedin:8,referencenumb:15,reflect:18,refract:15,refresh:23,regex:[8,29],regist:[18,22],registr:[7,18,22,24],registri:[22,23,33],regular:[8,29],regularli:[3,8],regulatori:15,rel:[8,26,28],relat:[7,9,12,13,15,18,20,22,25,34],relationship:18,release_conn:15,relev:[0,9,10,30],reliabl:[5,6],reliefmaximum:13,reluct:23,rememb:25,remot:22,remov:[7,8,12,13,21,23,29],remove_html_tag:8,render:7,repeat:5,replac:[8,15,33],replacedrn:7,report:[2,22,23],repositori:[0,5,6,12,16,18,22,28,29,33],repres:[14,18,19,23,29,33],represent:[5,9,10,12,15,18,22],reproduc:5,republish:18,reput:22,reqdata:[8,29],reqest:12,reqimg:29,request:[8,9,10,11,13,14,15,28,29,33],requir:[7,15,16,29,33],rerun:[8,29],res2d:12,res3d:12,research:[0,2,3,5,6,9,18,19,22,23,24,27,32,33,34],reserv:33,resist:15,resolut:[18,25],resolv:[18,29],resort:25,resourc:[1,2,3,5,9,12,18,19,22,24,28,34],resourcewarn:15,resp:15,respect:[9,15],respons:[15,19,22,25],response_conn:15,response_kw:15,response_typ:22,rest:[9,10,15,22],result:[5,9,12,14,22,23,25,26,33],retent:15,retri:15,retriev:[5,6,9,10,13,14,15,22,23,24,25,28,29],reus:[0,1,5,7,8,9,10,12,13,14,15,18,19,21,22,23,24,25,26,28,29,31,33,34],reusabl:[0,18,19,20,33],reuser:18,review:[6,7,8,9,10,12,13,14,15,17,21,22,25,28,29,33],rezquin:7,rf:10,rg:10,rgd:22,rhea:22,rhinalair:13,rich:18,right:[10,23,33],rmd:33,rn:10,robert:[2,18],role:[18,22],ror:18,round:[7,22],rout:[12,15],routin:[22,33],row:[10,14,22,23,24],royal:[15,22],rruff:22,rs:13,rstrip:21,rtype:15,rugbi:13,rugbynas:13,rule:[23,28],run:[23,29,30],rwd:22,rwth:4,rzepa:[2,18],s001620:22,s05983:8,s13321:15,s1:[7,12,21],s900006580:13,s:[2,7,9,10,12,13,14,15,18,22,23,24,26,29,33],sa:[8,22,25],saccharomyc:[9,22],safe:[15,22],safeti:[15,22],safework:22,safeworkaustralia:22,sai:12,salicycl:33,salicyl:33,salli:33,salt:29,sam:[8,9],same:[8,14,15,18,23],same_connect:14,same_isotop:14,same_stereo:14,same_stereo_isotop:14,sampl:[11,12,18,33],sample_data:33,samuel:[4,10,12,13,14,15,33],san:[4,7],sandbox:33,satisfi:33,save:[12,15,23,33],saved_st:22,savefig:33,saw:8,scalabl:5,scale:[0,22,29],scalfani:[4,7,21],scatterplot:10,scenario:[0,5,7,8,9,10,12,13,14,15,19,21,27,29],schema:[18,23,24],schembl33285:13,scholarli:7,scienc:[19,22,27,28,33,34],scientif:[2,15,22,33],scientist:[3,5],scifind:25,scope:[0,24],score:9,scratch:33,screen:33,screenshot:15,scripp:22,script:[10,12,15,23,24,28,33],scrollabl:22,sdata:2,sdf:[12,18,25],se:22,seaborn:10,search:[5,6,9,12,18,19,23,25,28,29],search_base_url:7,searchabl:22,searchcod:8,searchterm:[8,22],searchurl:22,second:[12,15,24,25],secondari:13,secretari:33,section:[5,6,12,20,22,26,27,31,33],sector:19,see:[1,8,12,15,17,19,22,23,24,28,29,30,32,33],seem:28,seen:33,segment:14,select:[18,23],selen:7,self:[15,19],semant:33,semanticscholar:22,semi:18,semprex:13,send:[15,29],send_kwarg:15,sens:[5,13],sensit:22,sent:12,separ:[12,14,15,18,23,24,33],sequenc:[18,22,29],serial:18,serif:7,serv:[18,19,23,25],server:[8,15,23,29],servic:[2,7,9,10,12,15,18,22,23,25,27],session:[15,21],set:[8,10,15,16,18,21,22,23,32,33],set_styl:10,setoutformat:21,setuptool:33,sever:[7,9,12,22],sg:10,sgd:22,shape:[7,10],share:[0,1,5,17,18,19,26,34],sharealik:8,sheet:15,shift:[18,33],shoemak:[2,9],shop:33,should:[7,8,9,10,12,13,14,15,18,21,22,23,24,25,26,27,29,33],show:[7,8,12,15,18,21,22,23,24,33],showcard:15,shown:[7,10,12,13,15],sid:[9,15],side:[5,8],sigma:13,sign:13,sign_in:22,signup:22,similar:[9,15,33],simon:[4,33],simpl:[7,23,25,28,33],simpli:[23,33],simplic:14,simplier:32,simplifi:[12,18],sinc:28,sine:13,singl:[12,18,28,33],singular:24,sinu:13,sinuf:13,siqian:[2,9],site:[1,15,22,25,28,30,33],situat:[23,28],six:23,size:[7,12,22,24],sk:8,skill:[7,8,9,10,12,13,14,15,19,21,22,23,24,25,29,30,33],slash:14,sleep:[7,12,13,14,15],slower:24,small:[10,12,23],smi:[21,28],smi_bd:7,smi_casrn_list:7,smi_detail_data:7,smi_search_data:7,smile:[7,11,12,18,28,29,33],smiles_list:21,smooth:[17,19],smr000718787:13,sn:10,snfg:22,snippet:30,so:[5,8,10,22,23,24,25,33],soap:12,soc:33,societi:[7,15,22],socket:15,socketio:15,sodium:13,softwar:[22,23,25,33],solid:10,solubl:15,solut:[21,33],solv:33,solvat:28,solvent:[22,33],some:[5,9,10,12,14,15,18,23,24,25,33],someon:29,somewhat:15,sonja:4,soon:24,sort:24,sourc:[0,7,8,9,10,15,18,24,33],sourceid:15,sourcenam:15,sourcenumb:7,sourcet:22,southampton:4,southan:22,sp:33,space:[7,12,15,22,23,24],span:33,sparql:23,speak:23,spec:18,speci:[22,25,33],special:[14,15,18],specialist:18,specif:[2,5,9,12,18,20,23,24,25,30,31,33],specifi:[12,15,18,33],spectral:[18,33],spectromet:33,spectrometri:22,spectrophotomet:33,spectrophotometr:33,spectroscop:[2,18,33],spectroscopi:18,spectrum1500516:13,spectrum2:33,spectrum:[18,23,33],speed:[12,24],split:[13,14,18,33],splitlin:33,spread:24,spreadsheet:[12,23,24,33],squar:7,squib:33,src:22,srchdr:22,ssl:15,sslsocket:15,stabil:16,stage:[5,31],stakehold:[0,3],stand:12,standard:[0,2,3,5,9,10,13,14,18,19,22,23,25,28,29,30,33,34],standardst:10,start:[15,25,29,32,33],state:[9,10,12,13,15,18,33],statement:[12,15],states_of_matt:15,statu:[8,14,15,22,29],stdinchi:[28,29],stdinchikei:[28,29],step:[5,9,12,23],stereochemistri:[8,14,25],stereoisom:9,stereoisomer:8,stewardship:[2,19],still:23,stockholm:22,stop:[23,29,33],storag:33,store:[9,12,15,18,22,23,33],stp:10,str:[7,8,15],straightforward:12,strategi:1,stream:15,strength:13,string:[7,8,11,12,13,15,18,21,23,28,29],stringifi:23,stringio:14,stringwithmarkup:15,strip:[8,12,13,14],stroke:7,structur:[5,8,9,14,18,19,22,23,24,25,28],stuart:[2,4,7,8,18,21,22,23,24,25,28,29,33],student:[0,28],studi:33,style:[7,15],stylesheet:23,sub:[7,8],subject:22,sublay:[14,25],sublim:23,sublist:7,submit:[3,9,15],subplot:10,subsequ:[24,32],subset:[10,12],substanc:[7,9,12,13,15,18,22,28],substitut:33,substructur:9,subsumpt:22,subtl:15,success:[22,29],sudaf:13,sudafednas:13,sudogest:13,sudomyl:13,suggest:17,suit:33,suitabl:33,sulfat:28,sulfoxid:15,sulphoxid:15,summari:[9,12,15,33],sun:13,sunghwan:[2,4,9,10,12,13,14,15],superscript:28,suphedrin:13,suphedrine12:13,supplement:33,supplemental_modules_:15,supplementari:33,support:[0,1,3,9,12,16,17,19,28,33,34],support_link:22,suppos:15,sure:[15,23,25,33],surechembl:22,surfac:12,surridg:22,surround:[8,23],suscept:23,svg:[7,21,22,28,29],svg_idx:7,svg_string1:7,svg_string:7,sw:7,sweden:22,swedish:22,swiss:22,symbol:[10,18,22,33],symptom:13,syn:7,syndiotact:7,synonym:[7,13],synonyms_flat:7,synonyms_list:7,syntax:[11,14,33],system:[5,18,19,22,23,33],systemat:[5,18,25,29],systematicnam:29,t10:21,t13:7,t14:21,t16:12,t3db:22,t8:21,t:[14,23,25,28,33],tab:23,tabl:[10,18,22,23,33],tabular:33,tag:[8,23],take:[7,18,24,25,30,33],talk:8,tangibl:26,tap:[5,19],target:[0,2,9,13,22,30],task:[0,9,12,15,18,20,26,30,31,33],taxon:[9,15],taxonomi:[2,9,15,22],teach:28,teacher:10,technic:[0,2,5,23],techniqu:[0,19,22],technolog:4,teeter:13,temperatur:[10,15,18,22],temporarili:12,ten:12,tennessin:10,term:[5,9,16,18,22,23],terminolog:[8,18,34],termvers:8,test:[9,33],texa:4,text:[7,8,9,10,12,13,14,18,23,28,29,33],textedit:23,textmat:23,textual:[8,18,33],tfj7gt:22,than:[7,8,10,12,14,18,23,29,32,33],thebiogrid:22,thegencc:22,thei:[5,8,13,18,22,23,25,28,33],them:[5,8,15,17,22,23,25,28,29,33],themselv:18,therapeut:22,therefor:[5,10,12,15,24,33],thermophys:22,thesauru:22,theta:13,thi:[1,2,5,6,7,8,9,10,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33],thiazol:29,thiessen:[2,9],thing:[15,24,33],think:[23,24],third:24,third_parti:22,thirti:23,those:[5,10,17,18,23],though:[8,23],thought:33,thousand:23,three:[9,13,18],threshold:14,throttl:12,through:[0,1,2,3,5,7,9,16,20,21,23,24,33,34],throughoout:24,throughout:18,throughput:9,thu:[5,15,18,24,28],thyroid:15,tiejun:[2,9],tighter:14,time:[7,8,12,13,14,15,22,23,24,28,29,33],timeout:15,timeout_obj:15,timeout_valu:15,timeoutsauc:15,tin:28,tip:[17,19],tipl:33,titl:[7,8,22,24,30,33],tn:13,tnf:9,tochead:15,togeth:[18,24,25,33],tolist:10,too:24,tool:[0,3,9,17,19,23,28,29],toolbox:19,toolkit:33,top:[7,33],topcar:13,topic:[7,8,9,10,12,13,14,15,21,22,23,24,25,29,33],topolog:12,torr:7,total:[15,29],toxic:[15,22],toxicogenom:22,toxicolog:15,toxin:22,toxnet:22,tpsa:12,traceback:[7,15],track:33,train:0,trajectori:22,tran:[8,14,33],trans_isomer:8,trans_izomeri:8,transfer:[9,10,12,15,18,23],transform:[7,23],transit:10,translat:[7,18],trcbd2:22,treat:12,tree:23,triacin:13,trichloro:28,trick:22,trigger:15,trilitron:13,trimer:7,triph:13,trust:[22,25],ts:10,tsgmte:33,tsv:23,ttd:22,ttn:22,tumor:9,tussaph:13,tutori:[0,6,12,23,24,25,27],twelv:24,two:[9,12,13,14,15,23,25,33],txt:[12,13,14,23,33],tylenol:13,type:[0,6,8,15,18,21,22,24,33],typic:[8,15,18,22,29,33],u00b0c:15,u00b2:15,u:33,ua:22,ucla:22,ufmg:22,uhfffaoysa:[7,12,29],uk:[8,15,22,28,29],umbrella:33,unabl:14,unambigu:[5,22],uncom:15,uncompress:33,undefin:22,under:[7,8,9,10,12,13,14,18,21,22,23,24,25,28,29,33],underli:[10,19],understand:[1,7,8,9,12,13,21,22,23,24,25,29,30,33],underwai:18,unencrypt:33,unfamiliar:0,uni:22,unicam:33,unicarbkb:22,unichem:[25,28],unicod:23,unig:22,unii:13,union:[8,19,34],uniphednas:13,uniprot:22,uniqu:[9,18,33],unit:[13,22,33],univers:[4,7,22],universitat:4,unix:22,until:[15,29],up:[8,12,21,23,24,28,33],updat:[2,8,9,15,22,23,24,28,33],updated_at:22,upload:25,upon:23,upper:10,uppercas:25,upstream:5,uri:7,url1:15,url2:15,url:[2,8,9,10,11,14,15,18,22,24,28,29,33],url_for_logo:22,urllib3:15,urlopen:15,us:[0,3,5,7,9,10,11,12,15,17,18,22,23,24,27,28,34],usabl:[0,25,32],usag:[12,15,22,24,28],usan:13,user:[0,5,8,9,10,12,15,16,18,22,23,28,30,33],user_defined_tag:22,usernam:22,usesvg:21,usethelibrari:21,usp:13,usual:[18,22],utf:[23,33],util:[2,5,12],uvcb:22,uvvis_metadata_fig:33,v3:21,valid:[5,23,28,33],valu:[7,8,10,12,15,18,22,23,29,33],valueerror:15,van:22,vandf:13,vapor:15,vari:23,variabl:[8,15,23,24,29],varieti:18,variou:[6,12,15,18],vector:[22,29],vendor:33,veri:[9,10,13,15,23,24,28,33],verifi:15,version:[8,15,25,33],vet:22,veupathdb:22,veuzhwnksa:12,via:[8,9,18,22,23,28,29,33],vienna:22,view:[2,7,8,9,12,24,29],viewbox:7,vincent:[4,7,21],vinylquinuclidin:7,violat:[12,15],viscos:15,visibl:18,visual:[5,7,10,12,19,33],visualis:33,vocabulari:[18,22],volatil:22,voltammetri:18,volum:[12,24,33],w3:7,w3id:[7,8,9,10,12,13,14,15,21,22,23,24,25,28,29,33],w4tncg:22,w:[12,13,15],wa:[1,3,10,18,28],wai:[12,14,15,18,19,22,23,24,25,26,29,33],walk:24,walker:22,walph:13,want:[8,10,15,22,23,24,28,29],warn:14,watched_record:22,water:[13,22,28],wavelength:33,wcms_113134:22,we:[5,7,8,10,13,15,18,21,22,24,25,29,33],web:[9,10,12,15,18,19,23,25,27,29],web_polici:15,webbook:[22,33],webpag:9,websit:[22,23,28,29,33],weight:[7,12],weird:23,welcom:[1,30],well:[12,15,18,19,25,33],went:15,were:[7,18,22],wfchemcookbook:33,what:[3,5,7,12,13,15,24,25,27,30],whatev:18,when:[12,13,15,18,22,23,24,25,26,28,30,33],where:[0,5,8,10,12,15,18,22,23,25,27,28,30,33],whether:12,which:[7,8,9,10,12,13,15,18,22,23,33],white:7,who:[13,15,17,22,33],whole:[24,33],whose:[13,18],why:23,wide:15,width:7,wiki:[3,8,22],wikidata:[22,23,25],wikipedia:[8,22,25],wil16:[0,2,19],wilkinson:2,willighagen:22,window:23,within:[5,7,10,15,18,23,28,33,34],without:[10,23,33],wln:13,won:[23,33],word:[13,18],work:[0,1,3,5,14,15,19,22,24,25,26,28,29,30,33],workflow:[0,5,20,26,30,34],workplac:15,worksheet:24,world:[13,19,22,34],worldfair:[1,2,19,34],worm:22,wormbas:22,wors:23,worth:[12,25],would:[24,32],wqtfkv:22,wr297608:7,write:[8,12,22,25,29,33],writestr:21,written:[22,23,29,33],www3:22,www:[7,9,15,21,22,33],wzblmqshsa:7,x1:7,x2:7,x64:[15,33],x:[7,10,13,18,33],xdr:22,xe:10,xenbas:22,xfactor:33,xhtml:23,xlabel:[7,10,33],xlogp:12,xml:[7,8,12,18,23,28,29,33],xmln:7,xpath:23,xqueri:23,xslt:23,xtc:22,xunit:33,xxx:23,xy:33,xypoint:33,y1:[7,13],y2:7,y:[7,10,33],ydt_wdh_mrd:22,ye:[4,24],year:[22,24],year_creat:22,yeardiscov:10,yeast:[9,22],yeastgenom:22,yfactor:33,yl:[7,13,29],ylabel:[7,10,33],ymdb:22,you:[3,5,7,8,9,10,12,13,14,15,21,22,24,25,28,29,33],your:[17,22,23,24],yourself:[23,33],yu:[2,9],yunit:33,z:[14,33],zaslavski:[2,9],zebrafish:22,zenodo:2,zephrex:13,zero:15,zfin:22,zh:8,zhang:[2,9],zip:18,zope:33,zyrtec:13},titles:["About this Cookbook","About the IUPAC FAIR Chemistry Cookbook Project","Bibliography","Contribute to the Cookbook!","Project Contributors","The Joy of FAIR","Sources of FAIR Chemical Data","CAS Common Chemistry API","Accessing the IUPAC Gold Book API in Python","Data Repository: PubChem","Accessing the Chemical Elements Data from PubChem","PubChem PUG-REST API","Accessing PubChem through PUG-REST - Part I","Accessing PubChem through PUG-REST: Part II","Accessing PubChem through PUG-REST: Part III","Accessing PubChem through PUG-View","Cookbook development","Feedback on the Cookbook","Glossary","Welcome to the IUPAC FAIR Chemistry Cookbook","Manipulating Data within a Digital Environment","Computing InChIs","Finding a Findable Dataset","Importing Chemical Data into Excel","Importing JSON Citation Data from an API into Google Sheets","Using InChI and InChIKey to annotate your chemical entities","FAIR Techniques","Tools for working with FAIR Chemical Data","OPSIN: Open Parser for Systematic IUPAC Nomenclature","Using the OPSIN API in Python","How to use the Cookbook","Use Cases & Workflows","Reuse of Curated Chemical Data","Structured UV/Vis (meta)data for small molecule characterisation","WordFAIR Chemistry"],titleterms:{"1":[7,8,10,12,13,14,15,21,22,23,24,25,29,33],"2":[7,8,10,12,13,14,15,21,22,23,24,25,29,33],"3":[7,8,10,12,14,15,21,22,23,24,25,29,33],"4":[8,10,12,15,21,25,29,33],"5":[8,14,25,29,33],"6":8,"7":14,"case":[25,31],"float":33,"function":[8,22,33],"import":[7,8,12,21,23,24,25,29],"try":[8,29],The:[5,33],about:[0,1,29],access:[8,10,12,13,14,15,24],accur:25,add:8,affin:10,all:15,an:[14,24,25],anaconda:33,annot:[15,25],api:[7,8,11,12,22,24,29],ar:23,atom:10,audienc:33,authent:22,babel:21,basic:12,between:10,bibliographi:2,boil:10,book:8,ca:[7,25],calcul:21,call:29,can:25,charact:23,characteris:33,check:25,chemic:[6,10,12,13,23,25,27,32],chemistri:[1,7,19,34],citat:24,code:[8,12,33],collect:15,comment:33,common:7,comparison:10,compound:15,comput:[12,21,33],conclus:24,construct:12,contribut:3,contributor:4,cookbook:[0,1,3,16,17,19,30],creat:21,crossref:24,curat:[22,32],d:14,data:[6,7,9,10,12,13,15,20,22,23,24,27,29,32,33],dataset:22,definit:8,densiti:10,detail:7,develop:16,dictionari:33,digit:20,displai:7,doc:33,download:8,draw:[7,25],each:7,effort:22,electron:10,electroneg:10,element:10,encod:23,end:23,energi:10,entiti:25,environ:[20,33],excel:23,exemplar:33,extract:29,fair:[1,5,6,19,22,26,27],fairshar:22,feedback:17,file:[8,23,25,33],find:22,findabl:22,format:[22,23,24,33],formula:[14,29],from:[7,10,15,21,24],get:[12,13,15,24],given:[13,15],glossari:[18,33],gold:8,googl:[23,24,25],handl:7,have:[22,25],head:15,hierarchi:33,how:30,i:[12,25],ident:14,ii:13,iii:14,imag:29,inchi:[14,21,25],inchikei:25,input:14,instal:33,ioniz:10,its:8,iupac:[1,8,19,28],joi:5,json:[8,24],jupyt:33,last:25,let:25,librari:7,line:23,list:[7,21],load:22,loop:7,make:22,manipul:20,mass:10,melt:10,meta:33,method:33,microsoft:23,modul:21,mol:25,molecul:[7,21,33],molecular:[12,14,21,25],multi:15,multipl:[7,15],my:25,name:[13,25],need:[8,12],nomenclatur:28,notebook:33,number:25,object:[21,33],onli:25,open:[21,28],opsin:[28,29],other:[8,15,29],our:25,output:22,packag:[8,12,29,33],page:[7,15],paramet:7,parser:28,part:[12,13,14],perform:14,point:10,potenti:10,present:22,project:[1,4],properti:[12,15],pubchem:[9,10,11,12,13,14,15,22],pug:[11,12,13,14,15],python:[8,12,22,29,33],queri:[14,29],quick:25,rdkit:21,record:[7,15],refer:9,registri:25,report:33,repositori:9,request:[7,12,22],resolv:25,rest:[11,12,13,14],result:7,retriev:[7,8,12],reus:32,rn:[7,25],run:[12,33],s:25,save:7,scenario:[22,25],search:[7,8,14,22],section:15,select:7,setup:7,share:22,sheet:[23,24],similar:14,singl:15,small:33,smile:[14,21,25],some:7,sourc:[6,22],specif:[7,15],step:[8,22,25,29],string:[14,24,25,33],structur:[12,13,33],substanc:[25,29],substructur:14,summari:[23,24],superstructur:14,syntax:12,systemat:28,target:33,techniqu:26,term:[8,33],than:15,thi:[0,12],through:[12,13,14,15],tool:[25,27,33],tutori:9,type:23,unambigu:25,under:15,url:12,us:[8,13,14,21,25,29,30,31,33],uv:33,variabl:33,vi:33,view:15,virtual:33,welcom:19,what:[9,23,33],within:20,word:15,wordfair:34,work:[23,27],workflow:31,you:23,your:[25,33]}})
\ No newline at end of file
diff --git a/tools/opsin_api_jn.html b/tools/opsin_api_jn.html
index f75f0458..68e7c5d9 100644
--- a/tools/opsin_api_jn.html
+++ b/tools/opsin_api_jn.html
@@ -564,7 +564,7 @@ Step 3: Call the OPSIN image API
-
+
diff --git a/usecases/uvvis_metadata.html b/usecases/uvvis_metadata.html
index 86632546..914b4588 100644
--- a/usecases/uvvis_metadata.html
+++ b/usecases/uvvis_metadata.html
@@ -705,14 +705,14 @@ 4.2 Exemplar code for data reporting
-Requirement already satisfied: jcamp in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (1.2.2)
-Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (from jcamp) (1.26.2)
-Requirement already satisfied: datetime in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (from jcamp) (5.4)
-Requirement already satisfied: zope.interface in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (from datetime->jcamp) (6.1)
-Requirement already satisfied: pytz in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (from datetime->jcamp) (2023.3.post1)
+Requirement already satisfied: jcamp in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (1.2.2)
+Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (from jcamp) (1.26.2)
+Requirement already satisfied: datetime in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (from jcamp) (5.4)
+Requirement already satisfied: zope.interface in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (from datetime->jcamp) (6.1)
+Requirement already satisfied: pytz in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (from datetime->jcamp) (2023.3.post1)
-Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages (from zope.interface->datetime->jcamp) (65.5.0)
+Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages (from zope.interface->datetime->jcamp) (65.5.0)